$\textbf{Overview}$¶

This document provides instructions on running the JWST Science Calibration Pipeline (referred to as “the pipeline”) and individual pipeline steps specifically for $\textbf{Time Series Observation (TSO) Imaging with NIRCam NRC_TSIMAGE exposure data}$.

End-to-end calibration of JWST data is divided into 3 main stages of processing. Multiple pipeline modules are used for different stages of processing and for different JWST observing modes. The modules are broken into the following 3 stages:

  • $\textbf{Stage 1}$: Detector-level corrections and ramp fitting for individual exposures

  • $\textbf{Stage 2}$: Instrument-mode calibrations for individual exposures

  • $\textbf{Stage 3}$: Combining data from multiple exposures within an observation

$\textbf{Stage 1}$ corrections are applied nearly universally for all instruments and modes. $\textbf{Stage 2}$ is divided into separate modules for $\textbf{imaging}$ and spectroscopic modes. $\textbf{Stage 3}$ is divided into five separate modules for imaging, spectroscopic, coronagraphic, Aperture Masking Interferometry (AMI), and $\textbf{Time Series Observation (TSO)}$ modes.

$\textbf{Import Library}$¶

In [2]:
import os
#os.environ['CRDS_PATH'] = '/fenrirdata1/kg_data/crds_cache/' #These pathways should be defined in your ~./bash profile. If not, you can set them within the notebook.
#os.environ['CRDS_SERVER_URL']= 'https://jwst-crds.stsci.edu'
#os.environ['CRDS_CONTEXT']='jwst_0756.pmap' #Occasionally, the JWST CRDS pmap will be updated. Updates may break existing code. Use this command to revert to an older working verison until the issue is fixed. 
os.environ['CRDS_CONTEXT']='jwst_0803.pmap' #The newest update after this pmap has gives a bounding_box error in running stage 2

#JWST Pipeline Imports
import jwst
print(jwst.__version__) #Print what version of the pipeline you are using.

from jwst.pipeline.calwebb_detector1 import Detector1Pipeline #Stage 1
from jwst.pipeline.calwebb_image2 import Image2Pipeline #Stage 2
from jwst.pipeline.calwebb_tso3 import Tso3Pipeline #Stage 3
from jwst.associations.asn_from_list import asn_from_list #Association file imports
from jwst.associations.lib.rules_level2_base import DMSLevel2bBase

# Individual steps that make up calwebb_detector1
from jwst.dq_init import DQInitStep
from jwst.saturation import SaturationStep
from jwst.superbias import SuperBiasStep
from jwst.ipc import IPCStep                                                                                    
from jwst.refpix import RefPixStep                                                                
from jwst.linearity import LinearityStep
from jwst.persistence import PersistenceStep
from jwst.dark_current import DarkCurrentStep
from jwst.jump import JumpStep
from jwst.ramp_fitting import RampFitStep
from jwst import datamodels

#General
from astropy.io import fits, ascii
import matplotlib.pyplot as plt
%matplotlib inline
import csv
import numpy as np
import asdf
import glob
import time
import yaml
from copy import deepcopy
import pandas as pd

## ES custom pipeline
from tshirt.pipeline import phot_pipeline, analysis #tshirt specific imports
from tshirt.pipeline.instrument_specific import rowamp_sub
from splintegrate import splintegrate
import tqdm

#Modeling
import batman
from scipy.optimize import curve_fit

#Style Choice
class style:
   BOLD = '\033[1m'
   END = '\033[0m'
1.3.1

$\textbf{Stage 1}$¶

$\textbf{Detector-level corrections and ramp fitting for individual exposures.}$¶

Stage 1 consists of detector-level corrections that are performed on a group-by-group basis, followed by ramp fitting. The output of stage 1 processing is a countrate image per exposure, or per integration for some modes.

$\textbf{Detector1Pipeline:}$¶

Apply all calibration steps to raw JWST ramps to produce a 2-D slope product. This stage takes care of basic data reduction steps, such as reference pixel correction, superbias subtraction, removal of non-linearity, and flagging of cosmic rays. In the final step in this stage of the pipeline, line-fitting is performed on each integration. A slope image is created for each integration. The steps in this stage are identical for all data.

There are two general configurations for this pipeline, depending on whether the data are to be treated as a Time Series Observation (TSO). The configuration is provided by CRDS reference file mappings and are usually set by default to always give access to the most recent reference file deliveries and selection rules. For TSO exposures, some steps are set to be skipped by default:

  • The $\textbf{ipc}$ step corrects a JWST exposure for interpixel capacitance by convolving with an IPC reference image.
  • The $\textbf{persistence}$ step. Based on a model, this step computes the number of traps that are expected to have captured or released a charge during an exposure. The released charge is proportional to the persistence signal, and this will be subtracted (group by group) from the science data.
  • The $\textbf{dq_init}$ Data Quality (DQ) initialization step in the calibration pipeline populates the DQ mask for the input dataset. The MASK reference file contains pixel-by-pixel DQ flag values that indicate problem conditions.
  • The $\textbf{saturation}$ step flags pixels at or below the A/D floor or above the saturation threshold.
  • The $\textbf{superbias}$ superbias subtraction step removes the fixed detector bias from a science data set by subtracting a superbias reference image.
  • The $\textbf{refpix}$ step corrects for these readout signal drifts by using the reference pixels.
  • The $\textbf{linearity}$ step applies the “classic” linearity correction adapted from the HST WFC3/IR linearity correction routine, correcting science data values for detector non-linearity. The correction is applied pixel-by-pixel, group-by-group, integration-by-integration within a science exposure.
  • The $\textbf{dark_current}$ step removes dark current from an exposure by subtracting dark current data stored in a dark reference file in CRDS.
  • The $\textbf{jump}$ routine detects jumps in an exposure by looking for outliers in the up-the-ramp signal for each pixel in each integration within an input exposure.
  • The $\textbf{ramp_fitting}$ step determines the mean count rate, in units of counts per second, for each pixel by performing a linear fit to the data in the input file. The fit is done using the “ordinary least squares” method.

$\textbf{INPUT FILES:}$ Exposure raw data products are designated by a file name suffix of “uncal.” These files usually contain only the raw detector pixel values from an exposure, with the addition of some table extensions containing various types of meta data associated with the exposure. Additional extensions can be included for certain instruments and readout types. Below are header modifications to the "uncal" fits files.

In [3]:
#Adding header modifications
all_uncal_files = [] # All Uncalibrated File Names. Also use to check that all files have been modified by the loop. 
rawFileSearch = '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/Raw_Data/*nrca3_uncal.fits' #Grabbing only nrca3 files from the directory
output_dir = "/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/"

if os.path.exists(output_dir) == False:
    os.makedirs(output_dir)
    
for fitsName in glob.glob(rawFileSearch):
    HDUList = fits.open(fitsName, 'update')
    HDUList[0].header['NOUTPUTS'] = (4, 'Number of output amplifiers') #This was not input at the time of the simulation. Therefore, we manually must input this information. 
    HDUList.close()
    all_uncal_files.append(fitsName)
    
all_uncal_files = sorted(all_uncal_files) #sort files alphabetically. 

#Required Parameters for Step1: Check the aperature size????
max_cores = "none" #"half"
photParam = {'refStarPos': [[1056,167]],'backStart':100,'backEnd': 101,
             'FITSextension': 1,
             'isCube': True,'cubePlane':0,'procFiles':'*.fits'}
seg01_len = len(glob.glob('/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/splintegrate/jw01185016001_01101_00001-seg001*.fits'))
In [3]:
startTime = time.time() #Time how long this step takes

for uncal_file in all_uncal_files:
    
    # Using the run() method. Instantiate and set parameters
    #Data Quality Initialization
    dq_init_step = DQInitStep()
    dq_init = dq_init_step.run(uncal_file)
    
    # Saturation Flagging
    saturation_step = SaturationStep()
    # Call using the the output from the previously-run dq_init step
    saturation = saturation_step.run(dq_init)
    del dq_init # try to save memory
    
    # Superbias Subtraction
    superbias_step = SuperBiasStep()
    # superbias_step.output_dir = output_dir
    # superbias_step.save_results = True
    # Call using the the output from the previously-run saturation step
    superbias = superbias_step.run(saturation)
    del saturation ## try to save memory
    
    # Reference Pixel Correction
    refpix_step = RefPixStep()
    #refpix_step.output_dir = output_dir
    #refpix_step.save_results = True
    # try using a copy of the bias results as the refpix output
    # refpix = refpix_step.run(superbias)
    # es_refpix = deepcopy(refpix)
    # the old way was to run the refpix and then replace it
    es_refpix = deepcopy(superbias)
    
    ngroups = superbias.meta.exposure.ngroups
    nints = superbias.data.shape[0] ## use the array size because segmented data could have fewer ints
    
    # First, make sure that the aperture looks good. Here I have cheated and used a final rampfit result.
    phot = phot_pipeline.phot(directParam=photParam)
    #phot.showStamps(showPlot=True,boxsize=200,vmin=0,vmax=1)
    
    # Everything inside the larger blue circle will be masked when doing reference pixel corrections
    for oneInt in tqdm.tqdm(np.arange(nints)):
        for oneGroup in np.arange(ngroups):
            
            rowSub, modelImg = rowamp_sub.do_backsub(superbias.data[oneInt,oneGroup,:,:],phot)
            es_refpix.data[oneInt,oneGroup,:,:] = rowSub
            
    # Linearity Step
    del superbias # try to save memory
    linearity_step = LinearityStep()
    #Call using the the output from the previously-run refpix step
    linearity = linearity_step.run(es_refpix)
    del es_refpix # try to save memory
    
    #Persistence Step
    persist_step = PersistenceStep()
    #skip for now since ref files are zeros
    persist_step.skip = True
    #Call using the the output from the previously-run linearity step
    persist = persist_step.run(linearity)
    del linearity # try to save memory

    #Dark current step
    dark_step = DarkCurrentStep()
    # There was a CRDS error so I'm skipping
    dark_step.skip = True
    # Call using the persistence instance from the previously-run persistence step
    dark = dark_step.run(persist)
    del persist #try to save memory
    
    #Jump Step    
    jump_step = JumpStep()
    #jump_step.output_dir = output_dir
    #jump_step.save_results = True
    jump_step.rejection_threshold = 15
    jump_step.maximum_cores = max_cores
    # Call using the dark instance from the previously-run dark current subtraction step
    jump = jump_step.run(dark)
    del dark # try to save memory
    
    # Ramp Fitting    
    ramp_fit_step = RampFitStep()
    ramp_fit_step.maximum_cores = max_cores
    
    ramp_fit_step.output_dir = output_dir
    ramp_fit_step.save_results = True
    
    # Let's save the optional outputs, in order
    # to help with visualization later
    # ramp_fit_step.save_opt = True
    
    # Call using the dark instance from the previously-run jump step
    ramp_fit = ramp_fit_step.run(jump)
    del jump # try to save memory
    del ramp_fit # try to save memory
    
executionTime = (time.time() - startTime)
print('Stage 1 Execution Time in Seconds: ' + str(executionTime)) #Time how long this step takes
2022-03-16 03:31:37,093 - stpipe.DQInitStep - INFO - DQInitStep instance created.
2022-03-16 03:31:37,242 - stpipe.DQInitStep - INFO - Step DQInitStep running with args ('/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/Raw_Data/jw01185016001_01101_00001-seg001_nrca3_uncal.fits',).
2022-03-16 03:31:37,245 - stpipe.DQInitStep - INFO - Step DQInitStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 03:31:44,441 - stpipe.DQInitStep - INFO - Using MASK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0058.fits
2022-03-16 03:31:49,424 - stpipe.DQInitStep - INFO - Extracting mask subarray to match science data
2022-03-16 03:31:49,445 - stpipe.DQInitStep - INFO - Step DQInitStep done
2022-03-16 03:31:49,450 - stpipe.SaturationStep - INFO - SaturationStep instance created.
2022-03-16 03:31:49,658 - stpipe.SaturationStep - INFO - Step SaturationStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg001_nrca3_uncal.fits>,).
2022-03-16 03:31:49,661 - stpipe.SaturationStep - INFO - Step SaturationStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 03:31:49,706 - stpipe.SaturationStep - INFO - Using SATURATION reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0067.fits
2022-03-16 03:31:50,432 - stpipe.SaturationStep - WARNING - Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:31:50,435 - stpipe.SaturationStep - WARNING - Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:31:50,437 - stpipe.SaturationStep - WARNING - Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:31:50,440 - stpipe.SaturationStep - WARNING - Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:31:50,441 - stpipe.SaturationStep - WARNING - Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:31:53,550 - stpipe.SaturationStep - INFO - Extracting reference file subarray to match science data
2022-03-16 03:32:00,535 - stpipe.SaturationStep - INFO - Detected 10457 saturated pixels
2022-03-16 03:32:01,079 - stpipe.SaturationStep - INFO - Detected 0 A/D floor pixels
2022-03-16 03:32:01,085 - stpipe.SaturationStep - INFO - Step SaturationStep done
2022-03-16 03:32:01,089 - stpipe.SuperBiasStep - INFO - SuperBiasStep instance created.
2022-03-16 03:32:01,279 - stpipe.SuperBiasStep - INFO - Step SuperBiasStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg001_nrca3_uncal.fits>,).
2022-03-16 03:32:01,282 - stpipe.SuperBiasStep - INFO - Step SuperBiasStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 03:32:01,327 - stpipe.SuperBiasStep - INFO - Using SUPERBIAS reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0027.fits
2022-03-16 03:32:02,207 - stpipe.SuperBiasStep - WARNING - Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:32:06,628 - stpipe.SuperBiasStep - INFO - Step SuperBiasStep done
2022-03-16 03:32:06,635 - stpipe.RefPixStep - INFO - RefPixStep instance created.
100%|█████████████████████████████████████████| 320/320 [01:46<00:00,  3.01it/s]
2022-03-16 03:34:07,350 - stpipe.LinearityStep - INFO - LinearityStep instance created.
2022-03-16 03:34:07,577 - stpipe.LinearityStep - INFO - Step LinearityStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg001_nrca3_uncal.fits>,).
2022-03-16 03:34:07,581 - stpipe.LinearityStep - INFO - Step LinearityStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 03:34:07,629 - stpipe.LinearityStep - INFO - Using Linearity reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0053.fits
2022-03-16 03:34:08,686 - stpipe.LinearityStep - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:34:08,688 - stpipe.LinearityStep - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:34:08,690 - stpipe.LinearityStep - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:34:08,691 - stpipe.LinearityStep - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:34:08,692 - stpipe.LinearityStep - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:34:08,694 - stpipe.LinearityStep - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:34:08,695 - stpipe.LinearityStep - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:34:12,462 - stpipe.LinearityStep - INFO - Extracting linearity subarray to match science data
2022-03-16 03:34:29,478 - stpipe.LinearityStep - INFO - Step LinearityStep done
2022-03-16 03:34:29,482 - stpipe.PersistenceStep - INFO - PersistenceStep instance created.
2022-03-16 03:34:29,670 - stpipe.PersistenceStep - INFO - Step PersistenceStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg001_nrca3_uncal.fits>,).
2022-03-16 03:34:29,673 - stpipe.PersistenceStep - INFO - Step PersistenceStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}
2022-03-16 03:34:29,675 - stpipe.PersistenceStep - INFO - Step skipped.
2022-03-16 03:34:29,677 - stpipe.PersistenceStep - INFO - Step PersistenceStep done
2022-03-16 03:34:29,680 - stpipe.DarkCurrentStep - INFO - DarkCurrentStep instance created.
2022-03-16 03:34:29,799 - stpipe.DarkCurrentStep - INFO - Step DarkCurrentStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg001_nrca3_uncal.fits>,).
2022-03-16 03:34:29,802 - stpipe.DarkCurrentStep - INFO - Step DarkCurrentStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}
2022-03-16 03:34:29,804 - stpipe.DarkCurrentStep - INFO - Step skipped.
2022-03-16 03:34:29,805 - stpipe.DarkCurrentStep - INFO - Step DarkCurrentStep done
2022-03-16 03:34:29,809 - stpipe.JumpStep - INFO - JumpStep instance created.
2022-03-16 03:34:29,934 - stpipe.JumpStep - INFO - Step JumpStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg001_nrca3_uncal.fits>,).
2022-03-16 03:34:29,938 - stpipe.JumpStep - INFO - Step JumpStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 15, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
2022-03-16 03:34:29,959 - stpipe.JumpStep - INFO - CR rejection threshold = 15 sigma
2022-03-16 03:34:29,986 - stpipe.JumpStep - INFO - Using GAIN reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits
2022-03-16 03:34:30,227 - stpipe.JumpStep - INFO - Using READNOISE reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits
2022-03-16 03:34:30,568 - stpipe.JumpStep - INFO - Using 1 core for jump detection 
2022-03-16 03:34:33,723 - stpipe.JumpStep - INFO - Extracting gain subarray to match science data
2022-03-16 03:34:33,726 - stpipe.JumpStep - INFO - Extracting readnoise subarray to match science data
2022-03-16 03:34:36,218 - stpipe.JumpStep - INFO - Executing two-point difference method
2022-03-16 03:34:47,292 - stpipe.JumpStep - INFO - Working on integration 1:
2022-03-16 03:34:47,587 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:47,589 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1314 pixels with at least one CR and three groups
2022-03-16 03:34:47,590 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:34:47,726 - stpipe.JumpStep - INFO - Working on integration 2:
2022-03-16 03:34:48,051 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:48,052 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1264 pixels with at least one CR and three groups
2022-03-16 03:34:48,053 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:34:48,215 - stpipe.JumpStep - INFO - Working on integration 3:
2022-03-16 03:34:48,535 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:48,537 - stpipe.JumpStep - INFO - From highest outlier Two-point found 991 pixels with at least one CR and three groups
2022-03-16 03:34:48,539 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:34:48,660 - stpipe.JumpStep - INFO - Working on integration 4:
2022-03-16 03:34:48,975 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:48,976 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1143 pixels with at least one CR and three groups
2022-03-16 03:34:48,977 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:34:49,116 - stpipe.JumpStep - INFO - Working on integration 5:
2022-03-16 03:34:49,447 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:49,449 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1162 pixels with at least one CR and three groups
2022-03-16 03:34:49,450 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:34:49,595 - stpipe.JumpStep - INFO - Working on integration 6:
2022-03-16 03:34:49,917 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:49,918 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1205 pixels with at least one CR and three groups
2022-03-16 03:34:49,920 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:34:50,094 - stpipe.JumpStep - INFO - Working on integration 7:
2022-03-16 03:34:50,422 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:50,423 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1188 pixels with at least one CR and three groups
2022-03-16 03:34:50,424 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:34:50,565 - stpipe.JumpStep - INFO - Working on integration 8:
2022-03-16 03:34:50,883 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:50,885 - stpipe.JumpStep - INFO - From highest outlier Two-point found 978 pixels with at least one CR and three groups
2022-03-16 03:34:50,885 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:34:51,008 - stpipe.JumpStep - INFO - Working on integration 9:
2022-03-16 03:34:51,328 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:51,329 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1218 pixels with at least one CR and three groups
2022-03-16 03:34:51,330 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:34:51,477 - stpipe.JumpStep - INFO - Working on integration 10:
2022-03-16 03:34:51,794 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:51,795 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1285 pixels with at least one CR and three groups
2022-03-16 03:34:51,796 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:34:51,963 - stpipe.JumpStep - INFO - Working on integration 11:
2022-03-16 03:34:52,291 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:52,292 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1261 pixels with at least one CR and three groups
2022-03-16 03:34:52,292 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:34:52,468 - stpipe.JumpStep - INFO - Working on integration 12:
2022-03-16 03:34:52,806 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:52,808 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1294 pixels with at least one CR and three groups
2022-03-16 03:34:52,809 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:34:52,977 - stpipe.JumpStep - INFO - Working on integration 13:
2022-03-16 03:34:53,307 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:53,309 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1296 pixels with at least one CR and three groups
2022-03-16 03:34:53,310 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:34:53,459 - stpipe.JumpStep - INFO - Working on integration 14:
2022-03-16 03:34:53,786 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:53,788 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1001 pixels with at least one CR and three groups
2022-03-16 03:34:53,789 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:34:53,913 - stpipe.JumpStep - INFO - Working on integration 15:
2022-03-16 03:34:54,238 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:54,240 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1276 pixels with at least one CR and three groups
2022-03-16 03:34:54,241 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:34:54,396 - stpipe.JumpStep - INFO - Working on integration 16:
2022-03-16 03:34:54,721 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:54,723 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1288 pixels with at least one CR and three groups
2022-03-16 03:34:54,724 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:34:54,874 - stpipe.JumpStep - INFO - Working on integration 17:
2022-03-16 03:34:55,191 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:55,192 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1238 pixels with at least one CR and three groups
2022-03-16 03:34:55,193 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:34:55,344 - stpipe.JumpStep - INFO - Working on integration 18:
2022-03-16 03:34:55,664 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:55,665 - stpipe.JumpStep - INFO - From highest outlier Two-point found 996 pixels with at least one CR and three groups
2022-03-16 03:34:55,667 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:34:55,822 - stpipe.JumpStep - INFO - Working on integration 19:
2022-03-16 03:34:56,140 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:56,142 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1234 pixels with at least one CR and three groups
2022-03-16 03:34:56,142 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:34:56,313 - stpipe.JumpStep - INFO - Working on integration 20:
2022-03-16 03:34:56,651 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:56,652 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1003 pixels with at least one CR and three groups
2022-03-16 03:34:56,653 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:34:56,780 - stpipe.JumpStep - INFO - Working on integration 21:
2022-03-16 03:34:57,102 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:57,103 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1295 pixels with at least one CR and three groups
2022-03-16 03:34:57,105 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:34:57,258 - stpipe.JumpStep - INFO - Working on integration 22:
2022-03-16 03:34:57,585 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:57,587 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1227 pixels with at least one CR and three groups
2022-03-16 03:34:57,589 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 03:34:57,735 - stpipe.JumpStep - INFO - Working on integration 23:
2022-03-16 03:34:58,050 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:58,052 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1286 pixels with at least one CR and three groups
2022-03-16 03:34:58,053 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:34:58,202 - stpipe.JumpStep - INFO - Working on integration 24:
2022-03-16 03:34:58,516 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:58,518 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1301 pixels with at least one CR and three groups
2022-03-16 03:34:58,519 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:34:58,671 - stpipe.JumpStep - INFO - Working on integration 25:
2022-03-16 03:34:58,994 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:58,995 - stpipe.JumpStep - INFO - From highest outlier Two-point found 950 pixels with at least one CR and three groups
2022-03-16 03:34:58,997 - stpipe.JumpStep - INFO - From highest outlier Two-point found 67 pixels with at least one CR and two groups
2022-03-16 03:34:59,115 - stpipe.JumpStep - INFO - Working on integration 26:
2022-03-16 03:34:59,439 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:59,440 - stpipe.JumpStep - INFO - From highest outlier Two-point found 979 pixels with at least one CR and three groups
2022-03-16 03:34:59,441 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:34:59,562 - stpipe.JumpStep - INFO - Working on integration 27:
2022-03-16 03:34:59,874 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:34:59,875 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1268 pixels with at least one CR and three groups
2022-03-16 03:34:59,877 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:00,026 - stpipe.JumpStep - INFO - Working on integration 28:
2022-03-16 03:35:00,342 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:00,343 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1176 pixels with at least one CR and three groups
2022-03-16 03:35:00,344 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:00,483 - stpipe.JumpStep - INFO - Working on integration 29:
2022-03-16 03:35:00,799 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:00,801 - stpipe.JumpStep - INFO - From highest outlier Two-point found 978 pixels with at least one CR and three groups
2022-03-16 03:35:00,803 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:00,922 - stpipe.JumpStep - INFO - Working on integration 30:
2022-03-16 03:35:01,247 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:01,248 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1171 pixels with at least one CR and three groups
2022-03-16 03:35:01,250 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:01,388 - stpipe.JumpStep - INFO - Working on integration 31:
2022-03-16 03:35:01,699 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:01,700 - stpipe.JumpStep - INFO - From highest outlier Two-point found 993 pixels with at least one CR and three groups
2022-03-16 03:35:01,702 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:01,834 - stpipe.JumpStep - INFO - Working on integration 32:
2022-03-16 03:35:02,162 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:02,164 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1312 pixels with at least one CR and three groups
2022-03-16 03:35:02,165 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:35:02,319 - stpipe.JumpStep - INFO - Working on integration 33:
2022-03-16 03:35:02,638 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:02,640 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1259 pixels with at least one CR and three groups
2022-03-16 03:35:02,641 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:02,792 - stpipe.JumpStep - INFO - Working on integration 34:
2022-03-16 03:35:03,115 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:03,117 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1195 pixels with at least one CR and three groups
2022-03-16 03:35:03,118 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:03,258 - stpipe.JumpStep - INFO - Working on integration 35:
2022-03-16 03:35:03,576 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:03,578 - stpipe.JumpStep - INFO - From highest outlier Two-point found 985 pixels with at least one CR and three groups
2022-03-16 03:35:03,579 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:03,702 - stpipe.JumpStep - INFO - Working on integration 36:
2022-03-16 03:35:04,020 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:04,022 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1223 pixels with at least one CR and three groups
2022-03-16 03:35:04,023 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:04,166 - stpipe.JumpStep - INFO - Working on integration 37:
2022-03-16 03:35:04,482 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:04,484 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1324 pixels with at least one CR and three groups
2022-03-16 03:35:04,485 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:35:04,636 - stpipe.JumpStep - INFO - Working on integration 38:
2022-03-16 03:35:04,948 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:04,950 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1161 pixels with at least one CR and three groups
2022-03-16 03:35:04,951 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:05,088 - stpipe.JumpStep - INFO - Working on integration 39:
2022-03-16 03:35:05,403 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:05,404 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1350 pixels with at least one CR and three groups
2022-03-16 03:35:05,405 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:05,560 - stpipe.JumpStep - INFO - Working on integration 40:
2022-03-16 03:35:05,880 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:05,881 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1236 pixels with at least one CR and three groups
2022-03-16 03:35:05,883 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:06,027 - stpipe.JumpStep - INFO - Working on integration 41:
2022-03-16 03:35:06,356 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:06,358 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1268 pixels with at least one CR and three groups
2022-03-16 03:35:06,359 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:35:06,508 - stpipe.JumpStep - INFO - Working on integration 42:
2022-03-16 03:35:06,835 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:06,836 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1361 pixels with at least one CR and three groups
2022-03-16 03:35:06,837 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:06,996 - stpipe.JumpStep - INFO - Working on integration 43:
2022-03-16 03:35:07,315 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:07,316 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1194 pixels with at least one CR and three groups
2022-03-16 03:35:07,318 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:35:07,468 - stpipe.JumpStep - INFO - Working on integration 44:
2022-03-16 03:35:07,789 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:07,791 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1267 pixels with at least one CR and three groups
2022-03-16 03:35:07,792 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:07,942 - stpipe.JumpStep - INFO - Working on integration 45:
2022-03-16 03:35:08,266 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:08,267 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1354 pixels with at least one CR and three groups
2022-03-16 03:35:08,268 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:08,428 - stpipe.JumpStep - INFO - Working on integration 46:
2022-03-16 03:35:08,750 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:08,752 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1246 pixels with at least one CR and three groups
2022-03-16 03:35:08,753 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:08,901 - stpipe.JumpStep - INFO - Working on integration 47:
2022-03-16 03:35:09,210 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:09,212 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1211 pixels with at least one CR and three groups
2022-03-16 03:35:09,213 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:35:09,357 - stpipe.JumpStep - INFO - Working on integration 48:
2022-03-16 03:35:09,683 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:09,684 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1231 pixels with at least one CR and three groups
2022-03-16 03:35:09,685 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:09,831 - stpipe.JumpStep - INFO - Working on integration 49:
2022-03-16 03:35:10,148 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:10,150 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1254 pixels with at least one CR and three groups
2022-03-16 03:35:10,151 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:10,298 - stpipe.JumpStep - INFO - Working on integration 50:
2022-03-16 03:35:10,613 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:10,614 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1243 pixels with at least one CR and three groups
2022-03-16 03:35:10,615 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:10,763 - stpipe.JumpStep - INFO - Working on integration 51:
2022-03-16 03:35:11,078 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:11,079 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1335 pixels with at least one CR and three groups
2022-03-16 03:35:11,080 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 03:35:11,265 - stpipe.JumpStep - INFO - Working on integration 52:
2022-03-16 03:35:11,581 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:11,582 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1128 pixels with at least one CR and three groups
2022-03-16 03:35:11,583 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:11,730 - stpipe.JumpStep - INFO - Working on integration 53:
2022-03-16 03:35:12,047 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:12,048 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1234 pixels with at least one CR and three groups
2022-03-16 03:35:12,049 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:12,200 - stpipe.JumpStep - INFO - Working on integration 54:
2022-03-16 03:35:12,515 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:12,516 - stpipe.JumpStep - INFO - From highest outlier Two-point found 998 pixels with at least one CR and three groups
2022-03-16 03:35:12,518 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:12,649 - stpipe.JumpStep - INFO - Working on integration 55:
2022-03-16 03:35:12,956 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:12,958 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1272 pixels with at least one CR and three groups
2022-03-16 03:35:12,959 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:13,115 - stpipe.JumpStep - INFO - Working on integration 56:
2022-03-16 03:35:13,439 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:13,441 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1281 pixels with at least one CR and three groups
2022-03-16 03:35:13,442 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:13,591 - stpipe.JumpStep - INFO - Working on integration 57:
2022-03-16 03:35:13,911 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:13,912 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1241 pixels with at least one CR and three groups
2022-03-16 03:35:13,913 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:14,059 - stpipe.JumpStep - INFO - Working on integration 58:
2022-03-16 03:35:14,375 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:14,376 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1339 pixels with at least one CR and three groups
2022-03-16 03:35:14,377 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:14,532 - stpipe.JumpStep - INFO - Working on integration 59:
2022-03-16 03:35:14,846 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:14,847 - stpipe.JumpStep - INFO - From highest outlier Two-point found 999 pixels with at least one CR and three groups
2022-03-16 03:35:14,848 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:14,954 - stpipe.JumpStep - INFO - Working on integration 60:
2022-03-16 03:35:15,290 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:15,292 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1282 pixels with at least one CR and three groups
2022-03-16 03:35:15,292 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:15,447 - stpipe.JumpStep - INFO - Working on integration 61:
2022-03-16 03:35:15,805 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:15,807 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1256 pixels with at least one CR and three groups
2022-03-16 03:35:15,808 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:15,973 - stpipe.JumpStep - INFO - Working on integration 62:
2022-03-16 03:35:16,305 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:16,306 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1000 pixels with at least one CR and three groups
2022-03-16 03:35:16,308 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:16,437 - stpipe.JumpStep - INFO - Working on integration 63:
2022-03-16 03:35:16,771 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:16,773 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1320 pixels with at least one CR and three groups
2022-03-16 03:35:16,774 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:35:16,968 - stpipe.JumpStep - INFO - Working on integration 64:
2022-03-16 03:35:17,276 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:17,277 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1253 pixels with at least one CR and three groups
2022-03-16 03:35:17,279 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:17,405 - stpipe.JumpStep - INFO - Working on integration 65:
2022-03-16 03:35:17,690 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:17,691 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1232 pixels with at least one CR and three groups
2022-03-16 03:35:17,693 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:17,828 - stpipe.JumpStep - INFO - Working on integration 66:
2022-03-16 03:35:18,115 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:18,117 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1173 pixels with at least one CR and three groups
2022-03-16 03:35:18,118 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:35:18,239 - stpipe.JumpStep - INFO - Working on integration 67:
2022-03-16 03:35:18,567 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:18,568 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1288 pixels with at least one CR and three groups
2022-03-16 03:35:18,570 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:18,733 - stpipe.JumpStep - INFO - Working on integration 68:
2022-03-16 03:35:19,065 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:19,066 - stpipe.JumpStep - INFO - From highest outlier Two-point found 961 pixels with at least one CR and three groups
2022-03-16 03:35:19,068 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:19,207 - stpipe.JumpStep - INFO - Working on integration 69:
2022-03-16 03:35:19,559 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:19,560 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1177 pixels with at least one CR and three groups
2022-03-16 03:35:19,561 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:19,715 - stpipe.JumpStep - INFO - Working on integration 70:
2022-03-16 03:35:20,062 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:20,063 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1010 pixels with at least one CR and three groups
2022-03-16 03:35:20,065 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 03:35:20,204 - stpipe.JumpStep - INFO - Working on integration 71:
2022-03-16 03:35:20,509 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:20,510 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1146 pixels with at least one CR and three groups
2022-03-16 03:35:20,512 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:20,644 - stpipe.JumpStep - INFO - Working on integration 72:
2022-03-16 03:35:20,972 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:20,974 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1274 pixels with at least one CR and three groups
2022-03-16 03:35:20,975 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:35:21,134 - stpipe.JumpStep - INFO - Working on integration 73:
2022-03-16 03:35:21,461 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:21,463 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1011 pixels with at least one CR and three groups
2022-03-16 03:35:21,464 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:21,590 - stpipe.JumpStep - INFO - Working on integration 74:
2022-03-16 03:35:21,902 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:21,904 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1335 pixels with at least one CR and three groups
2022-03-16 03:35:21,905 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:22,069 - stpipe.JumpStep - INFO - Working on integration 75:
2022-03-16 03:35:22,375 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:22,377 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1228 pixels with at least one CR and three groups
2022-03-16 03:35:22,378 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:22,539 - stpipe.JumpStep - INFO - Working on integration 76:
2022-03-16 03:35:22,846 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:22,848 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1272 pixels with at least one CR and three groups
2022-03-16 03:35:22,849 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:35:22,980 - stpipe.JumpStep - INFO - Working on integration 77:
2022-03-16 03:35:23,279 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:23,281 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1348 pixels with at least one CR and three groups
2022-03-16 03:35:23,282 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:23,476 - stpipe.JumpStep - INFO - Working on integration 78:
2022-03-16 03:35:23,804 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:23,806 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1142 pixels with at least one CR and three groups
2022-03-16 03:35:23,807 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:23,955 - stpipe.JumpStep - INFO - Working on integration 79:
2022-03-16 03:35:24,281 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:24,283 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1245 pixels with at least one CR and three groups
2022-03-16 03:35:24,284 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:24,417 - stpipe.JumpStep - INFO - Working on integration 80:
2022-03-16 03:35:24,770 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:24,772 - stpipe.JumpStep - INFO - From highest outlier Two-point found 930 pixels with at least one CR and three groups
2022-03-16 03:35:24,773 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:24,900 - stpipe.JumpStep - INFO - Working on integration 81:
2022-03-16 03:35:25,202 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:25,204 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1216 pixels with at least one CR and three groups
2022-03-16 03:35:25,205 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:25,331 - stpipe.JumpStep - INFO - Working on integration 82:
2022-03-16 03:35:25,629 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:25,631 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1198 pixels with at least one CR and three groups
2022-03-16 03:35:25,632 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:25,754 - stpipe.JumpStep - INFO - Working on integration 83:
2022-03-16 03:35:26,092 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:26,093 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1261 pixels with at least one CR and three groups
2022-03-16 03:35:26,094 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:26,239 - stpipe.JumpStep - INFO - Working on integration 84:
2022-03-16 03:35:26,549 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:26,551 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1224 pixels with at least one CR and three groups
2022-03-16 03:35:26,552 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:35:26,717 - stpipe.JumpStep - INFO - Working on integration 85:
2022-03-16 03:35:27,042 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:27,044 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1340 pixels with at least one CR and three groups
2022-03-16 03:35:27,045 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:35:27,210 - stpipe.JumpStep - INFO - Working on integration 86:
2022-03-16 03:35:27,542 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:27,543 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1273 pixels with at least one CR and three groups
2022-03-16 03:35:27,544 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:35:27,706 - stpipe.JumpStep - INFO - Working on integration 87:
2022-03-16 03:35:27,994 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:27,996 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1222 pixels with at least one CR and three groups
2022-03-16 03:35:27,997 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:28,153 - stpipe.JumpStep - INFO - Working on integration 88:
2022-03-16 03:35:28,517 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:28,519 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1199 pixels with at least one CR and three groups
2022-03-16 03:35:28,520 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:28,652 - stpipe.JumpStep - INFO - Working on integration 89:
2022-03-16 03:35:28,982 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:28,984 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1331 pixels with at least one CR and three groups
2022-03-16 03:35:28,986 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:35:29,172 - stpipe.JumpStep - INFO - Working on integration 90:
2022-03-16 03:35:29,480 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:29,481 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1300 pixels with at least one CR and three groups
2022-03-16 03:35:29,482 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 03:35:29,623 - stpipe.JumpStep - INFO - Working on integration 91:
2022-03-16 03:35:29,935 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:29,936 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1268 pixels with at least one CR and three groups
2022-03-16 03:35:29,937 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:30,121 - stpipe.JumpStep - INFO - Working on integration 92:
2022-03-16 03:35:30,419 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:30,421 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1241 pixels with at least one CR and three groups
2022-03-16 03:35:30,422 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:30,571 - stpipe.JumpStep - INFO - Working on integration 93:
2022-03-16 03:35:30,921 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:30,923 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1172 pixels with at least one CR and three groups
2022-03-16 03:35:30,924 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 03:35:31,058 - stpipe.JumpStep - INFO - Working on integration 94:
2022-03-16 03:35:31,376 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:31,378 - stpipe.JumpStep - INFO - From highest outlier Two-point found 985 pixels with at least one CR and three groups
2022-03-16 03:35:31,379 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:31,507 - stpipe.JumpStep - INFO - Working on integration 95:
2022-03-16 03:35:31,849 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:31,850 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1246 pixels with at least one CR and three groups
2022-03-16 03:35:31,851 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:31,988 - stpipe.JumpStep - INFO - Working on integration 96:
2022-03-16 03:35:32,298 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:32,299 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1342 pixels with at least one CR and three groups
2022-03-16 03:35:32,301 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:32,460 - stpipe.JumpStep - INFO - Working on integration 97:
2022-03-16 03:35:32,755 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:32,757 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1284 pixels with at least one CR and three groups
2022-03-16 03:35:32,758 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:32,906 - stpipe.JumpStep - INFO - Working on integration 98:
2022-03-16 03:35:33,244 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:33,245 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1261 pixels with at least one CR and three groups
2022-03-16 03:35:33,246 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:33,380 - stpipe.JumpStep - INFO - Working on integration 99:
2022-03-16 03:35:33,700 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:33,702 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1254 pixels with at least one CR and three groups
2022-03-16 03:35:33,703 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:33,877 - stpipe.JumpStep - INFO - Working on integration 100:
2022-03-16 03:35:34,182 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:34,184 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1281 pixels with at least one CR and three groups
2022-03-16 03:35:34,185 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:34,345 - stpipe.JumpStep - INFO - Working on integration 101:
2022-03-16 03:35:34,680 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:34,681 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1007 pixels with at least one CR and three groups
2022-03-16 03:35:34,682 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:35:34,834 - stpipe.JumpStep - INFO - Working on integration 102:
2022-03-16 03:35:35,147 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:35,148 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1177 pixels with at least one CR and three groups
2022-03-16 03:35:35,150 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:35,284 - stpipe.JumpStep - INFO - Working on integration 103:
2022-03-16 03:35:35,605 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:35,606 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1286 pixels with at least one CR and three groups
2022-03-16 03:35:35,608 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:35,757 - stpipe.JumpStep - INFO - Working on integration 104:
2022-03-16 03:35:36,083 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:36,085 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1313 pixels with at least one CR and three groups
2022-03-16 03:35:36,086 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:36,244 - stpipe.JumpStep - INFO - Working on integration 105:
2022-03-16 03:35:36,564 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:36,566 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1231 pixels with at least one CR and three groups
2022-03-16 03:35:36,568 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:35:36,709 - stpipe.JumpStep - INFO - Working on integration 106:
2022-03-16 03:35:37,043 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:37,044 - stpipe.JumpStep - INFO - From highest outlier Two-point found 980 pixels with at least one CR and three groups
2022-03-16 03:35:37,046 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:37,208 - stpipe.JumpStep - INFO - Working on integration 107:
2022-03-16 03:35:37,512 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:37,513 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1161 pixels with at least one CR and three groups
2022-03-16 03:35:37,514 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:37,645 - stpipe.JumpStep - INFO - Working on integration 108:
2022-03-16 03:35:37,947 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:37,949 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1166 pixels with at least one CR and three groups
2022-03-16 03:35:37,950 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:35:38,104 - stpipe.JumpStep - INFO - Working on integration 109:
2022-03-16 03:35:38,443 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:38,445 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1019 pixels with at least one CR and three groups
2022-03-16 03:35:38,446 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:38,580 - stpipe.JumpStep - INFO - Working on integration 110:
2022-03-16 03:35:38,919 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:38,921 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1251 pixels with at least one CR and three groups
2022-03-16 03:35:38,922 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:39,058 - stpipe.JumpStep - INFO - Working on integration 111:
2022-03-16 03:35:39,353 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:39,355 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1250 pixels with at least one CR and three groups
2022-03-16 03:35:39,356 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:39,488 - stpipe.JumpStep - INFO - Working on integration 112:
2022-03-16 03:35:39,800 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:39,802 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1008 pixels with at least one CR and three groups
2022-03-16 03:35:39,802 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:39,942 - stpipe.JumpStep - INFO - Working on integration 113:
2022-03-16 03:35:40,255 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:40,256 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1293 pixels with at least one CR and three groups
2022-03-16 03:35:40,258 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:40,399 - stpipe.JumpStep - INFO - Working on integration 114:
2022-03-16 03:35:40,693 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:40,694 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1203 pixels with at least one CR and three groups
2022-03-16 03:35:40,696 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:40,829 - stpipe.JumpStep - INFO - Working on integration 115:
2022-03-16 03:35:41,155 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:41,157 - stpipe.JumpStep - INFO - From highest outlier Two-point found 982 pixels with at least one CR and three groups
2022-03-16 03:35:41,158 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:41,295 - stpipe.JumpStep - INFO - Working on integration 116:
2022-03-16 03:35:41,635 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:41,636 - stpipe.JumpStep - INFO - From highest outlier Two-point found 946 pixels with at least one CR and three groups
2022-03-16 03:35:41,637 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:41,773 - stpipe.JumpStep - INFO - Working on integration 117:
2022-03-16 03:35:42,118 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:42,120 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1221 pixels with at least one CR and three groups
2022-03-16 03:35:42,121 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:42,294 - stpipe.JumpStep - INFO - Working on integration 118:
2022-03-16 03:35:42,627 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:42,629 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1167 pixels with at least one CR and three groups
2022-03-16 03:35:42,631 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:42,779 - stpipe.JumpStep - INFO - Working on integration 119:
2022-03-16 03:35:43,082 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:43,084 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1285 pixels with at least one CR and three groups
2022-03-16 03:35:43,085 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:43,217 - stpipe.JumpStep - INFO - Working on integration 120:
2022-03-16 03:35:43,501 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:43,502 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1206 pixels with at least one CR and three groups
2022-03-16 03:35:43,504 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:43,629 - stpipe.JumpStep - INFO - Working on integration 121:
2022-03-16 03:35:43,910 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:43,911 - stpipe.JumpStep - INFO - From highest outlier Two-point found 993 pixels with at least one CR and three groups
2022-03-16 03:35:43,913 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:44,026 - stpipe.JumpStep - INFO - Working on integration 122:
2022-03-16 03:35:44,306 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:44,307 - stpipe.JumpStep - INFO - From highest outlier Two-point found 995 pixels with at least one CR and three groups
2022-03-16 03:35:44,309 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:44,411 - stpipe.JumpStep - INFO - Working on integration 123:
2022-03-16 03:35:44,690 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:44,691 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 03:35:44,692 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:44,815 - stpipe.JumpStep - INFO - Working on integration 124:
2022-03-16 03:35:45,099 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:45,101 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1216 pixels with at least one CR and three groups
2022-03-16 03:35:45,102 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:45,227 - stpipe.JumpStep - INFO - Working on integration 125:
2022-03-16 03:35:45,509 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:45,510 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1185 pixels with at least one CR and three groups
2022-03-16 03:35:45,512 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:45,636 - stpipe.JumpStep - INFO - Working on integration 126:
2022-03-16 03:35:45,922 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:45,923 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1294 pixels with at least one CR and three groups
2022-03-16 03:35:45,924 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:46,056 - stpipe.JumpStep - INFO - Working on integration 127:
2022-03-16 03:35:46,334 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:46,336 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1227 pixels with at least one CR and three groups
2022-03-16 03:35:46,338 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:46,463 - stpipe.JumpStep - INFO - Working on integration 128:
2022-03-16 03:35:46,750 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:46,751 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1317 pixels with at least one CR and three groups
2022-03-16 03:35:46,752 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:35:46,887 - stpipe.JumpStep - INFO - Working on integration 129:
2022-03-16 03:35:47,165 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:47,166 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1295 pixels with at least one CR and three groups
2022-03-16 03:35:47,168 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:47,294 - stpipe.JumpStep - INFO - Working on integration 130:
2022-03-16 03:35:47,574 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:47,575 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1309 pixels with at least one CR and three groups
2022-03-16 03:35:47,576 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:47,705 - stpipe.JumpStep - INFO - Working on integration 131:
2022-03-16 03:35:47,983 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:47,984 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1239 pixels with at least one CR and three groups
2022-03-16 03:35:47,986 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:48,107 - stpipe.JumpStep - INFO - Working on integration 132:
2022-03-16 03:35:48,383 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:48,385 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1007 pixels with at least one CR and three groups
2022-03-16 03:35:48,386 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:48,489 - stpipe.JumpStep - INFO - Working on integration 133:
2022-03-16 03:35:48,770 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:48,771 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1272 pixels with at least one CR and three groups
2022-03-16 03:35:48,772 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:48,912 - stpipe.JumpStep - INFO - Working on integration 134:
2022-03-16 03:35:49,188 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:49,189 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1156 pixels with at least one CR and three groups
2022-03-16 03:35:49,191 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:49,306 - stpipe.JumpStep - INFO - Working on integration 135:
2022-03-16 03:35:49,593 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:49,595 - stpipe.JumpStep - INFO - From highest outlier Two-point found 980 pixels with at least one CR and three groups
2022-03-16 03:35:49,596 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:49,697 - stpipe.JumpStep - INFO - Working on integration 136:
2022-03-16 03:35:49,974 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:49,975 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1250 pixels with at least one CR and three groups
2022-03-16 03:35:49,976 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:50,099 - stpipe.JumpStep - INFO - Working on integration 137:
2022-03-16 03:35:50,379 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:50,381 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1320 pixels with at least one CR and three groups
2022-03-16 03:35:50,382 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:50,511 - stpipe.JumpStep - INFO - Working on integration 138:
2022-03-16 03:35:50,785 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:50,787 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1192 pixels with at least one CR and three groups
2022-03-16 03:35:50,788 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:35:50,920 - stpipe.JumpStep - INFO - Working on integration 139:
2022-03-16 03:35:51,202 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:51,204 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1182 pixels with at least one CR and three groups
2022-03-16 03:35:51,205 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:51,327 - stpipe.JumpStep - INFO - Working on integration 140:
2022-03-16 03:35:51,606 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:51,608 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1296 pixels with at least one CR and three groups
2022-03-16 03:35:51,609 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:51,736 - stpipe.JumpStep - INFO - Working on integration 141:
2022-03-16 03:35:52,016 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:52,018 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1309 pixels with at least one CR and three groups
2022-03-16 03:35:52,020 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:52,148 - stpipe.JumpStep - INFO - Working on integration 142:
2022-03-16 03:35:52,424 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:52,426 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1224 pixels with at least one CR and three groups
2022-03-16 03:35:52,427 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:52,556 - stpipe.JumpStep - INFO - Working on integration 143:
2022-03-16 03:35:52,840 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:52,842 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1207 pixels with at least one CR and three groups
2022-03-16 03:35:52,843 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:52,964 - stpipe.JumpStep - INFO - Working on integration 144:
2022-03-16 03:35:53,242 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:53,244 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1273 pixels with at least one CR and three groups
2022-03-16 03:35:53,245 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:53,375 - stpipe.JumpStep - INFO - Working on integration 145:
2022-03-16 03:35:53,653 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:53,655 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1279 pixels with at least one CR and three groups
2022-03-16 03:35:53,656 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:53,782 - stpipe.JumpStep - INFO - Working on integration 146:
2022-03-16 03:35:54,061 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:54,063 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1211 pixels with at least one CR and three groups
2022-03-16 03:35:54,064 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:54,196 - stpipe.JumpStep - INFO - Working on integration 147:
2022-03-16 03:35:54,473 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:54,475 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1161 pixels with at least one CR and three groups
2022-03-16 03:35:54,476 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:54,591 - stpipe.JumpStep - INFO - Working on integration 148:
2022-03-16 03:35:54,875 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:54,876 - stpipe.JumpStep - INFO - From highest outlier Two-point found 963 pixels with at least one CR and three groups
2022-03-16 03:35:54,877 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:35:54,988 - stpipe.JumpStep - INFO - Working on integration 149:
2022-03-16 03:35:55,263 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:55,264 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1300 pixels with at least one CR and three groups
2022-03-16 03:35:55,267 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:55,399 - stpipe.JumpStep - INFO - Working on integration 150:
2022-03-16 03:35:55,674 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:55,676 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1194 pixels with at least one CR and three groups
2022-03-16 03:35:55,678 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:55,797 - stpipe.JumpStep - INFO - Working on integration 151:
2022-03-16 03:35:56,076 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:56,078 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1269 pixels with at least one CR and three groups
2022-03-16 03:35:56,079 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:56,209 - stpipe.JumpStep - INFO - Working on integration 152:
2022-03-16 03:35:56,494 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:56,495 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1287 pixels with at least one CR and three groups
2022-03-16 03:35:56,496 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:56,623 - stpipe.JumpStep - INFO - Working on integration 153:
2022-03-16 03:35:56,902 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:56,904 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1257 pixels with at least one CR and three groups
2022-03-16 03:35:56,905 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:57,028 - stpipe.JumpStep - INFO - Working on integration 154:
2022-03-16 03:35:57,313 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:57,315 - stpipe.JumpStep - INFO - From highest outlier Two-point found 968 pixels with at least one CR and three groups
2022-03-16 03:35:57,316 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:57,420 - stpipe.JumpStep - INFO - Working on integration 155:
2022-03-16 03:35:57,708 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:57,710 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1178 pixels with at least one CR and three groups
2022-03-16 03:35:57,711 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:57,831 - stpipe.JumpStep - INFO - Working on integration 156:
2022-03-16 03:35:58,128 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:58,129 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1163 pixels with at least one CR and three groups
2022-03-16 03:35:58,131 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:35:58,284 - stpipe.JumpStep - INFO - Working on integration 157:
2022-03-16 03:35:58,603 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:58,604 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1276 pixels with at least one CR and three groups
2022-03-16 03:35:58,605 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:35:58,750 - stpipe.JumpStep - INFO - Working on integration 158:
2022-03-16 03:35:59,067 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:59,068 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1009 pixels with at least one CR and three groups
2022-03-16 03:35:59,069 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:35:59,191 - stpipe.JumpStep - INFO - Working on integration 159:
2022-03-16 03:35:59,511 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:59,512 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1152 pixels with at least one CR and three groups
2022-03-16 03:35:59,513 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:35:59,650 - stpipe.JumpStep - INFO - Working on integration 160:
2022-03-16 03:35:59,971 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:35:59,972 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1170 pixels with at least one CR and three groups
2022-03-16 03:35:59,973 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:36:00,114 - stpipe.JumpStep - INFO - Working on integration 161:
2022-03-16 03:36:00,439 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:00,440 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1330 pixels with at least one CR and three groups
2022-03-16 03:36:00,442 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:00,596 - stpipe.JumpStep - INFO - Working on integration 162:
2022-03-16 03:36:00,912 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:00,913 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1240 pixels with at least one CR and three groups
2022-03-16 03:36:00,915 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:01,059 - stpipe.JumpStep - INFO - Working on integration 163:
2022-03-16 03:36:01,371 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:01,373 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1249 pixels with at least one CR and three groups
2022-03-16 03:36:01,374 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:01,536 - stpipe.JumpStep - INFO - Working on integration 164:
2022-03-16 03:36:01,874 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:01,876 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1259 pixels with at least one CR and three groups
2022-03-16 03:36:01,877 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:02,028 - stpipe.JumpStep - INFO - Working on integration 165:
2022-03-16 03:36:02,361 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:02,363 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1272 pixels with at least one CR and three groups
2022-03-16 03:36:02,364 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 03:36:02,523 - stpipe.JumpStep - INFO - Working on integration 166:
2022-03-16 03:36:02,853 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:02,854 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1167 pixels with at least one CR and three groups
2022-03-16 03:36:02,856 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:02,992 - stpipe.JumpStep - INFO - Working on integration 167:
2022-03-16 03:36:03,331 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:03,332 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1276 pixels with at least one CR and three groups
2022-03-16 03:36:03,333 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:03,480 - stpipe.JumpStep - INFO - Working on integration 168:
2022-03-16 03:36:03,808 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:03,810 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1292 pixels with at least one CR and three groups
2022-03-16 03:36:03,811 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:03,967 - stpipe.JumpStep - INFO - Working on integration 169:
2022-03-16 03:36:04,286 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:04,287 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1298 pixels with at least one CR and three groups
2022-03-16 03:36:04,288 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:04,430 - stpipe.JumpStep - INFO - Working on integration 170:
2022-03-16 03:36:04,746 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:04,747 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1183 pixels with at least one CR and three groups
2022-03-16 03:36:04,748 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:36:04,887 - stpipe.JumpStep - INFO - Working on integration 171:
2022-03-16 03:36:05,201 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:05,202 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1262 pixels with at least one CR and three groups
2022-03-16 03:36:05,204 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:05,351 - stpipe.JumpStep - INFO - Working on integration 172:
2022-03-16 03:36:05,667 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:05,668 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1243 pixels with at least one CR and three groups
2022-03-16 03:36:05,670 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:05,827 - stpipe.JumpStep - INFO - Working on integration 173:
2022-03-16 03:36:06,152 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:06,154 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1302 pixels with at least one CR and three groups
2022-03-16 03:36:06,156 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:06,300 - stpipe.JumpStep - INFO - Working on integration 174:
2022-03-16 03:36:06,609 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:06,611 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1272 pixels with at least one CR and three groups
2022-03-16 03:36:06,612 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:06,761 - stpipe.JumpStep - INFO - Working on integration 175:
2022-03-16 03:36:07,083 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:07,084 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1139 pixels with at least one CR and three groups
2022-03-16 03:36:07,085 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:07,222 - stpipe.JumpStep - INFO - Working on integration 176:
2022-03-16 03:36:07,528 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:07,529 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1206 pixels with at least one CR and three groups
2022-03-16 03:36:07,531 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:07,671 - stpipe.JumpStep - INFO - Working on integration 177:
2022-03-16 03:36:07,991 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:07,992 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1208 pixels with at least one CR and three groups
2022-03-16 03:36:07,994 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:08,146 - stpipe.JumpStep - INFO - Working on integration 178:
2022-03-16 03:36:08,467 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:08,468 - stpipe.JumpStep - INFO - From highest outlier Two-point found 987 pixels with at least one CR and three groups
2022-03-16 03:36:08,469 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:08,593 - stpipe.JumpStep - INFO - Working on integration 179:
2022-03-16 03:36:08,915 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:08,917 - stpipe.JumpStep - INFO - From highest outlier Two-point found 924 pixels with at least one CR and three groups
2022-03-16 03:36:08,918 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:09,033 - stpipe.JumpStep - INFO - Working on integration 180:
2022-03-16 03:36:09,340 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:09,341 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1284 pixels with at least one CR and three groups
2022-03-16 03:36:09,343 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:09,490 - stpipe.JumpStep - INFO - Working on integration 181:
2022-03-16 03:36:09,803 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:09,804 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1271 pixels with at least one CR and three groups
2022-03-16 03:36:09,806 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:09,947 - stpipe.JumpStep - INFO - Working on integration 182:
2022-03-16 03:36:10,263 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:10,264 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1246 pixels with at least one CR and three groups
2022-03-16 03:36:10,265 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:10,410 - stpipe.JumpStep - INFO - Working on integration 183:
2022-03-16 03:36:10,721 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:10,722 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1222 pixels with at least one CR and three groups
2022-03-16 03:36:10,723 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:10,864 - stpipe.JumpStep - INFO - Working on integration 184:
2022-03-16 03:36:11,176 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:11,179 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1256 pixels with at least one CR and three groups
2022-03-16 03:36:11,180 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:11,322 - stpipe.JumpStep - INFO - Working on integration 185:
2022-03-16 03:36:11,634 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:11,636 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1353 pixels with at least one CR and three groups
2022-03-16 03:36:11,637 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:11,811 - stpipe.JumpStep - INFO - Working on integration 186:
2022-03-16 03:36:12,135 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:12,136 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1280 pixels with at least one CR and three groups
2022-03-16 03:36:12,138 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:12,292 - stpipe.JumpStep - INFO - Working on integration 187:
2022-03-16 03:36:12,629 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:12,631 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1244 pixels with at least one CR and three groups
2022-03-16 03:36:12,632 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:12,789 - stpipe.JumpStep - INFO - Working on integration 188:
2022-03-16 03:36:13,115 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:13,117 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1269 pixels with at least one CR and three groups
2022-03-16 03:36:13,117 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:13,265 - stpipe.JumpStep - INFO - Working on integration 189:
2022-03-16 03:36:13,579 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:13,580 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1309 pixels with at least one CR and three groups
2022-03-16 03:36:13,581 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:13,729 - stpipe.JumpStep - INFO - Working on integration 190:
2022-03-16 03:36:14,043 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:14,044 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1334 pixels with at least one CR and three groups
2022-03-16 03:36:14,045 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:14,200 - stpipe.JumpStep - INFO - Working on integration 191:
2022-03-16 03:36:14,518 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:14,519 - stpipe.JumpStep - INFO - From highest outlier Two-point found 976 pixels with at least one CR and three groups
2022-03-16 03:36:14,521 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:14,644 - stpipe.JumpStep - INFO - Working on integration 192:
2022-03-16 03:36:14,968 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:14,969 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1340 pixels with at least one CR and three groups
2022-03-16 03:36:14,970 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:15,126 - stpipe.JumpStep - INFO - Working on integration 193:
2022-03-16 03:36:15,439 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:15,442 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1260 pixels with at least one CR and three groups
2022-03-16 03:36:15,443 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 03:36:15,595 - stpipe.JumpStep - INFO - Working on integration 194:
2022-03-16 03:36:15,914 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:15,916 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1286 pixels with at least one CR and three groups
2022-03-16 03:36:15,916 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:16,067 - stpipe.JumpStep - INFO - Working on integration 195:
2022-03-16 03:36:16,385 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:16,387 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1306 pixels with at least one CR and three groups
2022-03-16 03:36:16,388 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:16,539 - stpipe.JumpStep - INFO - Working on integration 196:
2022-03-16 03:36:16,849 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:16,851 - stpipe.JumpStep - INFO - From highest outlier Two-point found 931 pixels with at least one CR and three groups
2022-03-16 03:36:16,852 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:16,969 - stpipe.JumpStep - INFO - Working on integration 197:
2022-03-16 03:36:17,286 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:17,287 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1254 pixels with at least one CR and three groups
2022-03-16 03:36:17,288 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:17,439 - stpipe.JumpStep - INFO - Working on integration 198:
2022-03-16 03:36:17,767 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:17,769 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1163 pixels with at least one CR and three groups
2022-03-16 03:36:17,770 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:17,910 - stpipe.JumpStep - INFO - Working on integration 199:
2022-03-16 03:36:18,226 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:18,227 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1250 pixels with at least one CR and three groups
2022-03-16 03:36:18,228 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:18,386 - stpipe.JumpStep - INFO - Working on integration 200:
2022-03-16 03:36:18,713 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:18,714 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1256 pixels with at least one CR and three groups
2022-03-16 03:36:18,716 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:18,865 - stpipe.JumpStep - INFO - Working on integration 201:
2022-03-16 03:36:19,178 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:19,180 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1172 pixels with at least one CR and three groups
2022-03-16 03:36:19,182 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:19,327 - stpipe.JumpStep - INFO - Working on integration 202:
2022-03-16 03:36:19,658 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:19,660 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1012 pixels with at least one CR and three groups
2022-03-16 03:36:19,660 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:19,785 - stpipe.JumpStep - INFO - Working on integration 203:
2022-03-16 03:36:20,105 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:20,107 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1212 pixels with at least one CR and three groups
2022-03-16 03:36:20,108 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:20,251 - stpipe.JumpStep - INFO - Working on integration 204:
2022-03-16 03:36:20,566 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:20,567 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1216 pixels with at least one CR and three groups
2022-03-16 03:36:20,568 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:20,708 - stpipe.JumpStep - INFO - Working on integration 205:
2022-03-16 03:36:21,027 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:21,028 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1011 pixels with at least one CR and three groups
2022-03-16 03:36:21,029 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:21,162 - stpipe.JumpStep - INFO - Working on integration 206:
2022-03-16 03:36:21,487 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:21,489 - stpipe.JumpStep - INFO - From highest outlier Two-point found 974 pixels with at least one CR and three groups
2022-03-16 03:36:21,489 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:21,608 - stpipe.JumpStep - INFO - Working on integration 207:
2022-03-16 03:36:21,946 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:21,947 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1309 pixels with at least one CR and three groups
2022-03-16 03:36:21,948 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:22,103 - stpipe.JumpStep - INFO - Working on integration 208:
2022-03-16 03:36:22,426 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:22,427 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1280 pixels with at least one CR and three groups
2022-03-16 03:36:22,428 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:22,579 - stpipe.JumpStep - INFO - Working on integration 209:
2022-03-16 03:36:22,895 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:22,897 - stpipe.JumpStep - INFO - From highest outlier Two-point found 977 pixels with at least one CR and three groups
2022-03-16 03:36:22,898 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:23,019 - stpipe.JumpStep - INFO - Working on integration 210:
2022-03-16 03:36:23,345 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:23,346 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1295 pixels with at least one CR and three groups
2022-03-16 03:36:23,349 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:23,498 - stpipe.JumpStep - INFO - Working on integration 211:
2022-03-16 03:36:23,791 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:23,792 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1196 pixels with at least one CR and three groups
2022-03-16 03:36:23,793 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:23,922 - stpipe.JumpStep - INFO - Working on integration 212:
2022-03-16 03:36:24,257 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:24,258 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1226 pixels with at least one CR and three groups
2022-03-16 03:36:24,260 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:24,394 - stpipe.JumpStep - INFO - Working on integration 213:
2022-03-16 03:36:24,708 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:24,709 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1250 pixels with at least one CR and three groups
2022-03-16 03:36:24,711 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:24,848 - stpipe.JumpStep - INFO - Working on integration 214:
2022-03-16 03:36:25,167 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:25,169 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1238 pixels with at least one CR and three groups
2022-03-16 03:36:25,170 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:25,304 - stpipe.JumpStep - INFO - Working on integration 215:
2022-03-16 03:36:25,620 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:25,621 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 03:36:25,622 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:25,775 - stpipe.JumpStep - INFO - Working on integration 216:
2022-03-16 03:36:26,072 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:26,073 - stpipe.JumpStep - INFO - From highest outlier Two-point found 982 pixels with at least one CR and three groups
2022-03-16 03:36:26,074 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:26,190 - stpipe.JumpStep - INFO - Working on integration 217:
2022-03-16 03:36:26,470 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:26,472 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1303 pixels with at least one CR and three groups
2022-03-16 03:36:26,473 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:26,605 - stpipe.JumpStep - INFO - Working on integration 218:
2022-03-16 03:36:26,905 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:26,906 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1274 pixels with at least one CR and three groups
2022-03-16 03:36:26,908 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:27,044 - stpipe.JumpStep - INFO - Working on integration 219:
2022-03-16 03:36:27,372 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:27,374 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1313 pixels with at least one CR and three groups
2022-03-16 03:36:27,375 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:27,550 - stpipe.JumpStep - INFO - Working on integration 220:
2022-03-16 03:36:27,865 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:27,866 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1287 pixels with at least one CR and three groups
2022-03-16 03:36:27,867 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:28,032 - stpipe.JumpStep - INFO - Working on integration 221:
2022-03-16 03:36:28,330 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:28,332 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1305 pixels with at least one CR and three groups
2022-03-16 03:36:28,333 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:28,468 - stpipe.JumpStep - INFO - Working on integration 222:
2022-03-16 03:36:28,781 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:28,783 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1254 pixels with at least one CR and three groups
2022-03-16 03:36:28,784 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:28,914 - stpipe.JumpStep - INFO - Working on integration 223:
2022-03-16 03:36:29,201 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:29,203 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1214 pixels with at least one CR and three groups
2022-03-16 03:36:29,204 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:29,338 - stpipe.JumpStep - INFO - Working on integration 224:
2022-03-16 03:36:29,651 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:29,653 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1190 pixels with at least one CR and three groups
2022-03-16 03:36:29,654 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:29,806 - stpipe.JumpStep - INFO - Working on integration 225:
2022-03-16 03:36:30,157 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:30,159 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1270 pixels with at least one CR and three groups
2022-03-16 03:36:30,160 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:30,318 - stpipe.JumpStep - INFO - Working on integration 226:
2022-03-16 03:36:30,637 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:30,638 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1257 pixels with at least one CR and three groups
2022-03-16 03:36:30,640 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:30,815 - stpipe.JumpStep - INFO - Working on integration 227:
2022-03-16 03:36:31,149 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:31,151 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1219 pixels with at least one CR and three groups
2022-03-16 03:36:31,152 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:31,301 - stpipe.JumpStep - INFO - Working on integration 228:
2022-03-16 03:36:31,610 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:31,611 - stpipe.JumpStep - INFO - From highest outlier Two-point found 974 pixels with at least one CR and three groups
2022-03-16 03:36:31,612 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:31,714 - stpipe.JumpStep - INFO - Working on integration 229:
2022-03-16 03:36:32,015 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:32,016 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1261 pixels with at least one CR and three groups
2022-03-16 03:36:32,017 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:32,162 - stpipe.JumpStep - INFO - Working on integration 230:
2022-03-16 03:36:32,477 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:32,479 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1262 pixels with at least one CR and three groups
2022-03-16 03:36:32,480 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 03:36:32,623 - stpipe.JumpStep - INFO - Working on integration 231:
2022-03-16 03:36:32,937 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:32,939 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1236 pixels with at least one CR and three groups
2022-03-16 03:36:32,940 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 03:36:33,098 - stpipe.JumpStep - INFO - Working on integration 232:
2022-03-16 03:36:33,421 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:33,423 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1297 pixels with at least one CR and three groups
2022-03-16 03:36:33,424 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:33,580 - stpipe.JumpStep - INFO - Working on integration 233:
2022-03-16 03:36:33,909 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:33,910 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1217 pixels with at least one CR and three groups
2022-03-16 03:36:33,911 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:34,053 - stpipe.JumpStep - INFO - Working on integration 234:
2022-03-16 03:36:34,350 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:34,351 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1194 pixels with at least one CR and three groups
2022-03-16 03:36:34,352 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:34,472 - stpipe.JumpStep - INFO - Working on integration 235:
2022-03-16 03:36:34,787 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:34,788 - stpipe.JumpStep - INFO - From highest outlier Two-point found 984 pixels with at least one CR and three groups
2022-03-16 03:36:34,789 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:34,895 - stpipe.JumpStep - INFO - Working on integration 236:
2022-03-16 03:36:35,204 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:35,207 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1189 pixels with at least one CR and three groups
2022-03-16 03:36:35,209 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:35,343 - stpipe.JumpStep - INFO - Working on integration 237:
2022-03-16 03:36:35,648 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:35,649 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1305 pixels with at least one CR and three groups
2022-03-16 03:36:35,650 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:35,797 - stpipe.JumpStep - INFO - Working on integration 238:
2022-03-16 03:36:36,125 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:36,126 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1269 pixels with at least one CR and three groups
2022-03-16 03:36:36,129 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:36,267 - stpipe.JumpStep - INFO - Working on integration 239:
2022-03-16 03:36:36,570 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:36,572 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1292 pixels with at least one CR and three groups
2022-03-16 03:36:36,573 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:36,730 - stpipe.JumpStep - INFO - Working on integration 240:
2022-03-16 03:36:37,014 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:37,016 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1254 pixels with at least one CR and three groups
2022-03-16 03:36:37,017 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:37,149 - stpipe.JumpStep - INFO - Working on integration 241:
2022-03-16 03:36:37,467 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:37,469 - stpipe.JumpStep - INFO - From highest outlier Two-point found 998 pixels with at least one CR and three groups
2022-03-16 03:36:37,470 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:37,590 - stpipe.JumpStep - INFO - Working on integration 242:
2022-03-16 03:36:37,939 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:37,942 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1252 pixels with at least one CR and three groups
2022-03-16 03:36:37,943 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:38,096 - stpipe.JumpStep - INFO - Working on integration 243:
2022-03-16 03:36:38,432 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:38,433 - stpipe.JumpStep - INFO - From highest outlier Two-point found 931 pixels with at least one CR and three groups
2022-03-16 03:36:38,434 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:38,540 - stpipe.JumpStep - INFO - Working on integration 244:
2022-03-16 03:36:38,855 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:38,857 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1292 pixels with at least one CR and three groups
2022-03-16 03:36:38,858 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:39,018 - stpipe.JumpStep - INFO - Working on integration 245:
2022-03-16 03:36:39,359 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:39,361 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1180 pixels with at least one CR and three groups
2022-03-16 03:36:39,362 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:39,496 - stpipe.JumpStep - INFO - Working on integration 246:
2022-03-16 03:36:39,794 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:39,796 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1350 pixels with at least one CR and three groups
2022-03-16 03:36:39,797 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:39,940 - stpipe.JumpStep - INFO - Working on integration 247:
2022-03-16 03:36:40,265 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:40,266 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1289 pixels with at least one CR and three groups
2022-03-16 03:36:40,268 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:40,420 - stpipe.JumpStep - INFO - Working on integration 248:
2022-03-16 03:36:40,736 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:40,737 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1203 pixels with at least one CR and three groups
2022-03-16 03:36:40,737 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:36:40,868 - stpipe.JumpStep - INFO - Working on integration 249:
2022-03-16 03:36:41,172 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:41,173 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1242 pixels with at least one CR and three groups
2022-03-16 03:36:41,174 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:41,304 - stpipe.JumpStep - INFO - Working on integration 250:
2022-03-16 03:36:41,612 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:41,613 - stpipe.JumpStep - INFO - From highest outlier Two-point found 931 pixels with at least one CR and three groups
2022-03-16 03:36:41,614 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 03:36:41,739 - stpipe.JumpStep - INFO - Working on integration 251:
2022-03-16 03:36:42,056 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:42,057 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1298 pixels with at least one CR and three groups
2022-03-16 03:36:42,059 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:42,187 - stpipe.JumpStep - INFO - Working on integration 252:
2022-03-16 03:36:42,495 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:42,497 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1242 pixels with at least one CR and three groups
2022-03-16 03:36:42,498 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:42,639 - stpipe.JumpStep - INFO - Working on integration 253:
2022-03-16 03:36:42,943 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:42,945 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1122 pixels with at least one CR and three groups
2022-03-16 03:36:42,947 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:43,081 - stpipe.JumpStep - INFO - Working on integration 254:
2022-03-16 03:36:43,420 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:43,421 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1264 pixels with at least one CR and three groups
2022-03-16 03:36:43,423 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:36:43,576 - stpipe.JumpStep - INFO - Working on integration 255:
2022-03-16 03:36:43,875 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:43,877 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1272 pixels with at least one CR and three groups
2022-03-16 03:36:43,878 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:36:44,035 - stpipe.JumpStep - INFO - Working on integration 256:
2022-03-16 03:36:44,360 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:44,361 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1315 pixels with at least one CR and three groups
2022-03-16 03:36:44,363 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 03:36:44,510 - stpipe.JumpStep - INFO - Working on integration 257:
2022-03-16 03:36:44,796 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:44,797 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1312 pixels with at least one CR and three groups
2022-03-16 03:36:44,798 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:44,945 - stpipe.JumpStep - INFO - Working on integration 258:
2022-03-16 03:36:45,292 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:45,293 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1324 pixels with at least one CR and three groups
2022-03-16 03:36:45,294 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:45,447 - stpipe.JumpStep - INFO - Working on integration 259:
2022-03-16 03:36:45,774 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:45,775 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1116 pixels with at least one CR and three groups
2022-03-16 03:36:45,776 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:45,918 - stpipe.JumpStep - INFO - Working on integration 260:
2022-03-16 03:36:46,227 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:46,228 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1017 pixels with at least one CR and three groups
2022-03-16 03:36:46,230 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:46,341 - stpipe.JumpStep - INFO - Working on integration 261:
2022-03-16 03:36:46,643 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:46,645 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1253 pixels with at least one CR and three groups
2022-03-16 03:36:46,646 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:36:46,777 - stpipe.JumpStep - INFO - Working on integration 262:
2022-03-16 03:36:47,079 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:47,080 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1225 pixels with at least one CR and three groups
2022-03-16 03:36:47,082 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:47,209 - stpipe.JumpStep - INFO - Working on integration 263:
2022-03-16 03:36:47,504 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:47,505 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1223 pixels with at least one CR and three groups
2022-03-16 03:36:47,507 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:47,649 - stpipe.JumpStep - INFO - Working on integration 264:
2022-03-16 03:36:47,960 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:47,963 - stpipe.JumpStep - INFO - From highest outlier Two-point found 972 pixels with at least one CR and three groups
2022-03-16 03:36:47,966 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:48,107 - stpipe.JumpStep - INFO - Working on integration 265:
2022-03-16 03:36:48,449 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:48,450 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1252 pixels with at least one CR and three groups
2022-03-16 03:36:48,452 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:48,595 - stpipe.JumpStep - INFO - Working on integration 266:
2022-03-16 03:36:48,909 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:48,910 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1044 pixels with at least one CR and three groups
2022-03-16 03:36:48,911 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 03:36:49,041 - stpipe.JumpStep - INFO - Working on integration 267:
2022-03-16 03:36:49,344 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:49,346 - stpipe.JumpStep - INFO - From highest outlier Two-point found 986 pixels with at least one CR and three groups
2022-03-16 03:36:49,347 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:49,473 - stpipe.JumpStep - INFO - Working on integration 268:
2022-03-16 03:36:49,766 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:49,768 - stpipe.JumpStep - INFO - From highest outlier Two-point found 961 pixels with at least one CR and three groups
2022-03-16 03:36:49,769 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:49,883 - stpipe.JumpStep - INFO - Working on integration 269:
2022-03-16 03:36:50,193 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:50,194 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1256 pixels with at least one CR and three groups
2022-03-16 03:36:50,195 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:50,332 - stpipe.JumpStep - INFO - Working on integration 270:
2022-03-16 03:36:50,672 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:50,674 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1349 pixels with at least one CR and three groups
2022-03-16 03:36:50,675 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:50,833 - stpipe.JumpStep - INFO - Working on integration 271:
2022-03-16 03:36:51,129 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:51,130 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1260 pixels with at least one CR and three groups
2022-03-16 03:36:51,132 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:51,280 - stpipe.JumpStep - INFO - Working on integration 272:
2022-03-16 03:36:51,589 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:51,590 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1304 pixels with at least one CR and three groups
2022-03-16 03:36:51,591 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:51,749 - stpipe.JumpStep - INFO - Working on integration 273:
2022-03-16 03:36:52,048 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:52,051 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1205 pixels with at least one CR and three groups
2022-03-16 03:36:52,052 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:52,182 - stpipe.JumpStep - INFO - Working on integration 274:
2022-03-16 03:36:52,471 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:52,473 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1311 pixels with at least one CR and three groups
2022-03-16 03:36:52,474 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:52,608 - stpipe.JumpStep - INFO - Working on integration 275:
2022-03-16 03:36:52,889 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:52,891 - stpipe.JumpStep - INFO - From highest outlier Two-point found 961 pixels with at least one CR and three groups
2022-03-16 03:36:52,892 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:52,993 - stpipe.JumpStep - INFO - Working on integration 276:
2022-03-16 03:36:53,272 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:53,273 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1320 pixels with at least one CR and three groups
2022-03-16 03:36:53,275 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:53,404 - stpipe.JumpStep - INFO - Working on integration 277:
2022-03-16 03:36:53,689 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:53,691 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1240 pixels with at least one CR and three groups
2022-03-16 03:36:53,692 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:53,817 - stpipe.JumpStep - INFO - Working on integration 278:
2022-03-16 03:36:54,103 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:54,105 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1190 pixels with at least one CR and three groups
2022-03-16 03:36:54,106 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:54,239 - stpipe.JumpStep - INFO - Working on integration 279:
2022-03-16 03:36:54,527 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:54,529 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1259 pixels with at least one CR and three groups
2022-03-16 03:36:54,530 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:54,654 - stpipe.JumpStep - INFO - Working on integration 280:
2022-03-16 03:36:54,933 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:54,935 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1180 pixels with at least one CR and three groups
2022-03-16 03:36:54,936 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:36:55,060 - stpipe.JumpStep - INFO - Working on integration 281:
2022-03-16 03:36:55,345 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:55,347 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1185 pixels with at least one CR and three groups
2022-03-16 03:36:55,348 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:55,466 - stpipe.JumpStep - INFO - Working on integration 282:
2022-03-16 03:36:55,748 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:55,749 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1183 pixels with at least one CR and three groups
2022-03-16 03:36:55,751 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:36:55,886 - stpipe.JumpStep - INFO - Working on integration 283:
2022-03-16 03:36:56,168 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:56,170 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1351 pixels with at least one CR and three groups
2022-03-16 03:36:56,171 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:36:56,304 - stpipe.JumpStep - INFO - Working on integration 284:
2022-03-16 03:36:56,590 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:56,592 - stpipe.JumpStep - INFO - From highest outlier Two-point found 895 pixels with at least one CR and three groups
2022-03-16 03:36:56,593 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:56,688 - stpipe.JumpStep - INFO - Working on integration 285:
2022-03-16 03:36:56,971 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:56,972 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1282 pixels with at least one CR and three groups
2022-03-16 03:36:56,974 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:36:57,103 - stpipe.JumpStep - INFO - Working on integration 286:
2022-03-16 03:36:57,397 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:57,398 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1205 pixels with at least one CR and three groups
2022-03-16 03:36:57,399 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:57,519 - stpipe.JumpStep - INFO - Working on integration 287:
2022-03-16 03:36:57,805 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:57,808 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1263 pixels with at least one CR and three groups
2022-03-16 03:36:57,809 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:57,948 - stpipe.JumpStep - INFO - Working on integration 288:
2022-03-16 03:36:58,229 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:58,230 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1290 pixels with at least one CR and three groups
2022-03-16 03:36:58,231 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:58,358 - stpipe.JumpStep - INFO - Working on integration 289:
2022-03-16 03:36:58,642 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:58,644 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1264 pixels with at least one CR and three groups
2022-03-16 03:36:58,645 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:36:58,770 - stpipe.JumpStep - INFO - Working on integration 290:
2022-03-16 03:36:59,071 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:59,073 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1342 pixels with at least one CR and three groups
2022-03-16 03:36:59,074 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:59,206 - stpipe.JumpStep - INFO - Working on integration 291:
2022-03-16 03:36:59,490 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:59,492 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1174 pixels with at least one CR and three groups
2022-03-16 03:36:59,493 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:36:59,611 - stpipe.JumpStep - INFO - Working on integration 292:
2022-03-16 03:36:59,894 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:36:59,895 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1254 pixels with at least one CR and three groups
2022-03-16 03:36:59,896 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:37:00,028 - stpipe.JumpStep - INFO - Working on integration 293:
2022-03-16 03:37:00,309 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:00,311 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1299 pixels with at least one CR and three groups
2022-03-16 03:37:00,312 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:37:00,454 - stpipe.JumpStep - INFO - Working on integration 294:
2022-03-16 03:37:00,734 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:00,735 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1252 pixels with at least one CR and three groups
2022-03-16 03:37:00,737 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:37:00,864 - stpipe.JumpStep - INFO - Working on integration 295:
2022-03-16 03:37:01,149 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:01,150 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1207 pixels with at least one CR and three groups
2022-03-16 03:37:01,152 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:37:01,272 - stpipe.JumpStep - INFO - Working on integration 296:
2022-03-16 03:37:01,549 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:01,551 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1178 pixels with at least one CR and three groups
2022-03-16 03:37:01,552 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 03:37:01,678 - stpipe.JumpStep - INFO - Working on integration 297:
2022-03-16 03:37:01,960 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:01,962 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1160 pixels with at least one CR and three groups
2022-03-16 03:37:01,963 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:37:02,084 - stpipe.JumpStep - INFO - Working on integration 298:
2022-03-16 03:37:02,370 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:02,372 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1229 pixels with at least one CR and three groups
2022-03-16 03:37:02,373 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:37:02,503 - stpipe.JumpStep - INFO - Working on integration 299:
2022-03-16 03:37:02,779 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:02,780 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1232 pixels with at least one CR and three groups
2022-03-16 03:37:02,782 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 03:37:02,903 - stpipe.JumpStep - INFO - Working on integration 300:
2022-03-16 03:37:03,181 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:03,183 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1231 pixels with at least one CR and three groups
2022-03-16 03:37:03,184 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 03:37:03,320 - stpipe.JumpStep - INFO - Working on integration 301:
2022-03-16 03:37:03,599 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:03,601 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1194 pixels with at least one CR and three groups
2022-03-16 03:37:03,602 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:37:03,724 - stpipe.JumpStep - INFO - Working on integration 302:
2022-03-16 03:37:04,008 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:04,010 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1210 pixels with at least one CR and three groups
2022-03-16 03:37:04,011 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:37:04,130 - stpipe.JumpStep - INFO - Working on integration 303:
2022-03-16 03:37:04,423 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:04,424 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1194 pixels with at least one CR and three groups
2022-03-16 03:37:04,425 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:37:04,544 - stpipe.JumpStep - INFO - Working on integration 304:
2022-03-16 03:37:04,827 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:04,829 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1250 pixels with at least one CR and three groups
2022-03-16 03:37:04,831 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 03:37:04,954 - stpipe.JumpStep - INFO - Working on integration 305:
2022-03-16 03:37:05,231 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:05,233 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1266 pixels with at least one CR and three groups
2022-03-16 03:37:05,234 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:37:05,359 - stpipe.JumpStep - INFO - Working on integration 306:
2022-03-16 03:37:05,641 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:05,643 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1237 pixels with at least one CR and three groups
2022-03-16 03:37:05,644 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:37:05,767 - stpipe.JumpStep - INFO - Working on integration 307:
2022-03-16 03:37:06,045 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:06,046 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1286 pixels with at least one CR and three groups
2022-03-16 03:37:06,047 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:37:06,174 - stpipe.JumpStep - INFO - Working on integration 308:
2022-03-16 03:37:06,454 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:06,456 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1286 pixels with at least one CR and three groups
2022-03-16 03:37:06,457 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 03:37:06,583 - stpipe.JumpStep - INFO - Working on integration 309:
2022-03-16 03:37:06,862 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:06,863 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1266 pixels with at least one CR and three groups
2022-03-16 03:37:06,865 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:37:06,990 - stpipe.JumpStep - INFO - Working on integration 310:
2022-03-16 03:37:07,278 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:07,280 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1277 pixels with at least one CR and three groups
2022-03-16 03:37:07,281 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:37:07,408 - stpipe.JumpStep - INFO - Working on integration 311:
2022-03-16 03:37:07,687 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:07,689 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1032 pixels with at least one CR and three groups
2022-03-16 03:37:07,690 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 03:37:07,812 - stpipe.JumpStep - INFO - Working on integration 312:
2022-03-16 03:37:08,101 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:08,103 - stpipe.JumpStep - INFO - From highest outlier Two-point found 980 pixels with at least one CR and three groups
2022-03-16 03:37:08,104 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 03:37:08,206 - stpipe.JumpStep - INFO - Working on integration 313:
2022-03-16 03:37:08,487 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:08,489 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1271 pixels with at least one CR and three groups
2022-03-16 03:37:08,490 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:37:08,614 - stpipe.JumpStep - INFO - Working on integration 314:
2022-03-16 03:37:08,909 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:08,911 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1310 pixels with at least one CR and three groups
2022-03-16 03:37:08,912 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:37:09,072 - stpipe.JumpStep - INFO - Working on integration 315:
2022-03-16 03:37:09,363 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:09,364 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1250 pixels with at least one CR and three groups
2022-03-16 03:37:09,365 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:37:09,489 - stpipe.JumpStep - INFO - Working on integration 316:
2022-03-16 03:37:09,769 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:09,770 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1276 pixels with at least one CR and three groups
2022-03-16 03:37:09,771 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 03:37:09,897 - stpipe.JumpStep - INFO - Working on integration 317:
2022-03-16 03:37:10,181 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:10,183 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1022 pixels with at least one CR and three groups
2022-03-16 03:37:10,184 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:37:10,289 - stpipe.JumpStep - INFO - Working on integration 318:
2022-03-16 03:37:10,566 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:10,568 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1303 pixels with at least one CR and three groups
2022-03-16 03:37:10,569 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 03:37:10,696 - stpipe.JumpStep - INFO - Working on integration 319:
2022-03-16 03:37:10,984 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:10,986 - stpipe.JumpStep - INFO - From highest outlier Two-point found 902 pixels with at least one CR and three groups
2022-03-16 03:37:10,987 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:37:11,097 - stpipe.JumpStep - INFO - Working on integration 320:
2022-03-16 03:37:11,377 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 03:37:11,379 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 03:37:11,380 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 03:37:11,505 - stpipe.JumpStep - INFO - Total elapsed time = 155.286 sec
2022-03-16 03:37:11,509 - stpipe.JumpStep - INFO - The execution time in seconds: 161.550012
2022-03-16 03:37:11,513 - stpipe.JumpStep - INFO - Step JumpStep done
2022-03-16 03:37:11,518 - stpipe.RampFitStep - INFO - RampFitStep instance created.
2022-03-16 03:37:11,711 - stpipe.RampFitStep - INFO - Step RampFitStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg001_nrca3_uncal.fits>,).
2022-03-16 03:37:11,715 - stpipe.RampFitStep - INFO - Step RampFitStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
2022-03-16 03:37:11,784 - stpipe.RampFitStep - INFO - Using READNOISE reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits
2022-03-16 03:37:11,818 - stpipe.RampFitStep - INFO - Using GAIN reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits
2022-03-16 03:37:11,863 - stpipe.RampFitStep - INFO - Using algorithm = ols
2022-03-16 03:37:11,865 - stpipe.RampFitStep - INFO - Using weighting = optimal
2022-03-16 03:37:11,866 - stpipe.RampFitStep - INFO - Extracting gain subarray to match science data
2022-03-16 03:37:11,869 - stpipe.RampFitStep - INFO - Extracting readnoise subarray to match science data
2022-03-16 03:39:55,154 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:39:55,172 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:41:19,924 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:41:19,943 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:41:55,810 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:41:55,828 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:42:02,107 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:42:02,125 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:42:23,179 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:42:23,197 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:42:27,393 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:42:27,410 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:42:52,720 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:42:52,738 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:43:45,429 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:43:45,447 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:44:10,771 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:44:10,789 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:44:59,348 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:44:59,366 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:45:22,562 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:45:22,580 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:45:50,003 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:45:50,021 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:46:25,951 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:46:25,970 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:46:43,025 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:46:43,043 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:47:42,224 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:47:42,242 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:48:11,728 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:48:11,746 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 03:58:48,134 - stpipe.RampFitStep - INFO - Number of groups per integration: 4
2022-03-16 03:58:48,137 - stpipe.RampFitStep - INFO - Number of integrations: 320
2022-03-16 03:58:49,225 - stpipe.RampFitStep - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg001_nrca3_0_rampfitstep.fits
2022-03-16 03:58:53,642 - stpipe.RampFitStep - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg001_nrca3_1_rampfitstep.fits
2022-03-16 03:58:53,644 - stpipe.RampFitStep - INFO - Step RampFitStep done
2022-03-16 03:58:53,649 - stpipe.DQInitStep - INFO - DQInitStep instance created.
2022-03-16 03:58:53,961 - stpipe.DQInitStep - INFO - Step DQInitStep running with args ('/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/Raw_Data/jw01185016001_01101_00001-seg002_nrca3_uncal.fits',).
2022-03-16 03:58:53,964 - stpipe.DQInitStep - INFO - Step DQInitStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 03:58:58,624 - stpipe.DQInitStep - INFO - Using MASK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0058.fits
2022-03-16 03:59:02,788 - stpipe.DQInitStep - INFO - Extracting mask subarray to match science data
2022-03-16 03:59:02,802 - stpipe.DQInitStep - INFO - Step DQInitStep done
2022-03-16 03:59:02,806 - stpipe.SaturationStep - INFO - SaturationStep instance created.
2022-03-16 03:59:03,003 - stpipe.SaturationStep - INFO - Step SaturationStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg002_nrca3_uncal.fits>,).
2022-03-16 03:59:03,006 - stpipe.SaturationStep - INFO - Step SaturationStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 03:59:03,051 - stpipe.SaturationStep - INFO - Using SATURATION reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0067.fits
2022-03-16 03:59:03,180 - stpipe.SaturationStep - WARNING - Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:59:03,182 - stpipe.SaturationStep - WARNING - Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:59:03,184 - stpipe.SaturationStep - WARNING - Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:59:03,185 - stpipe.SaturationStep - WARNING - Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:59:03,186 - stpipe.SaturationStep - WARNING - Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:59:06,229 - stpipe.SaturationStep - INFO - Extracting reference file subarray to match science data
2022-03-16 03:59:13,045 - stpipe.SaturationStep - INFO - Detected 10507 saturated pixels
2022-03-16 03:59:13,571 - stpipe.SaturationStep - INFO - Detected 0 A/D floor pixels
2022-03-16 03:59:13,576 - stpipe.SaturationStep - INFO - Step SaturationStep done
2022-03-16 03:59:13,578 - stpipe.SuperBiasStep - INFO - SuperBiasStep instance created.
2022-03-16 03:59:13,732 - stpipe.SuperBiasStep - INFO - Step SuperBiasStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg002_nrca3_uncal.fits>,).
2022-03-16 03:59:13,735 - stpipe.SuperBiasStep - INFO - Step SuperBiasStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 03:59:13,780 - stpipe.SuperBiasStep - INFO - Using SUPERBIAS reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0027.fits
2022-03-16 03:59:14,022 - stpipe.SuperBiasStep - WARNING - Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 03:59:18,381 - stpipe.SuperBiasStep - INFO - Step SuperBiasStep done
2022-03-16 03:59:18,384 - stpipe.RefPixStep - INFO - RefPixStep instance created.
100%|█████████████████████████████████████████| 320/320 [01:45<00:00,  3.04it/s]
2022-03-16 04:01:06,668 - stpipe.LinearityStep - INFO - LinearityStep instance created.
2022-03-16 04:01:06,892 - stpipe.LinearityStep - INFO - Step LinearityStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg002_nrca3_uncal.fits>,).
2022-03-16 04:01:06,895 - stpipe.LinearityStep - INFO - Step LinearityStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 04:01:06,942 - stpipe.LinearityStep - INFO - Using Linearity reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0053.fits
2022-03-16 04:01:07,152 - stpipe.LinearityStep - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:01:07,154 - stpipe.LinearityStep - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:01:07,156 - stpipe.LinearityStep - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:01:07,157 - stpipe.LinearityStep - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:01:07,160 - stpipe.LinearityStep - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:01:07,162 - stpipe.LinearityStep - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:01:07,164 - stpipe.LinearityStep - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:01:10,204 - stpipe.LinearityStep - INFO - Extracting linearity subarray to match science data
2022-03-16 04:01:26,083 - stpipe.LinearityStep - INFO - Step LinearityStep done
2022-03-16 04:01:26,090 - stpipe.PersistenceStep - INFO - PersistenceStep instance created.
2022-03-16 04:01:26,283 - stpipe.PersistenceStep - INFO - Step PersistenceStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg002_nrca3_uncal.fits>,).
2022-03-16 04:01:26,286 - stpipe.PersistenceStep - INFO - Step PersistenceStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}
2022-03-16 04:01:26,288 - stpipe.PersistenceStep - INFO - Step skipped.
2022-03-16 04:01:26,291 - stpipe.PersistenceStep - INFO - Step PersistenceStep done
2022-03-16 04:01:26,293 - stpipe.DarkCurrentStep - INFO - DarkCurrentStep instance created.
2022-03-16 04:01:26,414 - stpipe.DarkCurrentStep - INFO - Step DarkCurrentStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg002_nrca3_uncal.fits>,).
2022-03-16 04:01:26,417 - stpipe.DarkCurrentStep - INFO - Step DarkCurrentStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}
2022-03-16 04:01:26,420 - stpipe.DarkCurrentStep - INFO - Step skipped.
2022-03-16 04:01:26,422 - stpipe.DarkCurrentStep - INFO - Step DarkCurrentStep done
2022-03-16 04:01:26,425 - stpipe.JumpStep - INFO - JumpStep instance created.
2022-03-16 04:01:26,546 - stpipe.JumpStep - INFO - Step JumpStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg002_nrca3_uncal.fits>,).
2022-03-16 04:01:26,550 - stpipe.JumpStep - INFO - Step JumpStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 15, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
2022-03-16 04:01:26,573 - stpipe.JumpStep - INFO - CR rejection threshold = 15 sigma
2022-03-16 04:01:26,599 - stpipe.JumpStep - INFO - Using GAIN reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits
2022-03-16 04:01:26,661 - stpipe.JumpStep - INFO - Using READNOISE reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits
2022-03-16 04:01:26,692 - stpipe.JumpStep - INFO - Using 1 core for jump detection 
2022-03-16 04:01:29,831 - stpipe.JumpStep - INFO - Extracting gain subarray to match science data
2022-03-16 04:01:29,833 - stpipe.JumpStep - INFO - Extracting readnoise subarray to match science data
2022-03-16 04:01:32,269 - stpipe.JumpStep - INFO - Executing two-point difference method
2022-03-16 04:01:43,359 - stpipe.JumpStep - INFO - Working on integration 1:
2022-03-16 04:01:43,645 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:43,647 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1316 pixels with at least one CR and three groups
2022-03-16 04:01:43,648 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:01:43,794 - stpipe.JumpStep - INFO - Working on integration 2:
2022-03-16 04:01:44,090 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:44,092 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 04:01:44,093 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:01:44,220 - stpipe.JumpStep - INFO - Working on integration 3:
2022-03-16 04:01:44,500 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:44,501 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1003 pixels with at least one CR and three groups
2022-03-16 04:01:44,502 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:01:44,618 - stpipe.JumpStep - INFO - Working on integration 4:
2022-03-16 04:01:44,895 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:44,897 - stpipe.JumpStep - INFO - From highest outlier Two-point found 972 pixels with at least one CR and three groups
2022-03-16 04:01:44,898 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:01:45,001 - stpipe.JumpStep - INFO - Working on integration 5:
2022-03-16 04:01:45,276 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:45,278 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1213 pixels with at least one CR and three groups
2022-03-16 04:01:45,279 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:01:45,405 - stpipe.JumpStep - INFO - Working on integration 6:
2022-03-16 04:01:45,678 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:45,680 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1320 pixels with at least one CR and three groups
2022-03-16 04:01:45,681 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:01:45,828 - stpipe.JumpStep - INFO - Working on integration 7:
2022-03-16 04:01:46,103 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:46,104 - stpipe.JumpStep - INFO - From highest outlier Two-point found 953 pixels with at least one CR and three groups
2022-03-16 04:01:46,106 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:01:46,209 - stpipe.JumpStep - INFO - Working on integration 8:
2022-03-16 04:01:46,485 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:46,486 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1264 pixels with at least one CR and three groups
2022-03-16 04:01:46,487 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:01:46,630 - stpipe.JumpStep - INFO - Working on integration 9:
2022-03-16 04:01:46,906 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:46,908 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1248 pixels with at least one CR and three groups
2022-03-16 04:01:46,909 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:01:47,036 - stpipe.JumpStep - INFO - Working on integration 10:
2022-03-16 04:01:47,310 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:47,312 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1203 pixels with at least one CR and three groups
2022-03-16 04:01:47,314 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:01:47,441 - stpipe.JumpStep - INFO - Working on integration 11:
2022-03-16 04:01:47,718 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:47,720 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1121 pixels with at least one CR and three groups
2022-03-16 04:01:47,721 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:01:47,838 - stpipe.JumpStep - INFO - Working on integration 12:
2022-03-16 04:01:48,111 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:48,113 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1244 pixels with at least one CR and three groups
2022-03-16 04:01:48,114 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:01:48,245 - stpipe.JumpStep - INFO - Working on integration 13:
2022-03-16 04:01:48,519 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:48,521 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1319 pixels with at least one CR and three groups
2022-03-16 04:01:48,522 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:01:48,657 - stpipe.JumpStep - INFO - Working on integration 14:
2022-03-16 04:01:48,940 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:48,941 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1291 pixels with at least one CR and three groups
2022-03-16 04:01:48,943 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:01:49,089 - stpipe.JumpStep - INFO - Working on integration 15:
2022-03-16 04:01:49,364 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:49,365 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1242 pixels with at least one CR and three groups
2022-03-16 04:01:49,368 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:01:49,499 - stpipe.JumpStep - INFO - Working on integration 16:
2022-03-16 04:01:49,785 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:49,786 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1018 pixels with at least one CR and three groups
2022-03-16 04:01:49,787 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:01:49,900 - stpipe.JumpStep - INFO - Working on integration 17:
2022-03-16 04:01:50,180 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:50,181 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1282 pixels with at least one CR and three groups
2022-03-16 04:01:50,183 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:01:50,321 - stpipe.JumpStep - INFO - Working on integration 18:
2022-03-16 04:01:50,591 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:50,593 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1269 pixels with at least one CR and three groups
2022-03-16 04:01:50,594 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:01:50,727 - stpipe.JumpStep - INFO - Working on integration 19:
2022-03-16 04:01:51,006 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:51,007 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1297 pixels with at least one CR and three groups
2022-03-16 04:01:51,008 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:01:51,136 - stpipe.JumpStep - INFO - Working on integration 20:
2022-03-16 04:01:51,408 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:51,409 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1162 pixels with at least one CR and three groups
2022-03-16 04:01:51,411 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:01:51,527 - stpipe.JumpStep - INFO - Working on integration 21:
2022-03-16 04:01:51,800 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:51,801 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1335 pixels with at least one CR and three groups
2022-03-16 04:01:51,802 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:01:51,933 - stpipe.JumpStep - INFO - Working on integration 22:
2022-03-16 04:01:52,207 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:52,209 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1321 pixels with at least one CR and three groups
2022-03-16 04:01:52,210 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:01:52,355 - stpipe.JumpStep - INFO - Working on integration 23:
2022-03-16 04:01:52,623 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:52,625 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1348 pixels with at least one CR and three groups
2022-03-16 04:01:52,626 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:01:52,775 - stpipe.JumpStep - INFO - Working on integration 24:
2022-03-16 04:01:53,041 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:53,043 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1193 pixels with at least one CR and three groups
2022-03-16 04:01:53,044 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:01:53,162 - stpipe.JumpStep - INFO - Working on integration 25:
2022-03-16 04:01:53,433 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:53,435 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1270 pixels with at least one CR and three groups
2022-03-16 04:01:53,436 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:01:53,561 - stpipe.JumpStep - INFO - Working on integration 26:
2022-03-16 04:01:53,832 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:53,834 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1053 pixels with at least one CR and three groups
2022-03-16 04:01:53,835 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:01:53,954 - stpipe.JumpStep - INFO - Working on integration 27:
2022-03-16 04:01:54,222 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:54,223 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1311 pixels with at least one CR and three groups
2022-03-16 04:01:54,225 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:01:54,358 - stpipe.JumpStep - INFO - Working on integration 28:
2022-03-16 04:01:54,629 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:54,630 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1195 pixels with at least one CR and three groups
2022-03-16 04:01:54,632 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:01:54,763 - stpipe.JumpStep - INFO - Working on integration 29:
2022-03-16 04:01:55,028 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:55,029 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1002 pixels with at least one CR and three groups
2022-03-16 04:01:55,030 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:01:55,141 - stpipe.JumpStep - INFO - Working on integration 30:
2022-03-16 04:01:55,410 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:55,412 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1275 pixels with at least one CR and three groups
2022-03-16 04:01:55,413 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:01:55,553 - stpipe.JumpStep - INFO - Working on integration 31:
2022-03-16 04:01:55,820 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:55,822 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1260 pixels with at least one CR and three groups
2022-03-16 04:01:55,823 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:01:55,960 - stpipe.JumpStep - INFO - Working on integration 32:
2022-03-16 04:01:56,227 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:56,229 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1177 pixels with at least one CR and three groups
2022-03-16 04:01:56,230 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:01:56,361 - stpipe.JumpStep - INFO - Working on integration 33:
2022-03-16 04:01:56,630 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:56,631 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1279 pixels with at least one CR and three groups
2022-03-16 04:01:56,633 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:01:56,772 - stpipe.JumpStep - INFO - Working on integration 34:
2022-03-16 04:01:57,042 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:57,044 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1248 pixels with at least one CR and three groups
2022-03-16 04:01:57,045 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:01:57,168 - stpipe.JumpStep - INFO - Working on integration 35:
2022-03-16 04:01:57,436 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:57,437 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1216 pixels with at least one CR and three groups
2022-03-16 04:01:57,440 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:01:57,560 - stpipe.JumpStep - INFO - Working on integration 36:
2022-03-16 04:01:57,829 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:57,830 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1303 pixels with at least one CR and three groups
2022-03-16 04:01:57,831 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:01:57,973 - stpipe.JumpStep - INFO - Working on integration 37:
2022-03-16 04:01:58,246 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:58,248 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1297 pixels with at least one CR and three groups
2022-03-16 04:01:58,249 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:01:58,376 - stpipe.JumpStep - INFO - Working on integration 38:
2022-03-16 04:01:58,646 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:58,647 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1152 pixels with at least one CR and three groups
2022-03-16 04:01:58,649 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:01:58,776 - stpipe.JumpStep - INFO - Working on integration 39:
2022-03-16 04:01:59,047 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:59,048 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1216 pixels with at least one CR and three groups
2022-03-16 04:01:59,049 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:01:59,170 - stpipe.JumpStep - INFO - Working on integration 40:
2022-03-16 04:01:59,437 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:59,439 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1243 pixels with at least one CR and three groups
2022-03-16 04:01:59,440 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:01:59,563 - stpipe.JumpStep - INFO - Working on integration 41:
2022-03-16 04:01:59,837 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:01:59,839 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1270 pixels with at least one CR and three groups
2022-03-16 04:01:59,840 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:01:59,965 - stpipe.JumpStep - INFO - Working on integration 42:
2022-03-16 04:02:00,233 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:00,235 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1309 pixels with at least one CR and three groups
2022-03-16 04:02:00,236 - stpipe.JumpStep - INFO - From highest outlier Two-point found 67 pixels with at least one CR and two groups
2022-03-16 04:02:00,379 - stpipe.JumpStep - INFO - Working on integration 43:
2022-03-16 04:02:00,648 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:00,650 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1278 pixels with at least one CR and three groups
2022-03-16 04:02:00,651 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:02:00,791 - stpipe.JumpStep - INFO - Working on integration 44:
2022-03-16 04:02:01,059 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:01,060 - stpipe.JumpStep - INFO - From highest outlier Two-point found 967 pixels with at least one CR and three groups
2022-03-16 04:02:01,061 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:02:01,173 - stpipe.JumpStep - INFO - Working on integration 45:
2022-03-16 04:02:01,445 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:01,447 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1250 pixels with at least one CR and three groups
2022-03-16 04:02:01,448 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:01,585 - stpipe.JumpStep - INFO - Working on integration 46:
2022-03-16 04:02:01,853 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:01,855 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1271 pixels with at least one CR and three groups
2022-03-16 04:02:01,856 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:01,996 - stpipe.JumpStep - INFO - Working on integration 47:
2022-03-16 04:02:02,267 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:02,268 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1231 pixels with at least one CR and three groups
2022-03-16 04:02:02,269 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:02,391 - stpipe.JumpStep - INFO - Working on integration 48:
2022-03-16 04:02:02,658 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:02,659 - stpipe.JumpStep - INFO - From highest outlier Two-point found 984 pixels with at least one CR and three groups
2022-03-16 04:02:02,660 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:02,763 - stpipe.JumpStep - INFO - Working on integration 49:
2022-03-16 04:02:03,033 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:03,034 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1242 pixels with at least one CR and three groups
2022-03-16 04:02:03,036 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:03,171 - stpipe.JumpStep - INFO - Working on integration 50:
2022-03-16 04:02:03,442 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:03,444 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1147 pixels with at least one CR and three groups
2022-03-16 04:02:03,445 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:03,571 - stpipe.JumpStep - INFO - Working on integration 51:
2022-03-16 04:02:03,845 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:03,847 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1211 pixels with at least one CR and three groups
2022-03-16 04:02:03,848 - stpipe.JumpStep - INFO - From highest outlier Two-point found 67 pixels with at least one CR and two groups
2022-03-16 04:02:03,968 - stpipe.JumpStep - INFO - Working on integration 52:
2022-03-16 04:02:04,237 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:04,238 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1285 pixels with at least one CR and three groups
2022-03-16 04:02:04,240 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:04,382 - stpipe.JumpStep - INFO - Working on integration 53:
2022-03-16 04:02:04,649 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:04,651 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1222 pixels with at least one CR and three groups
2022-03-16 04:02:04,652 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:04,787 - stpipe.JumpStep - INFO - Working on integration 54:
2022-03-16 04:02:05,056 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:05,059 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1213 pixels with at least one CR and three groups
2022-03-16 04:02:05,060 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:05,180 - stpipe.JumpStep - INFO - Working on integration 55:
2022-03-16 04:02:05,448 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:05,449 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1383 pixels with at least one CR and three groups
2022-03-16 04:02:05,450 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:05,584 - stpipe.JumpStep - INFO - Working on integration 56:
2022-03-16 04:02:05,853 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:05,855 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1287 pixels with at least one CR and three groups
2022-03-16 04:02:05,857 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:06,001 - stpipe.JumpStep - INFO - Working on integration 57:
2022-03-16 04:02:06,284 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:06,286 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1009 pixels with at least one CR and three groups
2022-03-16 04:02:06,287 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:06,404 - stpipe.JumpStep - INFO - Working on integration 58:
2022-03-16 04:02:06,676 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:06,678 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1275 pixels with at least one CR and three groups
2022-03-16 04:02:06,679 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:06,820 - stpipe.JumpStep - INFO - Working on integration 59:
2022-03-16 04:02:07,090 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:07,092 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1203 pixels with at least one CR and three groups
2022-03-16 04:02:07,093 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:07,212 - stpipe.JumpStep - INFO - Working on integration 60:
2022-03-16 04:02:07,479 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:07,481 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1378 pixels with at least one CR and three groups
2022-03-16 04:02:07,483 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:07,617 - stpipe.JumpStep - INFO - Working on integration 61:
2022-03-16 04:02:07,883 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:07,885 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1142 pixels with at least one CR and three groups
2022-03-16 04:02:07,886 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:08,000 - stpipe.JumpStep - INFO - Working on integration 62:
2022-03-16 04:02:08,271 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:08,273 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1219 pixels with at least one CR and three groups
2022-03-16 04:02:08,274 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:08,395 - stpipe.JumpStep - INFO - Working on integration 63:
2022-03-16 04:02:08,662 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:08,664 - stpipe.JumpStep - INFO - From highest outlier Two-point found 907 pixels with at least one CR and three groups
2022-03-16 04:02:08,665 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:08,770 - stpipe.JumpStep - INFO - Working on integration 64:
2022-03-16 04:02:09,037 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:09,038 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1257 pixels with at least one CR and three groups
2022-03-16 04:02:09,040 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:02:09,163 - stpipe.JumpStep - INFO - Working on integration 65:
2022-03-16 04:02:09,436 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:09,437 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1279 pixels with at least one CR and three groups
2022-03-16 04:02:09,438 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:02:09,564 - stpipe.JumpStep - INFO - Working on integration 66:
2022-03-16 04:02:09,831 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:09,833 - stpipe.JumpStep - INFO - From highest outlier Two-point found 961 pixels with at least one CR and three groups
2022-03-16 04:02:09,834 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:09,944 - stpipe.JumpStep - INFO - Working on integration 67:
2022-03-16 04:02:10,211 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:10,213 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1212 pixels with at least one CR and three groups
2022-03-16 04:02:10,214 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:02:10,348 - stpipe.JumpStep - INFO - Working on integration 68:
2022-03-16 04:02:10,616 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:10,618 - stpipe.JumpStep - INFO - From highest outlier Two-point found 956 pixels with at least one CR and three groups
2022-03-16 04:02:10,620 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:10,719 - stpipe.JumpStep - INFO - Working on integration 69:
2022-03-16 04:02:10,989 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:10,991 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1254 pixels with at least one CR and three groups
2022-03-16 04:02:10,992 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:11,128 - stpipe.JumpStep - INFO - Working on integration 70:
2022-03-16 04:02:11,398 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:11,399 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1343 pixels with at least one CR and three groups
2022-03-16 04:02:11,401 - stpipe.JumpStep - INFO - From highest outlier Two-point found 68 pixels with at least one CR and two groups
2022-03-16 04:02:11,545 - stpipe.JumpStep - INFO - Working on integration 71:
2022-03-16 04:02:11,812 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:11,813 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1007 pixels with at least one CR and three groups
2022-03-16 04:02:11,815 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:11,924 - stpipe.JumpStep - INFO - Working on integration 72:
2022-03-16 04:02:12,191 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:12,192 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1232 pixels with at least one CR and three groups
2022-03-16 04:02:12,193 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:12,319 - stpipe.JumpStep - INFO - Working on integration 73:
2022-03-16 04:02:12,587 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:12,588 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1313 pixels with at least one CR and three groups
2022-03-16 04:02:12,590 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:12,732 - stpipe.JumpStep - INFO - Working on integration 74:
2022-03-16 04:02:13,000 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:13,001 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1240 pixels with at least one CR and three groups
2022-03-16 04:02:13,003 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:13,138 - stpipe.JumpStep - INFO - Working on integration 75:
2022-03-16 04:02:13,405 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:13,407 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1170 pixels with at least one CR and three groups
2022-03-16 04:02:13,408 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:13,524 - stpipe.JumpStep - INFO - Working on integration 76:
2022-03-16 04:02:13,794 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:13,796 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1000 pixels with at least one CR and three groups
2022-03-16 04:02:13,797 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:13,917 - stpipe.JumpStep - INFO - Working on integration 77:
2022-03-16 04:02:14,183 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:14,184 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1006 pixels with at least one CR and three groups
2022-03-16 04:02:14,185 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:14,300 - stpipe.JumpStep - INFO - Working on integration 78:
2022-03-16 04:02:14,574 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:14,575 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1260 pixels with at least one CR and three groups
2022-03-16 04:02:14,576 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:02:14,707 - stpipe.JumpStep - INFO - Working on integration 79:
2022-03-16 04:02:14,979 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:14,981 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1278 pixels with at least one CR and three groups
2022-03-16 04:02:14,982 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:15,108 - stpipe.JumpStep - INFO - Working on integration 80:
2022-03-16 04:02:15,376 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:15,378 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1348 pixels with at least one CR and three groups
2022-03-16 04:02:15,379 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:15,511 - stpipe.JumpStep - INFO - Working on integration 81:
2022-03-16 04:02:15,783 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:15,784 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1317 pixels with at least one CR and three groups
2022-03-16 04:02:15,786 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:15,933 - stpipe.JumpStep - INFO - Working on integration 82:
2022-03-16 04:02:16,201 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:16,203 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1283 pixels with at least one CR and three groups
2022-03-16 04:02:16,204 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:16,337 - stpipe.JumpStep - INFO - Working on integration 83:
2022-03-16 04:02:16,606 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:16,608 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1292 pixels with at least one CR and three groups
2022-03-16 04:02:16,609 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:16,748 - stpipe.JumpStep - INFO - Working on integration 84:
2022-03-16 04:02:17,016 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:17,017 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1182 pixels with at least one CR and three groups
2022-03-16 04:02:17,018 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:17,137 - stpipe.JumpStep - INFO - Working on integration 85:
2022-03-16 04:02:17,404 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:17,406 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1184 pixels with at least one CR and three groups
2022-03-16 04:02:17,407 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:17,536 - stpipe.JumpStep - INFO - Working on integration 86:
2022-03-16 04:02:17,806 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:17,808 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1238 pixels with at least one CR and three groups
2022-03-16 04:02:17,809 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:17,948 - stpipe.JumpStep - INFO - Working on integration 87:
2022-03-16 04:02:18,215 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:18,216 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1162 pixels with at least one CR and three groups
2022-03-16 04:02:18,218 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:18,340 - stpipe.JumpStep - INFO - Working on integration 88:
2022-03-16 04:02:18,610 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:18,611 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1274 pixels with at least one CR and three groups
2022-03-16 04:02:18,613 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:18,737 - stpipe.JumpStep - INFO - Working on integration 89:
2022-03-16 04:02:19,007 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:19,009 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1282 pixels with at least one CR and three groups
2022-03-16 04:02:19,010 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:19,145 - stpipe.JumpStep - INFO - Working on integration 90:
2022-03-16 04:02:19,414 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:19,415 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1012 pixels with at least one CR and three groups
2022-03-16 04:02:19,417 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:19,523 - stpipe.JumpStep - INFO - Working on integration 91:
2022-03-16 04:02:19,794 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:19,795 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1307 pixels with at least one CR and three groups
2022-03-16 04:02:19,796 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:19,938 - stpipe.JumpStep - INFO - Working on integration 92:
2022-03-16 04:02:20,203 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:20,204 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1267 pixels with at least one CR and three groups
2022-03-16 04:02:20,205 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:20,344 - stpipe.JumpStep - INFO - Working on integration 93:
2022-03-16 04:02:20,619 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:20,620 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1153 pixels with at least one CR and three groups
2022-03-16 04:02:20,622 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:20,749 - stpipe.JumpStep - INFO - Working on integration 94:
2022-03-16 04:02:21,016 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:21,018 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 04:02:21,019 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:21,141 - stpipe.JumpStep - INFO - Working on integration 95:
2022-03-16 04:02:21,413 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:21,414 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1026 pixels with at least one CR and three groups
2022-03-16 04:02:21,415 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:21,523 - stpipe.JumpStep - INFO - Working on integration 96:
2022-03-16 04:02:21,790 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:21,792 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1349 pixels with at least one CR and three groups
2022-03-16 04:02:21,793 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:21,938 - stpipe.JumpStep - INFO - Working on integration 97:
2022-03-16 04:02:22,209 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:22,211 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1277 pixels with at least one CR and three groups
2022-03-16 04:02:22,212 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:22,339 - stpipe.JumpStep - INFO - Working on integration 98:
2022-03-16 04:02:22,611 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:22,612 - stpipe.JumpStep - INFO - From highest outlier Two-point found 974 pixels with at least one CR and three groups
2022-03-16 04:02:22,614 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:02:22,725 - stpipe.JumpStep - INFO - Working on integration 99:
2022-03-16 04:02:22,991 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:22,993 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1263 pixels with at least one CR and three groups
2022-03-16 04:02:22,994 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:23,119 - stpipe.JumpStep - INFO - Working on integration 100:
2022-03-16 04:02:23,388 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:23,389 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1246 pixels with at least one CR and three groups
2022-03-16 04:02:23,391 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:23,526 - stpipe.JumpStep - INFO - Working on integration 101:
2022-03-16 04:02:23,797 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:23,798 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1309 pixels with at least one CR and three groups
2022-03-16 04:02:23,799 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:23,929 - stpipe.JumpStep - INFO - Working on integration 102:
2022-03-16 04:02:24,197 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:24,199 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1244 pixels with at least one CR and three groups
2022-03-16 04:02:24,200 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:24,324 - stpipe.JumpStep - INFO - Working on integration 103:
2022-03-16 04:02:24,592 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:24,593 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1292 pixels with at least one CR and three groups
2022-03-16 04:02:24,595 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:24,721 - stpipe.JumpStep - INFO - Working on integration 104:
2022-03-16 04:02:24,990 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:24,992 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1340 pixels with at least one CR and three groups
2022-03-16 04:02:24,993 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:25,138 - stpipe.JumpStep - INFO - Working on integration 105:
2022-03-16 04:02:25,408 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:25,409 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1128 pixels with at least one CR and three groups
2022-03-16 04:02:25,410 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:25,524 - stpipe.JumpStep - INFO - Working on integration 106:
2022-03-16 04:02:25,794 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:25,796 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1284 pixels with at least one CR and three groups
2022-03-16 04:02:25,797 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:25,938 - stpipe.JumpStep - INFO - Working on integration 107:
2022-03-16 04:02:26,205 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:26,206 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1306 pixels with at least one CR and three groups
2022-03-16 04:02:26,207 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:26,350 - stpipe.JumpStep - INFO - Working on integration 108:
2022-03-16 04:02:26,616 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:26,618 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1209 pixels with at least one CR and three groups
2022-03-16 04:02:26,619 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:02:26,739 - stpipe.JumpStep - INFO - Working on integration 109:
2022-03-16 04:02:27,008 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:27,010 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1249 pixels with at least one CR and three groups
2022-03-16 04:02:27,011 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:27,134 - stpipe.JumpStep - INFO - Working on integration 110:
2022-03-16 04:02:27,405 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:27,406 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1311 pixels with at least one CR and three groups
2022-03-16 04:02:27,407 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:27,540 - stpipe.JumpStep - INFO - Working on integration 111:
2022-03-16 04:02:27,809 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:27,811 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1337 pixels with at least one CR and three groups
2022-03-16 04:02:27,812 - stpipe.JumpStep - INFO - From highest outlier Two-point found 68 pixels with at least one CR and two groups
2022-03-16 04:02:27,958 - stpipe.JumpStep - INFO - Working on integration 112:
2022-03-16 04:02:28,229 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:28,231 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1315 pixels with at least one CR and three groups
2022-03-16 04:02:28,232 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:28,361 - stpipe.JumpStep - INFO - Working on integration 113:
2022-03-16 04:02:28,631 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:28,632 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1249 pixels with at least one CR and three groups
2022-03-16 04:02:28,634 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:28,771 - stpipe.JumpStep - INFO - Working on integration 114:
2022-03-16 04:02:29,041 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:29,043 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1212 pixels with at least one CR and three groups
2022-03-16 04:02:29,044 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:29,172 - stpipe.JumpStep - INFO - Working on integration 115:
2022-03-16 04:02:29,442 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:29,443 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1280 pixels with at least one CR and three groups
2022-03-16 04:02:29,445 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:29,575 - stpipe.JumpStep - INFO - Working on integration 116:
2022-03-16 04:02:29,843 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:29,844 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1197 pixels with at least one CR and three groups
2022-03-16 04:02:29,845 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:29,975 - stpipe.JumpStep - INFO - Working on integration 117:
2022-03-16 04:02:30,248 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:30,249 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1259 pixels with at least one CR and three groups
2022-03-16 04:02:30,251 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:30,376 - stpipe.JumpStep - INFO - Working on integration 118:
2022-03-16 04:02:30,645 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:30,647 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1272 pixels with at least one CR and three groups
2022-03-16 04:02:30,648 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:30,774 - stpipe.JumpStep - INFO - Working on integration 119:
2022-03-16 04:02:31,042 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:31,044 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1228 pixels with at least one CR and three groups
2022-03-16 04:02:31,045 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:31,180 - stpipe.JumpStep - INFO - Working on integration 120:
2022-03-16 04:02:31,449 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:31,451 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1279 pixels with at least one CR and three groups
2022-03-16 04:02:31,452 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:02:31,579 - stpipe.JumpStep - INFO - Working on integration 121:
2022-03-16 04:02:31,848 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:31,850 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1290 pixels with at least one CR and three groups
2022-03-16 04:02:31,851 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:31,978 - stpipe.JumpStep - INFO - Working on integration 122:
2022-03-16 04:02:32,244 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:32,245 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1277 pixels with at least one CR and three groups
2022-03-16 04:02:32,247 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:02:32,376 - stpipe.JumpStep - INFO - Working on integration 123:
2022-03-16 04:02:32,659 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:32,661 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1270 pixels with at least one CR and three groups
2022-03-16 04:02:32,662 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:32,787 - stpipe.JumpStep - INFO - Working on integration 124:
2022-03-16 04:02:33,058 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:33,060 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1223 pixels with at least one CR and three groups
2022-03-16 04:02:33,062 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:33,187 - stpipe.JumpStep - INFO - Working on integration 125:
2022-03-16 04:02:33,451 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:33,453 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1285 pixels with at least one CR and three groups
2022-03-16 04:02:33,454 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:33,580 - stpipe.JumpStep - INFO - Working on integration 126:
2022-03-16 04:02:33,849 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:33,850 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1010 pixels with at least one CR and three groups
2022-03-16 04:02:33,852 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:33,956 - stpipe.JumpStep - INFO - Working on integration 127:
2022-03-16 04:02:34,221 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:34,223 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1238 pixels with at least one CR and three groups
2022-03-16 04:02:34,224 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:02:34,347 - stpipe.JumpStep - INFO - Working on integration 128:
2022-03-16 04:02:34,614 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:34,616 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1270 pixels with at least one CR and three groups
2022-03-16 04:02:34,617 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:34,743 - stpipe.JumpStep - INFO - Working on integration 129:
2022-03-16 04:02:35,007 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:35,009 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1232 pixels with at least one CR and three groups
2022-03-16 04:02:35,010 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:35,132 - stpipe.JumpStep - INFO - Working on integration 130:
2022-03-16 04:02:35,403 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:35,405 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1238 pixels with at least one CR and three groups
2022-03-16 04:02:35,406 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:35,529 - stpipe.JumpStep - INFO - Working on integration 131:
2022-03-16 04:02:35,795 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:35,797 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1176 pixels with at least one CR and three groups
2022-03-16 04:02:35,798 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:35,928 - stpipe.JumpStep - INFO - Working on integration 132:
2022-03-16 04:02:36,195 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:36,197 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1344 pixels with at least one CR and three groups
2022-03-16 04:02:36,198 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:36,328 - stpipe.JumpStep - INFO - Working on integration 133:
2022-03-16 04:02:36,600 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:36,601 - stpipe.JumpStep - INFO - From highest outlier Two-point found 984 pixels with at least one CR and three groups
2022-03-16 04:02:36,602 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:36,704 - stpipe.JumpStep - INFO - Working on integration 134:
2022-03-16 04:02:36,971 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:36,973 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1280 pixels with at least one CR and three groups
2022-03-16 04:02:36,974 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:37,099 - stpipe.JumpStep - INFO - Working on integration 135:
2022-03-16 04:02:37,367 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:37,369 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1304 pixels with at least one CR and three groups
2022-03-16 04:02:37,370 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:37,498 - stpipe.JumpStep - INFO - Working on integration 136:
2022-03-16 04:02:37,763 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:37,765 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1289 pixels with at least one CR and three groups
2022-03-16 04:02:37,766 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:37,907 - stpipe.JumpStep - INFO - Working on integration 137:
2022-03-16 04:02:38,176 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:38,178 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1012 pixels with at least one CR and three groups
2022-03-16 04:02:38,179 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:38,284 - stpipe.JumpStep - INFO - Working on integration 138:
2022-03-16 04:02:38,554 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:38,555 - stpipe.JumpStep - INFO - From highest outlier Two-point found 996 pixels with at least one CR and three groups
2022-03-16 04:02:38,557 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:02:38,662 - stpipe.JumpStep - INFO - Working on integration 139:
2022-03-16 04:02:38,926 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:38,928 - stpipe.JumpStep - INFO - From highest outlier Two-point found 989 pixels with at least one CR and three groups
2022-03-16 04:02:38,930 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:39,038 - stpipe.JumpStep - INFO - Working on integration 140:
2022-03-16 04:02:39,305 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:39,306 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1307 pixels with at least one CR and three groups
2022-03-16 04:02:39,307 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:39,436 - stpipe.JumpStep - INFO - Working on integration 141:
2022-03-16 04:02:39,708 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:39,709 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1351 pixels with at least one CR and three groups
2022-03-16 04:02:39,711 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:39,842 - stpipe.JumpStep - INFO - Working on integration 142:
2022-03-16 04:02:40,110 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:40,112 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1223 pixels with at least one CR and three groups
2022-03-16 04:02:40,113 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:40,234 - stpipe.JumpStep - INFO - Working on integration 143:
2022-03-16 04:02:40,502 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:40,504 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1276 pixels with at least one CR and three groups
2022-03-16 04:02:40,505 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:40,631 - stpipe.JumpStep - INFO - Working on integration 144:
2022-03-16 04:02:40,901 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:40,903 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1240 pixels with at least one CR and three groups
2022-03-16 04:02:40,904 - stpipe.JumpStep - INFO - From highest outlier Two-point found 67 pixels with at least one CR and two groups
2022-03-16 04:02:41,027 - stpipe.JumpStep - INFO - Working on integration 145:
2022-03-16 04:02:41,301 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:41,302 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 04:02:41,304 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:41,438 - stpipe.JumpStep - INFO - Working on integration 146:
2022-03-16 04:02:41,706 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:41,707 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1172 pixels with at least one CR and three groups
2022-03-16 04:02:41,709 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:41,825 - stpipe.JumpStep - INFO - Working on integration 147:
2022-03-16 04:02:42,096 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:42,098 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1298 pixels with at least one CR and three groups
2022-03-16 04:02:42,099 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:42,227 - stpipe.JumpStep - INFO - Working on integration 148:
2022-03-16 04:02:42,496 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:42,498 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1331 pixels with at least one CR and three groups
2022-03-16 04:02:42,499 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:42,629 - stpipe.JumpStep - INFO - Working on integration 149:
2022-03-16 04:02:42,900 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:42,902 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1262 pixels with at least one CR and three groups
2022-03-16 04:02:42,903 - stpipe.JumpStep - INFO - From highest outlier Two-point found 67 pixels with at least one CR and two groups
2022-03-16 04:02:43,028 - stpipe.JumpStep - INFO - Working on integration 150:
2022-03-16 04:02:43,296 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:43,297 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1315 pixels with at least one CR and three groups
2022-03-16 04:02:43,298 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:43,427 - stpipe.JumpStep - INFO - Working on integration 151:
2022-03-16 04:02:43,697 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:43,699 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1249 pixels with at least one CR and three groups
2022-03-16 04:02:43,700 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:43,823 - stpipe.JumpStep - INFO - Working on integration 152:
2022-03-16 04:02:44,093 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:44,094 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1255 pixels with at least one CR and three groups
2022-03-16 04:02:44,095 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:02:44,220 - stpipe.JumpStep - INFO - Working on integration 153:
2022-03-16 04:02:44,488 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:44,490 - stpipe.JumpStep - INFO - From highest outlier Two-point found 997 pixels with at least one CR and three groups
2022-03-16 04:02:44,491 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:44,594 - stpipe.JumpStep - INFO - Working on integration 154:
2022-03-16 04:02:44,863 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:44,865 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1121 pixels with at least one CR and three groups
2022-03-16 04:02:44,866 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:44,979 - stpipe.JumpStep - INFO - Working on integration 155:
2022-03-16 04:02:45,248 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:45,250 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1130 pixels with at least one CR and three groups
2022-03-16 04:02:45,251 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:45,365 - stpipe.JumpStep - INFO - Working on integration 156:
2022-03-16 04:02:45,633 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:45,634 - stpipe.JumpStep - INFO - From highest outlier Two-point found 905 pixels with at least one CR and three groups
2022-03-16 04:02:45,635 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:45,730 - stpipe.JumpStep - INFO - Working on integration 157:
2022-03-16 04:02:45,997 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:46,000 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1228 pixels with at least one CR and three groups
2022-03-16 04:02:46,001 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:46,131 - stpipe.JumpStep - INFO - Working on integration 158:
2022-03-16 04:02:46,400 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:46,401 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1206 pixels with at least one CR and three groups
2022-03-16 04:02:46,402 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:46,523 - stpipe.JumpStep - INFO - Working on integration 159:
2022-03-16 04:02:46,787 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:46,789 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1163 pixels with at least one CR and three groups
2022-03-16 04:02:46,790 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:02:46,909 - stpipe.JumpStep - INFO - Working on integration 160:
2022-03-16 04:02:47,188 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:47,190 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1016 pixels with at least one CR and three groups
2022-03-16 04:02:47,191 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:47,308 - stpipe.JumpStep - INFO - Working on integration 161:
2022-03-16 04:02:47,573 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:47,575 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1310 pixels with at least one CR and three groups
2022-03-16 04:02:47,576 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:47,718 - stpipe.JumpStep - INFO - Working on integration 162:
2022-03-16 04:02:47,988 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:47,990 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1200 pixels with at least one CR and three groups
2022-03-16 04:02:47,991 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:02:48,125 - stpipe.JumpStep - INFO - Working on integration 163:
2022-03-16 04:02:48,394 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:48,396 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1306 pixels with at least one CR and three groups
2022-03-16 04:02:48,397 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:48,524 - stpipe.JumpStep - INFO - Working on integration 164:
2022-03-16 04:02:48,789 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:48,791 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1173 pixels with at least one CR and three groups
2022-03-16 04:02:48,792 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:48,925 - stpipe.JumpStep - INFO - Working on integration 165:
2022-03-16 04:02:49,195 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:49,197 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1296 pixels with at least one CR and three groups
2022-03-16 04:02:49,199 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:49,325 - stpipe.JumpStep - INFO - Working on integration 166:
2022-03-16 04:02:49,595 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:49,597 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1227 pixels with at least one CR and three groups
2022-03-16 04:02:49,598 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:49,724 - stpipe.JumpStep - INFO - Working on integration 167:
2022-03-16 04:02:49,989 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:49,990 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1289 pixels with at least one CR and three groups
2022-03-16 04:02:49,991 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:50,119 - stpipe.JumpStep - INFO - Working on integration 168:
2022-03-16 04:02:50,390 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:50,392 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1301 pixels with at least one CR and three groups
2022-03-16 04:02:50,394 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:50,520 - stpipe.JumpStep - INFO - Working on integration 169:
2022-03-16 04:02:50,785 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:50,787 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1305 pixels with at least one CR and three groups
2022-03-16 04:02:50,788 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:50,917 - stpipe.JumpStep - INFO - Working on integration 170:
2022-03-16 04:02:51,186 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:51,188 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1303 pixels with at least one CR and three groups
2022-03-16 04:02:51,189 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:51,317 - stpipe.JumpStep - INFO - Working on integration 171:
2022-03-16 04:02:51,580 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:51,581 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1175 pixels with at least one CR and three groups
2022-03-16 04:02:51,582 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:51,704 - stpipe.JumpStep - INFO - Working on integration 172:
2022-03-16 04:02:51,972 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:51,974 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1028 pixels with at least one CR and three groups
2022-03-16 04:02:51,975 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:52,080 - stpipe.JumpStep - INFO - Working on integration 173:
2022-03-16 04:02:52,345 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:52,347 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1281 pixels with at least one CR and three groups
2022-03-16 04:02:52,349 - stpipe.JumpStep - INFO - From highest outlier Two-point found 67 pixels with at least one CR and two groups
2022-03-16 04:02:52,479 - stpipe.JumpStep - INFO - Working on integration 174:
2022-03-16 04:02:52,747 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:52,748 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1018 pixels with at least one CR and three groups
2022-03-16 04:02:52,749 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:52,858 - stpipe.JumpStep - INFO - Working on integration 175:
2022-03-16 04:02:53,125 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:53,126 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1273 pixels with at least one CR and three groups
2022-03-16 04:02:53,128 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:53,252 - stpipe.JumpStep - INFO - Working on integration 176:
2022-03-16 04:02:53,519 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:53,521 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 04:02:53,522 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:53,646 - stpipe.JumpStep - INFO - Working on integration 177:
2022-03-16 04:02:53,910 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:53,912 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1005 pixels with at least one CR and three groups
2022-03-16 04:02:53,914 - stpipe.JumpStep - INFO - From highest outlier Two-point found 67 pixels with at least one CR and two groups
2022-03-16 04:02:54,020 - stpipe.JumpStep - INFO - Working on integration 178:
2022-03-16 04:02:54,288 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:54,289 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1153 pixels with at least one CR and three groups
2022-03-16 04:02:54,290 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:54,411 - stpipe.JumpStep - INFO - Working on integration 179:
2022-03-16 04:02:54,680 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:54,681 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1180 pixels with at least one CR and three groups
2022-03-16 04:02:54,683 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:54,804 - stpipe.JumpStep - INFO - Working on integration 180:
2022-03-16 04:02:55,073 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:55,074 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1324 pixels with at least one CR and three groups
2022-03-16 04:02:55,075 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:55,213 - stpipe.JumpStep - INFO - Working on integration 181:
2022-03-16 04:02:55,481 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:55,482 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1213 pixels with at least one CR and three groups
2022-03-16 04:02:55,483 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:55,607 - stpipe.JumpStep - INFO - Working on integration 182:
2022-03-16 04:02:55,877 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:55,879 - stpipe.JumpStep - INFO - From highest outlier Two-point found 994 pixels with at least one CR and three groups
2022-03-16 04:02:55,880 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:55,988 - stpipe.JumpStep - INFO - Working on integration 183:
2022-03-16 04:02:56,255 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:56,256 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1161 pixels with at least one CR and three groups
2022-03-16 04:02:56,258 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:56,373 - stpipe.JumpStep - INFO - Working on integration 184:
2022-03-16 04:02:56,642 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:56,644 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1309 pixels with at least one CR and three groups
2022-03-16 04:02:56,645 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:02:56,779 - stpipe.JumpStep - INFO - Working on integration 185:
2022-03-16 04:02:57,048 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:57,050 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1002 pixels with at least one CR and three groups
2022-03-16 04:02:57,051 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:57,158 - stpipe.JumpStep - INFO - Working on integration 186:
2022-03-16 04:02:57,427 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:57,428 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1229 pixels with at least one CR and three groups
2022-03-16 04:02:57,430 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:57,551 - stpipe.JumpStep - INFO - Working on integration 187:
2022-03-16 04:02:57,819 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:57,820 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1280 pixels with at least one CR and three groups
2022-03-16 04:02:57,821 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:57,947 - stpipe.JumpStep - INFO - Working on integration 188:
2022-03-16 04:02:58,232 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:58,234 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1005 pixels with at least one CR and three groups
2022-03-16 04:02:58,235 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:02:58,342 - stpipe.JumpStep - INFO - Working on integration 189:
2022-03-16 04:02:58,614 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:58,616 - stpipe.JumpStep - INFO - From highest outlier Two-point found 977 pixels with at least one CR and three groups
2022-03-16 04:02:58,617 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:58,721 - stpipe.JumpStep - INFO - Working on integration 190:
2022-03-16 04:02:58,989 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:58,991 - stpipe.JumpStep - INFO - From highest outlier Two-point found 991 pixels with at least one CR and three groups
2022-03-16 04:02:58,993 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:02:59,097 - stpipe.JumpStep - INFO - Working on integration 191:
2022-03-16 04:02:59,364 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:59,366 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1317 pixels with at least one CR and three groups
2022-03-16 04:02:59,367 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:59,496 - stpipe.JumpStep - INFO - Working on integration 192:
2022-03-16 04:02:59,761 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:02:59,762 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1307 pixels with at least one CR and three groups
2022-03-16 04:02:59,763 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:02:59,896 - stpipe.JumpStep - INFO - Working on integration 193:
2022-03-16 04:03:00,165 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:00,167 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1253 pixels with at least one CR and three groups
2022-03-16 04:03:00,168 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:00,292 - stpipe.JumpStep - INFO - Working on integration 194:
2022-03-16 04:03:00,562 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:00,563 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1180 pixels with at least one CR and three groups
2022-03-16 04:03:00,564 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:03:00,685 - stpipe.JumpStep - INFO - Working on integration 195:
2022-03-16 04:03:00,952 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:00,954 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1027 pixels with at least one CR and three groups
2022-03-16 04:03:00,955 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:01,064 - stpipe.JumpStep - INFO - Working on integration 196:
2022-03-16 04:03:01,333 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:01,335 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1318 pixels with at least one CR and three groups
2022-03-16 04:03:01,336 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:01,470 - stpipe.JumpStep - INFO - Working on integration 197:
2022-03-16 04:03:01,739 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:01,741 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1257 pixels with at least one CR and three groups
2022-03-16 04:03:01,742 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:01,873 - stpipe.JumpStep - INFO - Working on integration 198:
2022-03-16 04:03:02,143 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:02,145 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1263 pixels with at least one CR and three groups
2022-03-16 04:03:02,146 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:02,271 - stpipe.JumpStep - INFO - Working on integration 199:
2022-03-16 04:03:02,537 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:02,538 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1300 pixels with at least one CR and three groups
2022-03-16 04:03:02,540 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:02,666 - stpipe.JumpStep - INFO - Working on integration 200:
2022-03-16 04:03:02,936 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:02,938 - stpipe.JumpStep - INFO - From highest outlier Two-point found 927 pixels with at least one CR and three groups
2022-03-16 04:03:02,940 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:03,036 - stpipe.JumpStep - INFO - Working on integration 201:
2022-03-16 04:03:03,307 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:03,309 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1275 pixels with at least one CR and three groups
2022-03-16 04:03:03,310 - stpipe.JumpStep - INFO - From highest outlier Two-point found 67 pixels with at least one CR and two groups
2022-03-16 04:03:03,439 - stpipe.JumpStep - INFO - Working on integration 202:
2022-03-16 04:03:03,707 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:03,708 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1302 pixels with at least one CR and three groups
2022-03-16 04:03:03,710 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:03,839 - stpipe.JumpStep - INFO - Working on integration 203:
2022-03-16 04:03:04,106 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:04,108 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1270 pixels with at least one CR and three groups
2022-03-16 04:03:04,110 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:04,236 - stpipe.JumpStep - INFO - Working on integration 204:
2022-03-16 04:03:04,503 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:04,505 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1266 pixels with at least one CR and three groups
2022-03-16 04:03:04,506 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:04,634 - stpipe.JumpStep - INFO - Working on integration 205:
2022-03-16 04:03:04,907 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:04,909 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1241 pixels with at least one CR and three groups
2022-03-16 04:03:04,911 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:05,032 - stpipe.JumpStep - INFO - Working on integration 206:
2022-03-16 04:03:05,297 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:05,299 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1246 pixels with at least one CR and three groups
2022-03-16 04:03:05,301 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:05,423 - stpipe.JumpStep - INFO - Working on integration 207:
2022-03-16 04:03:05,692 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:05,693 - stpipe.JumpStep - INFO - From highest outlier Two-point found 894 pixels with at least one CR and three groups
2022-03-16 04:03:05,694 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:05,789 - stpipe.JumpStep - INFO - Working on integration 208:
2022-03-16 04:03:06,055 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:06,057 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1236 pixels with at least one CR and three groups
2022-03-16 04:03:06,059 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:06,184 - stpipe.JumpStep - INFO - Working on integration 209:
2022-03-16 04:03:06,451 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:06,453 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1224 pixels with at least one CR and three groups
2022-03-16 04:03:06,455 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:03:06,575 - stpipe.JumpStep - INFO - Working on integration 210:
2022-03-16 04:03:06,843 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:06,844 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1293 pixels with at least one CR and three groups
2022-03-16 04:03:06,845 - stpipe.JumpStep - INFO - From highest outlier Two-point found 67 pixels with at least one CR and two groups
2022-03-16 04:03:06,980 - stpipe.JumpStep - INFO - Working on integration 211:
2022-03-16 04:03:07,249 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:07,250 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1304 pixels with at least one CR and three groups
2022-03-16 04:03:07,252 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:07,385 - stpipe.JumpStep - INFO - Working on integration 212:
2022-03-16 04:03:07,650 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:07,651 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1199 pixels with at least one CR and three groups
2022-03-16 04:03:07,652 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:03:07,777 - stpipe.JumpStep - INFO - Working on integration 213:
2022-03-16 04:03:08,044 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:08,045 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1261 pixels with at least one CR and three groups
2022-03-16 04:03:08,046 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:08,173 - stpipe.JumpStep - INFO - Working on integration 214:
2022-03-16 04:03:08,442 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:08,443 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1350 pixels with at least one CR and three groups
2022-03-16 04:03:08,445 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:08,576 - stpipe.JumpStep - INFO - Working on integration 215:
2022-03-16 04:03:08,848 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:08,849 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1277 pixels with at least one CR and three groups
2022-03-16 04:03:08,850 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:08,980 - stpipe.JumpStep - INFO - Working on integration 216:
2022-03-16 04:03:09,259 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:09,261 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1196 pixels with at least one CR and three groups
2022-03-16 04:03:09,262 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:09,382 - stpipe.JumpStep - INFO - Working on integration 217:
2022-03-16 04:03:09,657 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:09,659 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1261 pixels with at least one CR and three groups
2022-03-16 04:03:09,660 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:09,789 - stpipe.JumpStep - INFO - Working on integration 218:
2022-03-16 04:03:10,057 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:10,059 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1254 pixels with at least one CR and three groups
2022-03-16 04:03:10,061 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:10,185 - stpipe.JumpStep - INFO - Working on integration 219:
2022-03-16 04:03:10,451 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:10,453 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1218 pixels with at least one CR and three groups
2022-03-16 04:03:10,454 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:10,579 - stpipe.JumpStep - INFO - Working on integration 220:
2022-03-16 04:03:10,849 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:10,851 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1010 pixels with at least one CR and three groups
2022-03-16 04:03:10,852 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:10,959 - stpipe.JumpStep - INFO - Working on integration 221:
2022-03-16 04:03:11,229 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:11,230 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1221 pixels with at least one CR and three groups
2022-03-16 04:03:11,231 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:11,357 - stpipe.JumpStep - INFO - Working on integration 222:
2022-03-16 04:03:11,624 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:11,626 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1305 pixels with at least one CR and three groups
2022-03-16 04:03:11,627 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:11,756 - stpipe.JumpStep - INFO - Working on integration 223:
2022-03-16 04:03:12,022 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:12,023 - stpipe.JumpStep - INFO - From highest outlier Two-point found 993 pixels with at least one CR and three groups
2022-03-16 04:03:12,024 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:12,127 - stpipe.JumpStep - INFO - Working on integration 224:
2022-03-16 04:03:12,396 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:12,398 - stpipe.JumpStep - INFO - From highest outlier Two-point found 992 pixels with at least one CR and three groups
2022-03-16 04:03:12,399 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:12,504 - stpipe.JumpStep - INFO - Working on integration 225:
2022-03-16 04:03:12,774 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:12,775 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1274 pixels with at least one CR and three groups
2022-03-16 04:03:12,777 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:12,901 - stpipe.JumpStep - INFO - Working on integration 226:
2022-03-16 04:03:13,169 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:13,170 - stpipe.JumpStep - INFO - From highest outlier Two-point found 988 pixels with at least one CR and three groups
2022-03-16 04:03:13,171 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:13,278 - stpipe.JumpStep - INFO - Working on integration 227:
2022-03-16 04:03:13,545 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:13,547 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1240 pixels with at least one CR and three groups
2022-03-16 04:03:13,549 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:13,670 - stpipe.JumpStep - INFO - Working on integration 228:
2022-03-16 04:03:13,936 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:13,937 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1239 pixels with at least one CR and three groups
2022-03-16 04:03:13,938 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:14,065 - stpipe.JumpStep - INFO - Working on integration 229:
2022-03-16 04:03:14,330 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:14,332 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1174 pixels with at least one CR and three groups
2022-03-16 04:03:14,333 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:03:14,454 - stpipe.JumpStep - INFO - Working on integration 230:
2022-03-16 04:03:14,719 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:14,720 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1186 pixels with at least one CR and three groups
2022-03-16 04:03:14,721 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:14,844 - stpipe.JumpStep - INFO - Working on integration 231:
2022-03-16 04:03:15,110 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:15,112 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1302 pixels with at least one CR and three groups
2022-03-16 04:03:15,113 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:15,245 - stpipe.JumpStep - INFO - Working on integration 232:
2022-03-16 04:03:15,513 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:15,514 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1236 pixels with at least one CR and three groups
2022-03-16 04:03:15,515 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:15,638 - stpipe.JumpStep - INFO - Working on integration 233:
2022-03-16 04:03:15,905 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:15,907 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 04:03:15,908 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:16,031 - stpipe.JumpStep - INFO - Working on integration 234:
2022-03-16 04:03:16,300 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:16,302 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1303 pixels with at least one CR and three groups
2022-03-16 04:03:16,303 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:16,430 - stpipe.JumpStep - INFO - Working on integration 235:
2022-03-16 04:03:16,695 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:16,697 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1001 pixels with at least one CR and three groups
2022-03-16 04:03:16,699 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:16,802 - stpipe.JumpStep - INFO - Working on integration 236:
2022-03-16 04:03:17,071 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:17,072 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1024 pixels with at least one CR and three groups
2022-03-16 04:03:17,073 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:17,183 - stpipe.JumpStep - INFO - Working on integration 237:
2022-03-16 04:03:17,453 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:17,454 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 04:03:17,455 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:17,582 - stpipe.JumpStep - INFO - Working on integration 238:
2022-03-16 04:03:17,852 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:17,854 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1009 pixels with at least one CR and three groups
2022-03-16 04:03:17,855 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:17,962 - stpipe.JumpStep - INFO - Working on integration 239:
2022-03-16 04:03:18,239 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:18,240 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1305 pixels with at least one CR and three groups
2022-03-16 04:03:18,241 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:18,374 - stpipe.JumpStep - INFO - Working on integration 240:
2022-03-16 04:03:18,641 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:18,643 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1323 pixels with at least one CR and three groups
2022-03-16 04:03:18,644 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:18,778 - stpipe.JumpStep - INFO - Working on integration 241:
2022-03-16 04:03:19,049 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:19,051 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1309 pixels with at least one CR and three groups
2022-03-16 04:03:19,052 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:19,189 - stpipe.JumpStep - INFO - Working on integration 242:
2022-03-16 04:03:19,471 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:19,472 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1232 pixels with at least one CR and three groups
2022-03-16 04:03:19,473 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:19,594 - stpipe.JumpStep - INFO - Working on integration 243:
2022-03-16 04:03:19,864 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:19,865 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1195 pixels with at least one CR and three groups
2022-03-16 04:03:19,866 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:19,990 - stpipe.JumpStep - INFO - Working on integration 244:
2022-03-16 04:03:20,258 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:20,259 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1276 pixels with at least one CR and three groups
2022-03-16 04:03:20,260 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:03:20,390 - stpipe.JumpStep - INFO - Working on integration 245:
2022-03-16 04:03:20,663 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:20,665 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1260 pixels with at least one CR and three groups
2022-03-16 04:03:20,666 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:20,792 - stpipe.JumpStep - INFO - Working on integration 246:
2022-03-16 04:03:21,058 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:21,059 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1279 pixels with at least one CR and three groups
2022-03-16 04:03:21,060 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:21,190 - stpipe.JumpStep - INFO - Working on integration 247:
2022-03-16 04:03:21,456 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:21,458 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1263 pixels with at least one CR and three groups
2022-03-16 04:03:21,459 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:21,583 - stpipe.JumpStep - INFO - Working on integration 248:
2022-03-16 04:03:21,854 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:21,856 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1212 pixels with at least one CR and three groups
2022-03-16 04:03:21,857 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:21,976 - stpipe.JumpStep - INFO - Working on integration 249:
2022-03-16 04:03:22,243 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:22,245 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1028 pixels with at least one CR and three groups
2022-03-16 04:03:22,246 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:22,352 - stpipe.JumpStep - INFO - Working on integration 250:
2022-03-16 04:03:22,616 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:22,618 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1329 pixels with at least one CR and three groups
2022-03-16 04:03:22,619 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:22,749 - stpipe.JumpStep - INFO - Working on integration 251:
2022-03-16 04:03:23,016 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:23,018 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1280 pixels with at least one CR and three groups
2022-03-16 04:03:23,019 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:23,148 - stpipe.JumpStep - INFO - Working on integration 252:
2022-03-16 04:03:23,414 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:23,415 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1241 pixels with at least one CR and three groups
2022-03-16 04:03:23,416 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:03:23,544 - stpipe.JumpStep - INFO - Working on integration 253:
2022-03-16 04:03:23,812 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:23,814 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1275 pixels with at least one CR and three groups
2022-03-16 04:03:23,816 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:23,941 - stpipe.JumpStep - INFO - Working on integration 254:
2022-03-16 04:03:24,212 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:24,214 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1239 pixels with at least one CR and three groups
2022-03-16 04:03:24,215 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:24,342 - stpipe.JumpStep - INFO - Working on integration 255:
2022-03-16 04:03:24,612 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:24,613 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1190 pixels with at least one CR and three groups
2022-03-16 04:03:24,614 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:03:24,733 - stpipe.JumpStep - INFO - Working on integration 256:
2022-03-16 04:03:25,000 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:25,001 - stpipe.JumpStep - INFO - From highest outlier Two-point found 937 pixels with at least one CR and three groups
2022-03-16 04:03:25,003 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:25,100 - stpipe.JumpStep - INFO - Working on integration 257:
2022-03-16 04:03:25,365 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:25,366 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1229 pixels with at least one CR and three groups
2022-03-16 04:03:25,367 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:25,489 - stpipe.JumpStep - INFO - Working on integration 258:
2022-03-16 04:03:25,755 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:25,756 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1029 pixels with at least one CR and three groups
2022-03-16 04:03:25,757 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:25,866 - stpipe.JumpStep - INFO - Working on integration 259:
2022-03-16 04:03:26,136 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:26,138 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1227 pixels with at least one CR and three groups
2022-03-16 04:03:26,140 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:26,264 - stpipe.JumpStep - INFO - Working on integration 260:
2022-03-16 04:03:26,532 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:26,533 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1204 pixels with at least one CR and three groups
2022-03-16 04:03:26,534 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:03:26,657 - stpipe.JumpStep - INFO - Working on integration 261:
2022-03-16 04:03:26,922 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:26,923 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1294 pixels with at least one CR and three groups
2022-03-16 04:03:26,924 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:27,057 - stpipe.JumpStep - INFO - Working on integration 262:
2022-03-16 04:03:27,328 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:27,329 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1234 pixels with at least one CR and three groups
2022-03-16 04:03:27,331 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:03:27,457 - stpipe.JumpStep - INFO - Working on integration 263:
2022-03-16 04:03:27,721 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:27,723 - stpipe.JumpStep - INFO - From highest outlier Two-point found 982 pixels with at least one CR and three groups
2022-03-16 04:03:27,724 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:27,825 - stpipe.JumpStep - INFO - Working on integration 264:
2022-03-16 04:03:28,109 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:28,111 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1191 pixels with at least one CR and three groups
2022-03-16 04:03:28,112 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:28,235 - stpipe.JumpStep - INFO - Working on integration 265:
2022-03-16 04:03:28,504 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:28,505 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1311 pixels with at least one CR and three groups
2022-03-16 04:03:28,506 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:28,639 - stpipe.JumpStep - INFO - Working on integration 266:
2022-03-16 04:03:28,908 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:28,910 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1206 pixels with at least one CR and three groups
2022-03-16 04:03:28,911 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:29,039 - stpipe.JumpStep - INFO - Working on integration 267:
2022-03-16 04:03:29,320 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:29,322 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1242 pixels with at least one CR and three groups
2022-03-16 04:03:29,323 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:29,445 - stpipe.JumpStep - INFO - Working on integration 268:
2022-03-16 04:03:29,723 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:29,724 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1166 pixels with at least one CR and three groups
2022-03-16 04:03:29,725 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:03:29,846 - stpipe.JumpStep - INFO - Working on integration 269:
2022-03-16 04:03:30,117 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:30,119 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1236 pixels with at least one CR and three groups
2022-03-16 04:03:30,121 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:03:30,243 - stpipe.JumpStep - INFO - Working on integration 270:
2022-03-16 04:03:30,509 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:30,511 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1255 pixels with at least one CR and three groups
2022-03-16 04:03:30,512 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:30,640 - stpipe.JumpStep - INFO - Working on integration 271:
2022-03-16 04:03:30,912 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:30,913 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1296 pixels with at least one CR and three groups
2022-03-16 04:03:30,914 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:31,046 - stpipe.JumpStep - INFO - Working on integration 272:
2022-03-16 04:03:31,310 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:31,311 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1298 pixels with at least one CR and three groups
2022-03-16 04:03:31,313 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:31,439 - stpipe.JumpStep - INFO - Working on integration 273:
2022-03-16 04:03:31,707 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:31,709 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1004 pixels with at least one CR and three groups
2022-03-16 04:03:31,710 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:31,816 - stpipe.JumpStep - INFO - Working on integration 274:
2022-03-16 04:03:32,084 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:32,085 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1184 pixels with at least one CR and three groups
2022-03-16 04:03:32,086 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:03:32,203 - stpipe.JumpStep - INFO - Working on integration 275:
2022-03-16 04:03:32,473 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:32,474 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1252 pixels with at least one CR and three groups
2022-03-16 04:03:32,475 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:32,600 - stpipe.JumpStep - INFO - Working on integration 276:
2022-03-16 04:03:32,864 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:32,865 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1020 pixels with at least one CR and three groups
2022-03-16 04:03:32,866 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:32,971 - stpipe.JumpStep - INFO - Working on integration 277:
2022-03-16 04:03:33,239 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:33,240 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1213 pixels with at least one CR and three groups
2022-03-16 04:03:33,242 - stpipe.JumpStep - INFO - From highest outlier Two-point found 68 pixels with at least one CR and two groups
2022-03-16 04:03:33,369 - stpipe.JumpStep - INFO - Working on integration 278:
2022-03-16 04:03:33,636 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:33,638 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1169 pixels with at least one CR and three groups
2022-03-16 04:03:33,639 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:33,760 - stpipe.JumpStep - INFO - Working on integration 279:
2022-03-16 04:03:34,030 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:34,032 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1265 pixels with at least one CR and three groups
2022-03-16 04:03:34,034 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:34,157 - stpipe.JumpStep - INFO - Working on integration 280:
2022-03-16 04:03:34,424 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:34,426 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1259 pixels with at least one CR and three groups
2022-03-16 04:03:34,427 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:34,550 - stpipe.JumpStep - INFO - Working on integration 281:
2022-03-16 04:03:34,817 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:34,818 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1253 pixels with at least one CR and three groups
2022-03-16 04:03:34,819 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:34,942 - stpipe.JumpStep - INFO - Working on integration 282:
2022-03-16 04:03:35,209 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:35,210 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1292 pixels with at least one CR and three groups
2022-03-16 04:03:35,211 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:35,340 - stpipe.JumpStep - INFO - Working on integration 283:
2022-03-16 04:03:35,608 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:35,609 - stpipe.JumpStep - INFO - From highest outlier Two-point found 920 pixels with at least one CR and three groups
2022-03-16 04:03:35,610 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:35,709 - stpipe.JumpStep - INFO - Working on integration 284:
2022-03-16 04:03:35,975 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:35,976 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1165 pixels with at least one CR and three groups
2022-03-16 04:03:35,978 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:36,098 - stpipe.JumpStep - INFO - Working on integration 285:
2022-03-16 04:03:36,366 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:36,367 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1223 pixels with at least one CR and three groups
2022-03-16 04:03:36,368 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:36,494 - stpipe.JumpStep - INFO - Working on integration 286:
2022-03-16 04:03:36,762 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:36,763 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 04:03:36,764 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:36,890 - stpipe.JumpStep - INFO - Working on integration 287:
2022-03-16 04:03:37,157 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:37,158 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1282 pixels with at least one CR and three groups
2022-03-16 04:03:37,159 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:37,285 - stpipe.JumpStep - INFO - Working on integration 288:
2022-03-16 04:03:37,549 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:37,551 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1342 pixels with at least one CR and three groups
2022-03-16 04:03:37,552 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:37,688 - stpipe.JumpStep - INFO - Working on integration 289:
2022-03-16 04:03:37,952 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:37,954 - stpipe.JumpStep - INFO - From highest outlier Two-point found 974 pixels with at least one CR and three groups
2022-03-16 04:03:37,955 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:38,059 - stpipe.JumpStep - INFO - Working on integration 290:
2022-03-16 04:03:38,324 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:38,326 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1285 pixels with at least one CR and three groups
2022-03-16 04:03:38,327 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:03:38,459 - stpipe.JumpStep - INFO - Working on integration 291:
2022-03-16 04:03:38,724 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:38,726 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1206 pixels with at least one CR and three groups
2022-03-16 04:03:38,727 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:38,845 - stpipe.JumpStep - INFO - Working on integration 292:
2022-03-16 04:03:39,114 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:39,116 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1240 pixels with at least one CR and three groups
2022-03-16 04:03:39,118 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:03:39,244 - stpipe.JumpStep - INFO - Working on integration 293:
2022-03-16 04:03:39,511 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:39,512 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1291 pixels with at least one CR and three groups
2022-03-16 04:03:39,513 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:39,643 - stpipe.JumpStep - INFO - Working on integration 294:
2022-03-16 04:03:39,912 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:39,914 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1243 pixels with at least one CR and three groups
2022-03-16 04:03:39,915 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:40,042 - stpipe.JumpStep - INFO - Working on integration 295:
2022-03-16 04:03:40,321 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:40,322 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1042 pixels with at least one CR and three groups
2022-03-16 04:03:40,324 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:40,430 - stpipe.JumpStep - INFO - Working on integration 296:
2022-03-16 04:03:40,704 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:40,706 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1344 pixels with at least one CR and three groups
2022-03-16 04:03:40,708 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:40,838 - stpipe.JumpStep - INFO - Working on integration 297:
2022-03-16 04:03:41,109 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:41,110 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1256 pixels with at least one CR and three groups
2022-03-16 04:03:41,111 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:41,239 - stpipe.JumpStep - INFO - Working on integration 298:
2022-03-16 04:03:41,505 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:41,506 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1015 pixels with at least one CR and three groups
2022-03-16 04:03:41,507 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:41,614 - stpipe.JumpStep - INFO - Working on integration 299:
2022-03-16 04:03:41,884 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:41,885 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1260 pixels with at least one CR and three groups
2022-03-16 04:03:41,887 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:03:42,012 - stpipe.JumpStep - INFO - Working on integration 300:
2022-03-16 04:03:42,278 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:42,279 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1278 pixels with at least one CR and three groups
2022-03-16 04:03:42,280 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:42,414 - stpipe.JumpStep - INFO - Working on integration 301:
2022-03-16 04:03:42,683 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:42,684 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1001 pixels with at least one CR and three groups
2022-03-16 04:03:42,686 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:42,790 - stpipe.JumpStep - INFO - Working on integration 302:
2022-03-16 04:03:43,056 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:43,058 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1294 pixels with at least one CR and three groups
2022-03-16 04:03:43,059 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:43,190 - stpipe.JumpStep - INFO - Working on integration 303:
2022-03-16 04:03:43,457 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:43,458 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1282 pixels with at least one CR and three groups
2022-03-16 04:03:43,459 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:43,590 - stpipe.JumpStep - INFO - Working on integration 304:
2022-03-16 04:03:43,863 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:43,864 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1231 pixels with at least one CR and three groups
2022-03-16 04:03:43,865 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:03:43,987 - stpipe.JumpStep - INFO - Working on integration 305:
2022-03-16 04:03:44,255 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:44,257 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1259 pixels with at least one CR and three groups
2022-03-16 04:03:44,258 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:44,387 - stpipe.JumpStep - INFO - Working on integration 306:
2022-03-16 04:03:44,656 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:44,657 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1304 pixels with at least one CR and three groups
2022-03-16 04:03:44,658 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:44,790 - stpipe.JumpStep - INFO - Working on integration 307:
2022-03-16 04:03:45,059 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:45,060 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1261 pixels with at least one CR and three groups
2022-03-16 04:03:45,062 - stpipe.JumpStep - INFO - From highest outlier Two-point found 67 pixels with at least one CR and two groups
2022-03-16 04:03:45,191 - stpipe.JumpStep - INFO - Working on integration 308:
2022-03-16 04:03:45,461 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:45,462 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1307 pixels with at least one CR and three groups
2022-03-16 04:03:45,464 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:45,596 - stpipe.JumpStep - INFO - Working on integration 309:
2022-03-16 04:03:45,864 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:45,866 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1253 pixels with at least one CR and three groups
2022-03-16 04:03:45,867 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:03:45,995 - stpipe.JumpStep - INFO - Working on integration 310:
2022-03-16 04:03:46,264 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:46,266 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1179 pixels with at least one CR and three groups
2022-03-16 04:03:46,267 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:46,387 - stpipe.JumpStep - INFO - Working on integration 311:
2022-03-16 04:03:46,654 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:46,656 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1308 pixels with at least one CR and three groups
2022-03-16 04:03:46,657 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:46,790 - stpipe.JumpStep - INFO - Working on integration 312:
2022-03-16 04:03:47,057 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:47,059 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1281 pixels with at least one CR and three groups
2022-03-16 04:03:47,060 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:47,185 - stpipe.JumpStep - INFO - Working on integration 313:
2022-03-16 04:03:47,455 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:47,457 - stpipe.JumpStep - INFO - From highest outlier Two-point found 993 pixels with at least one CR and three groups
2022-03-16 04:03:47,458 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:03:47,564 - stpipe.JumpStep - INFO - Working on integration 314:
2022-03-16 04:03:47,837 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:47,839 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1252 pixels with at least one CR and three groups
2022-03-16 04:03:47,841 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:47,964 - stpipe.JumpStep - INFO - Working on integration 315:
2022-03-16 04:03:48,231 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:48,232 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1161 pixels with at least one CR and three groups
2022-03-16 04:03:48,233 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:03:48,352 - stpipe.JumpStep - INFO - Working on integration 316:
2022-03-16 04:03:48,621 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:48,622 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1241 pixels with at least one CR and three groups
2022-03-16 04:03:48,624 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:48,750 - stpipe.JumpStep - INFO - Working on integration 317:
2022-03-16 04:03:49,021 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:49,024 - stpipe.JumpStep - INFO - From highest outlier Two-point found 978 pixels with at least one CR and three groups
2022-03-16 04:03:49,025 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:49,125 - stpipe.JumpStep - INFO - Working on integration 318:
2022-03-16 04:03:49,397 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:49,398 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1318 pixels with at least one CR and three groups
2022-03-16 04:03:49,399 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:49,529 - stpipe.JumpStep - INFO - Working on integration 319:
2022-03-16 04:03:49,797 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:49,798 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1254 pixels with at least one CR and three groups
2022-03-16 04:03:49,799 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:03:49,923 - stpipe.JumpStep - INFO - Working on integration 320:
2022-03-16 04:03:50,195 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:03:50,196 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1304 pixels with at least one CR and three groups
2022-03-16 04:03:50,197 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:03:50,333 - stpipe.JumpStep - INFO - Total elapsed time = 138.063 sec
2022-03-16 04:03:50,337 - stpipe.JumpStep - INFO - The execution time in seconds: 143.764182
2022-03-16 04:03:50,341 - stpipe.JumpStep - INFO - Step JumpStep done
2022-03-16 04:03:50,345 - stpipe.RampFitStep - INFO - RampFitStep instance created.
2022-03-16 04:03:50,539 - stpipe.RampFitStep - INFO - Step RampFitStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg002_nrca3_uncal.fits>,).
2022-03-16 04:03:50,541 - stpipe.RampFitStep - INFO - Step RampFitStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
2022-03-16 04:03:50,610 - stpipe.RampFitStep - INFO - Using READNOISE reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits
2022-03-16 04:03:50,640 - stpipe.RampFitStep - INFO - Using GAIN reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits
2022-03-16 04:03:50,681 - stpipe.RampFitStep - INFO - Using algorithm = ols
2022-03-16 04:03:50,682 - stpipe.RampFitStep - INFO - Using weighting = optimal
2022-03-16 04:03:50,684 - stpipe.RampFitStep - INFO - Extracting gain subarray to match science data
2022-03-16 04:03:50,686 - stpipe.RampFitStep - INFO - Extracting readnoise subarray to match science data
2022-03-16 04:04:04,134 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:04:04,138 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:04:51,353 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:04:51,370 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:05:03,812 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:05:03,828 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:05:12,137 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:05:12,154 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:05:30,852 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:05:30,871 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:06:33,795 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:06:33,815 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:07:15,493 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:07:15,514 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:07:42,574 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:07:42,591 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:08:03,466 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:08:03,483 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:09:10,346 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:09:10,363 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:09:31,206 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:09:31,223 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:09:39,569 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:09:39,585 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:09:50,026 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:09:50,043 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:10:04,625 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:10:04,642 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:10:21,315 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:10:21,332 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:11:15,459 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:11:15,476 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:11:40,494 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:11:40,511 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:11:44,662 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:11:44,677 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:11:50,906 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:11:50,921 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:12:11,747 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:12:11,765 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:12:24,253 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:12:24,270 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:13:20,493 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:13:20,510 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:13:55,808 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:13:55,825 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:14:18,722 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:14:18,739 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 04:25:21,486 - stpipe.RampFitStep - INFO - Number of groups per integration: 4
2022-03-16 04:25:21,488 - stpipe.RampFitStep - INFO - Number of integrations: 320
2022-03-16 04:25:22,450 - stpipe.RampFitStep - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg002_nrca3_0_rampfitstep.fits
2022-03-16 04:25:26,749 - stpipe.RampFitStep - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg002_nrca3_1_rampfitstep.fits
2022-03-16 04:25:26,750 - stpipe.RampFitStep - INFO - Step RampFitStep done
2022-03-16 04:25:26,755 - stpipe.DQInitStep - INFO - DQInitStep instance created.
2022-03-16 04:25:27,059 - stpipe.DQInitStep - INFO - Step DQInitStep running with args ('/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/Raw_Data/jw01185016001_01101_00001-seg003_nrca3_uncal.fits',).
2022-03-16 04:25:27,062 - stpipe.DQInitStep - INFO - Step DQInitStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 04:25:31,893 - stpipe.DQInitStep - INFO - Using MASK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0058.fits
2022-03-16 04:25:36,045 - stpipe.DQInitStep - INFO - Extracting mask subarray to match science data
2022-03-16 04:25:36,060 - stpipe.DQInitStep - INFO - Step DQInitStep done
2022-03-16 04:25:36,063 - stpipe.SaturationStep - INFO - SaturationStep instance created.
2022-03-16 04:25:36,260 - stpipe.SaturationStep - INFO - Step SaturationStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg003_nrca3_uncal.fits>,).
2022-03-16 04:25:36,263 - stpipe.SaturationStep - INFO - Step SaturationStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 04:25:36,308 - stpipe.SaturationStep - INFO - Using SATURATION reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0067.fits
2022-03-16 04:25:36,435 - stpipe.SaturationStep - WARNING - Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:25:36,437 - stpipe.SaturationStep - WARNING - Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:25:36,438 - stpipe.SaturationStep - WARNING - Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:25:36,441 - stpipe.SaturationStep - WARNING - Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:25:36,442 - stpipe.SaturationStep - WARNING - Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:25:39,482 - stpipe.SaturationStep - INFO - Extracting reference file subarray to match science data
2022-03-16 04:25:46,061 - stpipe.SaturationStep - INFO - Detected 10456 saturated pixels
2022-03-16 04:25:46,593 - stpipe.SaturationStep - INFO - Detected 0 A/D floor pixels
2022-03-16 04:25:46,598 - stpipe.SaturationStep - INFO - Step SaturationStep done
2022-03-16 04:25:46,601 - stpipe.SuperBiasStep - INFO - SuperBiasStep instance created.
2022-03-16 04:25:46,754 - stpipe.SuperBiasStep - INFO - Step SuperBiasStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg003_nrca3_uncal.fits>,).
2022-03-16 04:25:46,757 - stpipe.SuperBiasStep - INFO - Step SuperBiasStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 04:25:46,802 - stpipe.SuperBiasStep - INFO - Using SUPERBIAS reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0027.fits
2022-03-16 04:25:47,035 - stpipe.SuperBiasStep - WARNING - Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:25:51,382 - stpipe.SuperBiasStep - INFO - Step SuperBiasStep done
2022-03-16 04:25:51,385 - stpipe.RefPixStep - INFO - RefPixStep instance created.
100%|█████████████████████████████████████████| 320/320 [01:44<00:00,  3.06it/s]
2022-03-16 04:27:39,077 - stpipe.LinearityStep - INFO - LinearityStep instance created.
2022-03-16 04:27:39,308 - stpipe.LinearityStep - INFO - Step LinearityStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg003_nrca3_uncal.fits>,).
2022-03-16 04:27:39,312 - stpipe.LinearityStep - INFO - Step LinearityStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 04:27:39,360 - stpipe.LinearityStep - INFO - Using Linearity reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0053.fits
2022-03-16 04:27:39,569 - stpipe.LinearityStep - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:27:39,571 - stpipe.LinearityStep - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:27:39,572 - stpipe.LinearityStep - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:27:39,573 - stpipe.LinearityStep - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:27:39,576 - stpipe.LinearityStep - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:27:39,578 - stpipe.LinearityStep - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:27:39,579 - stpipe.LinearityStep - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 04:27:42,603 - stpipe.LinearityStep - INFO - Extracting linearity subarray to match science data
2022-03-16 04:28:01,081 - stpipe.LinearityStep - INFO - Step LinearityStep done
2022-03-16 04:28:01,085 - stpipe.PersistenceStep - INFO - PersistenceStep instance created.
2022-03-16 04:28:01,277 - stpipe.PersistenceStep - INFO - Step PersistenceStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg003_nrca3_uncal.fits>,).
2022-03-16 04:28:01,280 - stpipe.PersistenceStep - INFO - Step PersistenceStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}
2022-03-16 04:28:01,281 - stpipe.PersistenceStep - INFO - Step skipped.
2022-03-16 04:28:01,283 - stpipe.PersistenceStep - INFO - Step PersistenceStep done
2022-03-16 04:28:01,286 - stpipe.DarkCurrentStep - INFO - DarkCurrentStep instance created.
2022-03-16 04:28:01,409 - stpipe.DarkCurrentStep - INFO - Step DarkCurrentStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg003_nrca3_uncal.fits>,).
2022-03-16 04:28:01,412 - stpipe.DarkCurrentStep - INFO - Step DarkCurrentStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}
2022-03-16 04:28:01,413 - stpipe.DarkCurrentStep - INFO - Step skipped.
2022-03-16 04:28:01,415 - stpipe.DarkCurrentStep - INFO - Step DarkCurrentStep done
2022-03-16 04:28:01,419 - stpipe.JumpStep - INFO - JumpStep instance created.
2022-03-16 04:28:01,540 - stpipe.JumpStep - INFO - Step JumpStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg003_nrca3_uncal.fits>,).
2022-03-16 04:28:01,544 - stpipe.JumpStep - INFO - Step JumpStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 15, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
2022-03-16 04:28:01,565 - stpipe.JumpStep - INFO - CR rejection threshold = 15 sigma
2022-03-16 04:28:01,592 - stpipe.JumpStep - INFO - Using GAIN reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits
2022-03-16 04:28:01,655 - stpipe.JumpStep - INFO - Using READNOISE reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits
2022-03-16 04:28:01,685 - stpipe.JumpStep - INFO - Using 1 core for jump detection 
2022-03-16 04:28:04,801 - stpipe.JumpStep - INFO - Extracting gain subarray to match science data
2022-03-16 04:28:04,803 - stpipe.JumpStep - INFO - Extracting readnoise subarray to match science data
2022-03-16 04:28:07,317 - stpipe.JumpStep - INFO - Executing two-point difference method
2022-03-16 04:28:18,288 - stpipe.JumpStep - INFO - Working on integration 1:
2022-03-16 04:28:18,554 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:18,555 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1302 pixels with at least one CR and three groups
2022-03-16 04:28:18,556 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:18,685 - stpipe.JumpStep - INFO - Working on integration 2:
2022-03-16 04:28:18,966 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:18,968 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1205 pixels with at least one CR and three groups
2022-03-16 04:28:18,969 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:19,089 - stpipe.JumpStep - INFO - Working on integration 3:
2022-03-16 04:28:19,362 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:19,364 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1295 pixels with at least one CR and three groups
2022-03-16 04:28:19,365 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:19,497 - stpipe.JumpStep - INFO - Working on integration 4:
2022-03-16 04:28:19,763 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:19,765 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1259 pixels with at least one CR and three groups
2022-03-16 04:28:19,766 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:19,891 - stpipe.JumpStep - INFO - Working on integration 5:
2022-03-16 04:28:20,158 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:20,160 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1191 pixels with at least one CR and three groups
2022-03-16 04:28:20,161 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:20,279 - stpipe.JumpStep - INFO - Working on integration 6:
2022-03-16 04:28:20,542 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:20,544 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1222 pixels with at least one CR and three groups
2022-03-16 04:28:20,545 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:28:20,679 - stpipe.JumpStep - INFO - Working on integration 7:
2022-03-16 04:28:20,945 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:20,947 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1179 pixels with at least one CR and three groups
2022-03-16 04:28:20,948 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:28:21,078 - stpipe.JumpStep - INFO - Working on integration 8:
2022-03-16 04:28:21,345 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:21,346 - stpipe.JumpStep - INFO - From highest outlier Two-point found 957 pixels with at least one CR and three groups
2022-03-16 04:28:21,348 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:21,448 - stpipe.JumpStep - INFO - Working on integration 9:
2022-03-16 04:28:21,718 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:21,720 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1171 pixels with at least one CR and three groups
2022-03-16 04:28:21,721 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:28:21,837 - stpipe.JumpStep - INFO - Working on integration 10:
2022-03-16 04:28:22,109 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:22,111 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1363 pixels with at least one CR and three groups
2022-03-16 04:28:22,112 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:22,244 - stpipe.JumpStep - INFO - Working on integration 11:
2022-03-16 04:28:22,512 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:22,514 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1153 pixels with at least one CR and three groups
2022-03-16 04:28:22,515 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:28:22,630 - stpipe.JumpStep - INFO - Working on integration 12:
2022-03-16 04:28:22,898 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:22,899 - stpipe.JumpStep - INFO - From highest outlier Two-point found 984 pixels with at least one CR and three groups
2022-03-16 04:28:22,900 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:23,003 - stpipe.JumpStep - INFO - Working on integration 13:
2022-03-16 04:28:23,268 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:23,270 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1246 pixels with at least one CR and three groups
2022-03-16 04:28:23,271 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:23,394 - stpipe.JumpStep - INFO - Working on integration 14:
2022-03-16 04:28:23,660 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:23,662 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1347 pixels with at least one CR and three groups
2022-03-16 04:28:23,663 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:23,796 - stpipe.JumpStep - INFO - Working on integration 15:
2022-03-16 04:28:24,058 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:24,060 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1261 pixels with at least one CR and three groups
2022-03-16 04:28:24,061 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:24,186 - stpipe.JumpStep - INFO - Working on integration 16:
2022-03-16 04:28:24,451 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:24,452 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1317 pixels with at least one CR and three groups
2022-03-16 04:28:24,454 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:24,597 - stpipe.JumpStep - INFO - Working on integration 17:
2022-03-16 04:28:24,863 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:24,865 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1259 pixels with at least one CR and three groups
2022-03-16 04:28:24,866 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:24,991 - stpipe.JumpStep - INFO - Working on integration 18:
2022-03-16 04:28:25,260 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:25,261 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1301 pixels with at least one CR and three groups
2022-03-16 04:28:25,262 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:25,406 - stpipe.JumpStep - INFO - Working on integration 19:
2022-03-16 04:28:25,670 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:25,672 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1254 pixels with at least one CR and three groups
2022-03-16 04:28:25,673 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:28:25,797 - stpipe.JumpStep - INFO - Working on integration 20:
2022-03-16 04:28:26,063 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:26,065 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1267 pixels with at least one CR and three groups
2022-03-16 04:28:26,066 - stpipe.JumpStep - INFO - From highest outlier Two-point found 67 pixels with at least one CR and two groups
2022-03-16 04:28:26,195 - stpipe.JumpStep - INFO - Working on integration 21:
2022-03-16 04:28:26,463 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:26,465 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1268 pixels with at least one CR and three groups
2022-03-16 04:28:26,466 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:26,591 - stpipe.JumpStep - INFO - Working on integration 22:
2022-03-16 04:28:26,860 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:26,862 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1336 pixels with at least one CR and three groups
2022-03-16 04:28:26,864 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:26,994 - stpipe.JumpStep - INFO - Working on integration 23:
2022-03-16 04:28:27,257 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:27,259 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1297 pixels with at least one CR and three groups
2022-03-16 04:28:27,260 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:27,390 - stpipe.JumpStep - INFO - Working on integration 24:
2022-03-16 04:28:27,659 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:27,661 - stpipe.JumpStep - INFO - From highest outlier Two-point found 979 pixels with at least one CR and three groups
2022-03-16 04:28:27,662 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:27,764 - stpipe.JumpStep - INFO - Working on integration 25:
2022-03-16 04:28:28,030 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:28,031 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1007 pixels with at least one CR and three groups
2022-03-16 04:28:28,032 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:28,141 - stpipe.JumpStep - INFO - Working on integration 26:
2022-03-16 04:28:28,405 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:28,407 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1359 pixels with at least one CR and three groups
2022-03-16 04:28:28,408 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:28,555 - stpipe.JumpStep - INFO - Working on integration 27:
2022-03-16 04:28:28,823 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:28,824 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1209 pixels with at least one CR and three groups
2022-03-16 04:28:28,826 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:28,949 - stpipe.JumpStep - INFO - Working on integration 28:
2022-03-16 04:28:29,218 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:29,220 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1312 pixels with at least one CR and three groups
2022-03-16 04:28:29,221 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:29,349 - stpipe.JumpStep - INFO - Working on integration 29:
2022-03-16 04:28:29,616 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:29,617 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1019 pixels with at least one CR and three groups
2022-03-16 04:28:29,618 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:29,726 - stpipe.JumpStep - INFO - Working on integration 30:
2022-03-16 04:28:29,992 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:29,993 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1239 pixels with at least one CR and three groups
2022-03-16 04:28:29,995 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:30,117 - stpipe.JumpStep - INFO - Working on integration 31:
2022-03-16 04:28:30,384 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:30,386 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1315 pixels with at least one CR and three groups
2022-03-16 04:28:30,387 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:28:30,522 - stpipe.JumpStep - INFO - Working on integration 32:
2022-03-16 04:28:30,791 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:30,793 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1173 pixels with at least one CR and three groups
2022-03-16 04:28:30,794 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:30,912 - stpipe.JumpStep - INFO - Working on integration 33:
2022-03-16 04:28:31,181 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:31,182 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1322 pixels with at least one CR and three groups
2022-03-16 04:28:31,184 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:31,319 - stpipe.JumpStep - INFO - Working on integration 34:
2022-03-16 04:28:31,584 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:31,586 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1305 pixels with at least one CR and three groups
2022-03-16 04:28:31,587 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:31,716 - stpipe.JumpStep - INFO - Working on integration 35:
2022-03-16 04:28:31,985 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:31,987 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1328 pixels with at least one CR and three groups
2022-03-16 04:28:31,988 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:32,124 - stpipe.JumpStep - INFO - Working on integration 36:
2022-03-16 04:28:32,388 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:32,390 - stpipe.JumpStep - INFO - From highest outlier Two-point found 981 pixels with at least one CR and three groups
2022-03-16 04:28:32,391 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:32,493 - stpipe.JumpStep - INFO - Working on integration 37:
2022-03-16 04:28:32,760 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:32,762 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1250 pixels with at least one CR and three groups
2022-03-16 04:28:32,763 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:32,901 - stpipe.JumpStep - INFO - Working on integration 38:
2022-03-16 04:28:33,169 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:33,171 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1156 pixels with at least one CR and three groups
2022-03-16 04:28:33,173 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:33,289 - stpipe.JumpStep - INFO - Working on integration 39:
2022-03-16 04:28:33,560 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:33,562 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1165 pixels with at least one CR and three groups
2022-03-16 04:28:33,563 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:33,689 - stpipe.JumpStep - INFO - Working on integration 40:
2022-03-16 04:28:33,957 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:33,959 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1310 pixels with at least one CR and three groups
2022-03-16 04:28:33,960 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:34,103 - stpipe.JumpStep - INFO - Working on integration 41:
2022-03-16 04:28:34,372 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:34,373 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1259 pixels with at least one CR and three groups
2022-03-16 04:28:34,374 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:34,512 - stpipe.JumpStep - INFO - Working on integration 42:
2022-03-16 04:28:34,779 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:34,781 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1239 pixels with at least one CR and three groups
2022-03-16 04:28:34,782 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:34,905 - stpipe.JumpStep - INFO - Working on integration 43:
2022-03-16 04:28:35,171 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:35,172 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1263 pixels with at least one CR and three groups
2022-03-16 04:28:35,174 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:35,298 - stpipe.JumpStep - INFO - Working on integration 44:
2022-03-16 04:28:35,567 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:35,569 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1291 pixels with at least one CR and three groups
2022-03-16 04:28:35,570 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:35,707 - stpipe.JumpStep - INFO - Working on integration 45:
2022-03-16 04:28:35,973 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:35,975 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1167 pixels with at least one CR and three groups
2022-03-16 04:28:35,976 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:36,093 - stpipe.JumpStep - INFO - Working on integration 46:
2022-03-16 04:28:36,354 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:36,355 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1206 pixels with at least one CR and three groups
2022-03-16 04:28:36,357 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:36,479 - stpipe.JumpStep - INFO - Working on integration 47:
2022-03-16 04:28:36,751 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:36,752 - stpipe.JumpStep - INFO - From highest outlier Two-point found 962 pixels with at least one CR and three groups
2022-03-16 04:28:36,753 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:36,853 - stpipe.JumpStep - INFO - Working on integration 48:
2022-03-16 04:28:37,118 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:37,120 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1257 pixels with at least one CR and three groups
2022-03-16 04:28:37,121 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:37,245 - stpipe.JumpStep - INFO - Working on integration 49:
2022-03-16 04:28:37,509 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:37,511 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1355 pixels with at least one CR and three groups
2022-03-16 04:28:37,512 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:37,648 - stpipe.JumpStep - INFO - Working on integration 50:
2022-03-16 04:28:37,912 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:37,914 - stpipe.JumpStep - INFO - From highest outlier Two-point found 923 pixels with at least one CR and three groups
2022-03-16 04:28:37,915 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:38,011 - stpipe.JumpStep - INFO - Working on integration 51:
2022-03-16 04:28:38,276 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:38,278 - stpipe.JumpStep - INFO - From highest outlier Two-point found 995 pixels with at least one CR and three groups
2022-03-16 04:28:38,279 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:38,382 - stpipe.JumpStep - INFO - Working on integration 52:
2022-03-16 04:28:38,653 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:38,655 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1283 pixels with at least one CR and three groups
2022-03-16 04:28:38,656 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:38,787 - stpipe.JumpStep - INFO - Working on integration 53:
2022-03-16 04:28:39,049 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:39,051 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1321 pixels with at least one CR and three groups
2022-03-16 04:28:39,052 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:39,182 - stpipe.JumpStep - INFO - Working on integration 54:
2022-03-16 04:28:39,448 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:39,450 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1221 pixels with at least one CR and three groups
2022-03-16 04:28:39,451 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:39,572 - stpipe.JumpStep - INFO - Working on integration 55:
2022-03-16 04:28:39,839 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:39,841 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1032 pixels with at least one CR and three groups
2022-03-16 04:28:39,842 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:39,948 - stpipe.JumpStep - INFO - Working on integration 56:
2022-03-16 04:28:40,214 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:40,216 - stpipe.JumpStep - INFO - From highest outlier Two-point found 971 pixels with at least one CR and three groups
2022-03-16 04:28:40,217 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:40,323 - stpipe.JumpStep - INFO - Working on integration 57:
2022-03-16 04:28:40,588 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:40,590 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1212 pixels with at least one CR and three groups
2022-03-16 04:28:40,591 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:40,711 - stpipe.JumpStep - INFO - Working on integration 58:
2022-03-16 04:28:40,977 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:40,978 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1291 pixels with at least one CR and three groups
2022-03-16 04:28:40,979 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:41,107 - stpipe.JumpStep - INFO - Working on integration 59:
2022-03-16 04:28:41,375 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:41,376 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1283 pixels with at least one CR and three groups
2022-03-16 04:28:41,377 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:41,503 - stpipe.JumpStep - INFO - Working on integration 60:
2022-03-16 04:28:41,771 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:41,773 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1035 pixels with at least one CR and three groups
2022-03-16 04:28:41,774 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:41,884 - stpipe.JumpStep - INFO - Working on integration 61:
2022-03-16 04:28:42,150 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:42,151 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1283 pixels with at least one CR and three groups
2022-03-16 04:28:42,153 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:28:42,285 - stpipe.JumpStep - INFO - Working on integration 62:
2022-03-16 04:28:42,550 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:42,551 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1210 pixels with at least one CR and three groups
2022-03-16 04:28:42,552 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:42,672 - stpipe.JumpStep - INFO - Working on integration 63:
2022-03-16 04:28:42,937 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:42,939 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1121 pixels with at least one CR and three groups
2022-03-16 04:28:42,940 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:43,053 - stpipe.JumpStep - INFO - Working on integration 64:
2022-03-16 04:28:43,319 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:43,321 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1003 pixels with at least one CR and three groups
2022-03-16 04:28:43,322 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:43,425 - stpipe.JumpStep - INFO - Working on integration 65:
2022-03-16 04:28:43,689 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:43,691 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1270 pixels with at least one CR and three groups
2022-03-16 04:28:43,692 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:43,827 - stpipe.JumpStep - INFO - Working on integration 66:
2022-03-16 04:28:44,088 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:44,090 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1314 pixels with at least one CR and three groups
2022-03-16 04:28:44,091 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:44,220 - stpipe.JumpStep - INFO - Working on integration 67:
2022-03-16 04:28:44,490 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:44,491 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1016 pixels with at least one CR and three groups
2022-03-16 04:28:44,493 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:28:44,597 - stpipe.JumpStep - INFO - Working on integration 68:
2022-03-16 04:28:44,867 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:44,869 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1266 pixels with at least one CR and three groups
2022-03-16 04:28:44,870 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:44,996 - stpipe.JumpStep - INFO - Working on integration 69:
2022-03-16 04:28:45,259 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:45,260 - stpipe.JumpStep - INFO - From highest outlier Two-point found 985 pixels with at least one CR and three groups
2022-03-16 04:28:45,261 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:45,364 - stpipe.JumpStep - INFO - Working on integration 70:
2022-03-16 04:28:45,629 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:45,630 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1266 pixels with at least one CR and three groups
2022-03-16 04:28:45,631 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:45,757 - stpipe.JumpStep - INFO - Working on integration 71:
2022-03-16 04:28:46,019 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:46,021 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1250 pixels with at least one CR and three groups
2022-03-16 04:28:46,022 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:46,145 - stpipe.JumpStep - INFO - Working on integration 72:
2022-03-16 04:28:46,409 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:46,411 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1165 pixels with at least one CR and three groups
2022-03-16 04:28:46,413 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:46,528 - stpipe.JumpStep - INFO - Working on integration 73:
2022-03-16 04:28:46,798 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:46,800 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1270 pixels with at least one CR and three groups
2022-03-16 04:28:46,801 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:28:46,935 - stpipe.JumpStep - INFO - Working on integration 74:
2022-03-16 04:28:47,200 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:47,201 - stpipe.JumpStep - INFO - From highest outlier Two-point found 937 pixels with at least one CR and three groups
2022-03-16 04:28:47,202 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:47,300 - stpipe.JumpStep - INFO - Working on integration 75:
2022-03-16 04:28:47,567 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:47,569 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1236 pixels with at least one CR and three groups
2022-03-16 04:28:47,570 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:28:47,692 - stpipe.JumpStep - INFO - Working on integration 76:
2022-03-16 04:28:47,957 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:47,958 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1228 pixels with at least one CR and three groups
2022-03-16 04:28:47,959 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:48,084 - stpipe.JumpStep - INFO - Working on integration 77:
2022-03-16 04:28:48,353 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:48,355 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1276 pixels with at least one CR and three groups
2022-03-16 04:28:48,356 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:48,482 - stpipe.JumpStep - INFO - Working on integration 78:
2022-03-16 04:28:48,745 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:48,747 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1331 pixels with at least one CR and three groups
2022-03-16 04:28:48,748 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:48,879 - stpipe.JumpStep - INFO - Working on integration 79:
2022-03-16 04:28:49,144 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:49,146 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1260 pixels with at least one CR and three groups
2022-03-16 04:28:49,147 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:49,271 - stpipe.JumpStep - INFO - Working on integration 80:
2022-03-16 04:28:49,538 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:49,540 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1283 pixels with at least one CR and three groups
2022-03-16 04:28:49,541 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:49,667 - stpipe.JumpStep - INFO - Working on integration 81:
2022-03-16 04:28:49,933 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:49,935 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1182 pixels with at least one CR and three groups
2022-03-16 04:28:49,936 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:50,055 - stpipe.JumpStep - INFO - Working on integration 82:
2022-03-16 04:28:50,322 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:50,324 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1262 pixels with at least one CR and three groups
2022-03-16 04:28:50,325 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:50,454 - stpipe.JumpStep - INFO - Working on integration 83:
2022-03-16 04:28:50,720 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:50,721 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1251 pixels with at least one CR and three groups
2022-03-16 04:28:50,723 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:50,847 - stpipe.JumpStep - INFO - Working on integration 84:
2022-03-16 04:28:51,114 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:51,116 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1278 pixels with at least one CR and three groups
2022-03-16 04:28:51,117 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:28:51,243 - stpipe.JumpStep - INFO - Working on integration 85:
2022-03-16 04:28:51,511 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:51,512 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1239 pixels with at least one CR and three groups
2022-03-16 04:28:51,514 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:51,638 - stpipe.JumpStep - INFO - Working on integration 86:
2022-03-16 04:28:51,908 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:51,910 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1229 pixels with at least one CR and three groups
2022-03-16 04:28:51,911 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:52,033 - stpipe.JumpStep - INFO - Working on integration 87:
2022-03-16 04:28:52,296 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:52,298 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1328 pixels with at least one CR and three groups
2022-03-16 04:28:52,299 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:52,429 - stpipe.JumpStep - INFO - Working on integration 88:
2022-03-16 04:28:52,696 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:52,697 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1240 pixels with at least one CR and three groups
2022-03-16 04:28:52,699 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:52,822 - stpipe.JumpStep - INFO - Working on integration 89:
2022-03-16 04:28:53,089 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:53,090 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1219 pixels with at least one CR and three groups
2022-03-16 04:28:53,092 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:53,214 - stpipe.JumpStep - INFO - Working on integration 90:
2022-03-16 04:28:53,479 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:53,482 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1287 pixels with at least one CR and three groups
2022-03-16 04:28:53,483 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:53,624 - stpipe.JumpStep - INFO - Working on integration 91:
2022-03-16 04:28:53,889 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:53,891 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1013 pixels with at least one CR and three groups
2022-03-16 04:28:53,892 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:54,007 - stpipe.JumpStep - INFO - Working on integration 92:
2022-03-16 04:28:54,279 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:54,281 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1284 pixels with at least one CR and three groups
2022-03-16 04:28:54,282 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:54,409 - stpipe.JumpStep - INFO - Working on integration 93:
2022-03-16 04:28:54,681 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:54,683 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1320 pixels with at least one CR and three groups
2022-03-16 04:28:54,685 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:54,814 - stpipe.JumpStep - INFO - Working on integration 94:
2022-03-16 04:28:55,083 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:55,085 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1198 pixels with at least one CR and three groups
2022-03-16 04:28:55,086 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:28:55,206 - stpipe.JumpStep - INFO - Working on integration 95:
2022-03-16 04:28:55,470 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:55,472 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1211 pixels with at least one CR and three groups
2022-03-16 04:28:55,473 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:55,594 - stpipe.JumpStep - INFO - Working on integration 96:
2022-03-16 04:28:55,867 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:55,869 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1194 pixels with at least one CR and three groups
2022-03-16 04:28:55,871 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:55,989 - stpipe.JumpStep - INFO - Working on integration 97:
2022-03-16 04:28:56,255 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:56,257 - stpipe.JumpStep - INFO - From highest outlier Two-point found 996 pixels with at least one CR and three groups
2022-03-16 04:28:56,258 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:56,360 - stpipe.JumpStep - INFO - Working on integration 98:
2022-03-16 04:28:56,625 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:56,626 - stpipe.JumpStep - INFO - From highest outlier Two-point found 996 pixels with at least one CR and three groups
2022-03-16 04:28:56,627 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:56,733 - stpipe.JumpStep - INFO - Working on integration 99:
2022-03-16 04:28:56,999 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:57,001 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1251 pixels with at least one CR and three groups
2022-03-16 04:28:57,002 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:28:57,125 - stpipe.JumpStep - INFO - Working on integration 100:
2022-03-16 04:28:57,392 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:57,393 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1294 pixels with at least one CR and three groups
2022-03-16 04:28:57,396 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:57,537 - stpipe.JumpStep - INFO - Working on integration 101:
2022-03-16 04:28:57,804 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:57,806 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1253 pixels with at least one CR and three groups
2022-03-16 04:28:57,807 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:57,945 - stpipe.JumpStep - INFO - Working on integration 102:
2022-03-16 04:28:58,212 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:58,214 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1293 pixels with at least one CR and three groups
2022-03-16 04:28:58,215 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:58,342 - stpipe.JumpStep - INFO - Working on integration 103:
2022-03-16 04:28:58,607 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:58,609 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1301 pixels with at least one CR and three groups
2022-03-16 04:28:58,611 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:28:58,752 - stpipe.JumpStep - INFO - Working on integration 104:
2022-03-16 04:28:59,019 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:59,021 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1166 pixels with at least one CR and three groups
2022-03-16 04:28:59,022 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:28:59,138 - stpipe.JumpStep - INFO - Working on integration 105:
2022-03-16 04:28:59,401 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:59,403 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1348 pixels with at least one CR and three groups
2022-03-16 04:28:59,404 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:59,536 - stpipe.JumpStep - INFO - Working on integration 106:
2022-03-16 04:28:59,806 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:28:59,808 - stpipe.JumpStep - INFO - From highest outlier Two-point found 985 pixels with at least one CR and three groups
2022-03-16 04:28:59,809 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:28:59,921 - stpipe.JumpStep - INFO - Working on integration 107:
2022-03-16 04:29:00,190 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:00,191 - stpipe.JumpStep - INFO - From highest outlier Two-point found 993 pixels with at least one CR and three groups
2022-03-16 04:29:00,193 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:00,295 - stpipe.JumpStep - INFO - Working on integration 108:
2022-03-16 04:29:00,563 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:00,564 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1252 pixels with at least one CR and three groups
2022-03-16 04:29:00,565 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:00,689 - stpipe.JumpStep - INFO - Working on integration 109:
2022-03-16 04:29:00,957 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:00,958 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1233 pixels with at least one CR and three groups
2022-03-16 04:29:00,960 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:01,091 - stpipe.JumpStep - INFO - Working on integration 110:
2022-03-16 04:29:01,358 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:01,360 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1248 pixels with at least one CR and three groups
2022-03-16 04:29:01,362 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:01,485 - stpipe.JumpStep - INFO - Working on integration 111:
2022-03-16 04:29:01,751 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:01,752 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1261 pixels with at least one CR and three groups
2022-03-16 04:29:01,754 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:29:01,883 - stpipe.JumpStep - INFO - Working on integration 112:
2022-03-16 04:29:02,156 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:02,158 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1175 pixels with at least one CR and three groups
2022-03-16 04:29:02,159 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:29:02,277 - stpipe.JumpStep - INFO - Working on integration 113:
2022-03-16 04:29:02,540 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:02,542 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1300 pixels with at least one CR and three groups
2022-03-16 04:29:02,543 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:02,671 - stpipe.JumpStep - INFO - Working on integration 114:
2022-03-16 04:29:02,938 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:02,940 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1275 pixels with at least one CR and three groups
2022-03-16 04:29:02,941 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:03,066 - stpipe.JumpStep - INFO - Working on integration 115:
2022-03-16 04:29:03,333 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:03,334 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1256 pixels with at least one CR and three groups
2022-03-16 04:29:03,335 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:03,459 - stpipe.JumpStep - INFO - Working on integration 116:
2022-03-16 04:29:03,729 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:03,730 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1237 pixels with at least one CR and three groups
2022-03-16 04:29:03,731 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:03,866 - stpipe.JumpStep - INFO - Working on integration 117:
2022-03-16 04:29:04,130 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:04,131 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1207 pixels with at least one CR and three groups
2022-03-16 04:29:04,132 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:04,266 - stpipe.JumpStep - INFO - Working on integration 118:
2022-03-16 04:29:04,531 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:04,532 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1160 pixels with at least one CR and three groups
2022-03-16 04:29:04,533 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:04,662 - stpipe.JumpStep - INFO - Working on integration 119:
2022-03-16 04:29:04,925 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:04,927 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1351 pixels with at least one CR and three groups
2022-03-16 04:29:04,928 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:05,061 - stpipe.JumpStep - INFO - Working on integration 120:
2022-03-16 04:29:05,329 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:05,331 - stpipe.JumpStep - INFO - From highest outlier Two-point found 969 pixels with at least one CR and three groups
2022-03-16 04:29:05,332 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:05,432 - stpipe.JumpStep - INFO - Working on integration 121:
2022-03-16 04:29:05,699 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:05,701 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1255 pixels with at least one CR and three groups
2022-03-16 04:29:05,702 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:05,826 - stpipe.JumpStep - INFO - Working on integration 122:
2022-03-16 04:29:06,095 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:06,097 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1302 pixels with at least one CR and three groups
2022-03-16 04:29:06,098 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:06,226 - stpipe.JumpStep - INFO - Working on integration 123:
2022-03-16 04:29:06,495 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:06,497 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1011 pixels with at least one CR and three groups
2022-03-16 04:29:06,498 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:06,602 - stpipe.JumpStep - INFO - Working on integration 124:
2022-03-16 04:29:06,868 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:06,869 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1300 pixels with at least one CR and three groups
2022-03-16 04:29:06,870 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:06,998 - stpipe.JumpStep - INFO - Working on integration 125:
2022-03-16 04:29:07,264 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:07,266 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1152 pixels with at least one CR and three groups
2022-03-16 04:29:07,267 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:07,383 - stpipe.JumpStep - INFO - Working on integration 126:
2022-03-16 04:29:07,650 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:07,651 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1323 pixels with at least one CR and three groups
2022-03-16 04:29:07,652 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:07,782 - stpipe.JumpStep - INFO - Working on integration 127:
2022-03-16 04:29:08,046 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:08,048 - stpipe.JumpStep - INFO - From highest outlier Two-point found 932 pixels with at least one CR and three groups
2022-03-16 04:29:08,049 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:08,153 - stpipe.JumpStep - INFO - Working on integration 128:
2022-03-16 04:29:08,421 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:08,422 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1312 pixels with at least one CR and three groups
2022-03-16 04:29:08,424 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:08,567 - stpipe.JumpStep - INFO - Working on integration 129:
2022-03-16 04:29:08,833 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:08,834 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1268 pixels with at least one CR and three groups
2022-03-16 04:29:08,835 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:08,960 - stpipe.JumpStep - INFO - Working on integration 130:
2022-03-16 04:29:09,226 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:09,228 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1265 pixels with at least one CR and three groups
2022-03-16 04:29:09,229 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:09,367 - stpipe.JumpStep - INFO - Working on integration 131:
2022-03-16 04:29:09,631 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:09,633 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1230 pixels with at least one CR and three groups
2022-03-16 04:29:09,634 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:09,756 - stpipe.JumpStep - INFO - Working on integration 132:
2022-03-16 04:29:10,026 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:10,028 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1265 pixels with at least one CR and three groups
2022-03-16 04:29:10,029 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:10,153 - stpipe.JumpStep - INFO - Working on integration 133:
2022-03-16 04:29:10,420 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:10,422 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1186 pixels with at least one CR and three groups
2022-03-16 04:29:10,423 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:10,541 - stpipe.JumpStep - INFO - Working on integration 134:
2022-03-16 04:29:10,806 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:10,807 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1287 pixels with at least one CR and three groups
2022-03-16 04:29:10,808 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:10,948 - stpipe.JumpStep - INFO - Working on integration 135:
2022-03-16 04:29:11,214 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:11,215 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1303 pixels with at least one CR and three groups
2022-03-16 04:29:11,216 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:11,344 - stpipe.JumpStep - INFO - Working on integration 136:
2022-03-16 04:29:11,613 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:11,614 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1190 pixels with at least one CR and three groups
2022-03-16 04:29:11,615 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:11,734 - stpipe.JumpStep - INFO - Working on integration 137:
2022-03-16 04:29:12,000 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:12,001 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1274 pixels with at least one CR and three groups
2022-03-16 04:29:12,002 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:12,127 - stpipe.JumpStep - INFO - Working on integration 138:
2022-03-16 04:29:12,394 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:12,395 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1170 pixels with at least one CR and three groups
2022-03-16 04:29:12,397 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:12,512 - stpipe.JumpStep - INFO - Working on integration 139:
2022-03-16 04:29:12,778 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:12,780 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1320 pixels with at least one CR and three groups
2022-03-16 04:29:12,781 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:12,910 - stpipe.JumpStep - INFO - Working on integration 140:
2022-03-16 04:29:13,176 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:13,177 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1312 pixels with at least one CR and three groups
2022-03-16 04:29:13,179 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:13,308 - stpipe.JumpStep - INFO - Working on integration 141:
2022-03-16 04:29:13,577 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:13,579 - stpipe.JumpStep - INFO - From highest outlier Two-point found 992 pixels with at least one CR and three groups
2022-03-16 04:29:13,580 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:13,693 - stpipe.JumpStep - INFO - Working on integration 142:
2022-03-16 04:29:13,960 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:13,962 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1292 pixels with at least one CR and three groups
2022-03-16 04:29:13,963 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:14,089 - stpipe.JumpStep - INFO - Working on integration 143:
2022-03-16 04:29:14,353 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:14,354 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1246 pixels with at least one CR and three groups
2022-03-16 04:29:14,356 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:29:14,481 - stpipe.JumpStep - INFO - Working on integration 144:
2022-03-16 04:29:14,749 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:14,751 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1280 pixels with at least one CR and three groups
2022-03-16 04:29:14,752 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:29:14,877 - stpipe.JumpStep - INFO - Working on integration 145:
2022-03-16 04:29:15,146 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:15,148 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1262 pixels with at least one CR and three groups
2022-03-16 04:29:15,149 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:15,287 - stpipe.JumpStep - INFO - Working on integration 146:
2022-03-16 04:29:15,552 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:15,554 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1298 pixels with at least one CR and three groups
2022-03-16 04:29:15,555 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:15,683 - stpipe.JumpStep - INFO - Working on integration 147:
2022-03-16 04:29:15,953 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:15,954 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1243 pixels with at least one CR and three groups
2022-03-16 04:29:15,955 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:16,077 - stpipe.JumpStep - INFO - Working on integration 148:
2022-03-16 04:29:16,344 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:16,345 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1281 pixels with at least one CR and three groups
2022-03-16 04:29:16,346 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:16,473 - stpipe.JumpStep - INFO - Working on integration 149:
2022-03-16 04:29:16,737 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:16,738 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1302 pixels with at least one CR and three groups
2022-03-16 04:29:16,739 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:16,868 - stpipe.JumpStep - INFO - Working on integration 150:
2022-03-16 04:29:17,134 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:17,135 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1143 pixels with at least one CR and three groups
2022-03-16 04:29:17,136 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:17,263 - stpipe.JumpStep - INFO - Working on integration 151:
2022-03-16 04:29:17,528 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:17,530 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1212 pixels with at least one CR and three groups
2022-03-16 04:29:17,531 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:17,651 - stpipe.JumpStep - INFO - Working on integration 152:
2022-03-16 04:29:17,922 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:17,924 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1232 pixels with at least one CR and three groups
2022-03-16 04:29:17,925 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:18,060 - stpipe.JumpStep - INFO - Working on integration 153:
2022-03-16 04:29:18,326 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:18,327 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 04:29:18,328 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:18,450 - stpipe.JumpStep - INFO - Working on integration 154:
2022-03-16 04:29:18,715 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:18,717 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1287 pixels with at least one CR and three groups
2022-03-16 04:29:18,718 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:18,848 - stpipe.JumpStep - INFO - Working on integration 155:
2022-03-16 04:29:19,115 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:19,117 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1330 pixels with at least one CR and three groups
2022-03-16 04:29:19,118 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:19,256 - stpipe.JumpStep - INFO - Working on integration 156:
2022-03-16 04:29:19,523 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:19,525 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1238 pixels with at least one CR and three groups
2022-03-16 04:29:19,526 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:19,661 - stpipe.JumpStep - INFO - Working on integration 157:
2022-03-16 04:29:19,932 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:19,934 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1281 pixels with at least one CR and three groups
2022-03-16 04:29:19,935 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:29:20,061 - stpipe.JumpStep - INFO - Working on integration 158:
2022-03-16 04:29:20,325 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:20,326 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1232 pixels with at least one CR and three groups
2022-03-16 04:29:20,328 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:20,450 - stpipe.JumpStep - INFO - Working on integration 159:
2022-03-16 04:29:20,721 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:20,723 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1189 pixels with at least one CR and three groups
2022-03-16 04:29:20,724 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:20,842 - stpipe.JumpStep - INFO - Working on integration 160:
2022-03-16 04:29:21,111 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:21,113 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1307 pixels with at least one CR and three groups
2022-03-16 04:29:21,114 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:21,244 - stpipe.JumpStep - INFO - Working on integration 161:
2022-03-16 04:29:21,514 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:21,515 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1153 pixels with at least one CR and three groups
2022-03-16 04:29:21,516 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:21,633 - stpipe.JumpStep - INFO - Working on integration 162:
2022-03-16 04:29:21,897 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:21,899 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1312 pixels with at least one CR and three groups
2022-03-16 04:29:21,900 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:22,029 - stpipe.JumpStep - INFO - Working on integration 163:
2022-03-16 04:29:22,297 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:22,299 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1212 pixels with at least one CR and three groups
2022-03-16 04:29:22,301 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:22,421 - stpipe.JumpStep - INFO - Working on integration 164:
2022-03-16 04:29:22,691 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:22,692 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1188 pixels with at least one CR and three groups
2022-03-16 04:29:22,694 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:29:22,824 - stpipe.JumpStep - INFO - Working on integration 165:
2022-03-16 04:29:23,091 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:23,092 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1318 pixels with at least one CR and three groups
2022-03-16 04:29:23,094 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:23,224 - stpipe.JumpStep - INFO - Working on integration 166:
2022-03-16 04:29:23,492 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:23,494 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1032 pixels with at least one CR and three groups
2022-03-16 04:29:23,495 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:23,601 - stpipe.JumpStep - INFO - Working on integration 167:
2022-03-16 04:29:23,867 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:23,869 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1289 pixels with at least one CR and three groups
2022-03-16 04:29:23,871 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:23,998 - stpipe.JumpStep - INFO - Working on integration 168:
2022-03-16 04:29:24,266 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:24,267 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1007 pixels with at least one CR and three groups
2022-03-16 04:29:24,269 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:24,372 - stpipe.JumpStep - INFO - Working on integration 169:
2022-03-16 04:29:24,644 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:24,645 - stpipe.JumpStep - INFO - From highest outlier Two-point found 910 pixels with at least one CR and three groups
2022-03-16 04:29:24,646 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:24,742 - stpipe.JumpStep - INFO - Working on integration 170:
2022-03-16 04:29:25,014 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:25,016 - stpipe.JumpStep - INFO - From highest outlier Two-point found 911 pixels with at least one CR and three groups
2022-03-16 04:29:25,017 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:25,113 - stpipe.JumpStep - INFO - Working on integration 171:
2022-03-16 04:29:25,380 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:25,382 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1198 pixels with at least one CR and three groups
2022-03-16 04:29:25,383 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:29:25,503 - stpipe.JumpStep - INFO - Working on integration 172:
2022-03-16 04:29:25,769 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:25,771 - stpipe.JumpStep - INFO - From highest outlier Two-point found 998 pixels with at least one CR and three groups
2022-03-16 04:29:25,772 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:25,876 - stpipe.JumpStep - INFO - Working on integration 173:
2022-03-16 04:29:26,140 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:26,142 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1334 pixels with at least one CR and three groups
2022-03-16 04:29:26,143 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:26,273 - stpipe.JumpStep - INFO - Working on integration 174:
2022-03-16 04:29:26,539 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:26,541 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1289 pixels with at least one CR and three groups
2022-03-16 04:29:26,542 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:29:26,669 - stpipe.JumpStep - INFO - Working on integration 175:
2022-03-16 04:29:26,938 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:26,939 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1300 pixels with at least one CR and three groups
2022-03-16 04:29:26,940 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:27,068 - stpipe.JumpStep - INFO - Working on integration 176:
2022-03-16 04:29:27,336 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:27,338 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1359 pixels with at least one CR and three groups
2022-03-16 04:29:27,339 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:27,473 - stpipe.JumpStep - INFO - Working on integration 177:
2022-03-16 04:29:27,744 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:27,745 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1321 pixels with at least one CR and three groups
2022-03-16 04:29:27,746 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:27,875 - stpipe.JumpStep - INFO - Working on integration 178:
2022-03-16 04:29:28,141 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:28,143 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1289 pixels with at least one CR and three groups
2022-03-16 04:29:28,145 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:28,274 - stpipe.JumpStep - INFO - Working on integration 179:
2022-03-16 04:29:28,540 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:28,541 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1278 pixels with at least one CR and three groups
2022-03-16 04:29:28,543 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:28,668 - stpipe.JumpStep - INFO - Working on integration 180:
2022-03-16 04:29:28,934 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:28,936 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1256 pixels with at least one CR and three groups
2022-03-16 04:29:28,937 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:29,061 - stpipe.JumpStep - INFO - Working on integration 181:
2022-03-16 04:29:29,326 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:29,328 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1236 pixels with at least one CR and three groups
2022-03-16 04:29:29,329 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:29,451 - stpipe.JumpStep - INFO - Working on integration 182:
2022-03-16 04:29:29,720 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:29,722 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1211 pixels with at least one CR and three groups
2022-03-16 04:29:29,723 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:29,843 - stpipe.JumpStep - INFO - Working on integration 183:
2022-03-16 04:29:30,107 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:30,109 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1282 pixels with at least one CR and three groups
2022-03-16 04:29:30,110 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:30,250 - stpipe.JumpStep - INFO - Working on integration 184:
2022-03-16 04:29:30,517 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:30,518 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1141 pixels with at least one CR and three groups
2022-03-16 04:29:30,520 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:30,646 - stpipe.JumpStep - INFO - Working on integration 185:
2022-03-16 04:29:30,912 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:30,913 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1292 pixels with at least one CR and three groups
2022-03-16 04:29:30,915 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:31,042 - stpipe.JumpStep - INFO - Working on integration 186:
2022-03-16 04:29:31,312 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:31,314 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1178 pixels with at least one CR and three groups
2022-03-16 04:29:31,315 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:29:31,432 - stpipe.JumpStep - INFO - Working on integration 187:
2022-03-16 04:29:31,698 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:31,699 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1217 pixels with at least one CR and three groups
2022-03-16 04:29:31,701 - stpipe.JumpStep - INFO - From highest outlier Two-point found 67 pixels with at least one CR and two groups
2022-03-16 04:29:31,835 - stpipe.JumpStep - INFO - Working on integration 188:
2022-03-16 04:29:32,098 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:32,099 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1300 pixels with at least one CR and three groups
2022-03-16 04:29:32,100 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:32,232 - stpipe.JumpStep - INFO - Working on integration 189:
2022-03-16 04:29:32,502 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:32,504 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1273 pixels with at least one CR and three groups
2022-03-16 04:29:32,506 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:29:32,631 - stpipe.JumpStep - INFO - Working on integration 190:
2022-03-16 04:29:32,896 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:32,897 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1180 pixels with at least one CR and three groups
2022-03-16 04:29:32,898 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:29:33,015 - stpipe.JumpStep - INFO - Working on integration 191:
2022-03-16 04:29:33,284 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:33,286 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1284 pixels with at least one CR and three groups
2022-03-16 04:29:33,287 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:33,426 - stpipe.JumpStep - INFO - Working on integration 192:
2022-03-16 04:29:33,692 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:33,694 - stpipe.JumpStep - INFO - From highest outlier Two-point found 909 pixels with at least one CR and three groups
2022-03-16 04:29:33,695 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:33,790 - stpipe.JumpStep - INFO - Working on integration 193:
2022-03-16 04:29:34,057 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:34,059 - stpipe.JumpStep - INFO - From highest outlier Two-point found 977 pixels with at least one CR and three groups
2022-03-16 04:29:34,060 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:34,164 - stpipe.JumpStep - INFO - Working on integration 194:
2022-03-16 04:29:34,427 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:34,429 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1240 pixels with at least one CR and three groups
2022-03-16 04:29:34,431 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:34,564 - stpipe.JumpStep - INFO - Working on integration 195:
2022-03-16 04:29:34,828 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:34,830 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1193 pixels with at least one CR and three groups
2022-03-16 04:29:34,831 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:34,962 - stpipe.JumpStep - INFO - Working on integration 196:
2022-03-16 04:29:35,228 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:35,230 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1214 pixels with at least one CR and three groups
2022-03-16 04:29:35,231 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:35,362 - stpipe.JumpStep - INFO - Working on integration 197:
2022-03-16 04:29:35,635 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:35,636 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1326 pixels with at least one CR and three groups
2022-03-16 04:29:35,638 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:35,777 - stpipe.JumpStep - INFO - Working on integration 198:
2022-03-16 04:29:36,050 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:36,051 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1169 pixels with at least one CR and three groups
2022-03-16 04:29:36,053 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 04:29:36,177 - stpipe.JumpStep - INFO - Working on integration 199:
2022-03-16 04:29:36,447 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:36,449 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1257 pixels with at least one CR and three groups
2022-03-16 04:29:36,451 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:36,576 - stpipe.JumpStep - INFO - Working on integration 200:
2022-03-16 04:29:36,847 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:36,849 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1262 pixels with at least one CR and three groups
2022-03-16 04:29:36,850 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:36,974 - stpipe.JumpStep - INFO - Working on integration 201:
2022-03-16 04:29:37,245 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:37,246 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1257 pixels with at least one CR and three groups
2022-03-16 04:29:37,247 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:37,373 - stpipe.JumpStep - INFO - Working on integration 202:
2022-03-16 04:29:37,640 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:37,642 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1270 pixels with at least one CR and three groups
2022-03-16 04:29:37,643 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:29:37,782 - stpipe.JumpStep - INFO - Working on integration 203:
2022-03-16 04:29:38,055 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:38,058 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1284 pixels with at least one CR and three groups
2022-03-16 04:29:38,059 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:38,186 - stpipe.JumpStep - INFO - Working on integration 204:
2022-03-16 04:29:38,450 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:38,451 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1224 pixels with at least one CR and three groups
2022-03-16 04:29:38,452 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:38,574 - stpipe.JumpStep - INFO - Working on integration 205:
2022-03-16 04:29:38,849 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:38,851 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1237 pixels with at least one CR and three groups
2022-03-16 04:29:38,853 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:29:38,976 - stpipe.JumpStep - INFO - Working on integration 206:
2022-03-16 04:29:39,243 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:39,245 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1146 pixels with at least one CR and three groups
2022-03-16 04:29:39,246 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 04:29:39,361 - stpipe.JumpStep - INFO - Working on integration 207:
2022-03-16 04:29:39,632 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:39,633 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1192 pixels with at least one CR and three groups
2022-03-16 04:29:39,635 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:39,755 - stpipe.JumpStep - INFO - Working on integration 208:
2022-03-16 04:29:40,022 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:40,024 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1250 pixels with at least one CR and three groups
2022-03-16 04:29:40,025 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 04:29:40,149 - stpipe.JumpStep - INFO - Working on integration 209:
2022-03-16 04:29:40,419 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:40,421 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1306 pixels with at least one CR and three groups
2022-03-16 04:29:40,422 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:40,550 - stpipe.JumpStep - INFO - Working on integration 210:
2022-03-16 04:29:40,818 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:40,820 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1297 pixels with at least one CR and three groups
2022-03-16 04:29:40,821 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 04:29:40,949 - stpipe.JumpStep - INFO - Working on integration 211:
2022-03-16 04:29:41,214 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:41,215 - stpipe.JumpStep - INFO - From highest outlier Two-point found 993 pixels with at least one CR and three groups
2022-03-16 04:29:41,217 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 04:29:41,319 - stpipe.JumpStep - INFO - Working on integration 212:
2022-03-16 04:29:41,591 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:41,593 - stpipe.JumpStep - INFO - From highest outlier Two-point found 989 pixels with at least one CR and three groups
2022-03-16 04:29:41,594 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 04:29:41,698 - stpipe.JumpStep - INFO - Working on integration 213:
2022-03-16 04:29:41,966 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:41,968 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1209 pixels with at least one CR and three groups
2022-03-16 04:29:41,969 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 04:29:42,101 - stpipe.JumpStep - INFO - Working on integration 214:
2022-03-16 04:29:42,369 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 04:29:42,371 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1020 pixels with at least one CR and three groups
2022-03-16 04:29:42,373 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
IOPub message rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--NotebookApp.iopub_msg_rate_limit`.

Current values:
NotebookApp.iopub_msg_rate_limit=1000.0 (msgs/sec)
NotebookApp.rate_limit_window=3.0 (secs)

2022-03-16 05:43:00,114 - stpipe.JumpStep - INFO - JumpStep instance created.
2022-03-16 05:43:00,238 - stpipe.JumpStep - INFO - Step JumpStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg005_nrca3_uncal.fits>,).
2022-03-16 05:43:00,241 - stpipe.JumpStep - INFO - Step JumpStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 15, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
2022-03-16 05:43:00,262 - stpipe.JumpStep - INFO - CR rejection threshold = 15 sigma
2022-03-16 05:43:00,287 - stpipe.JumpStep - INFO - Using GAIN reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits
2022-03-16 05:43:00,351 - stpipe.JumpStep - INFO - Using READNOISE reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits
2022-03-16 05:43:00,382 - stpipe.JumpStep - INFO - Using 1 core for jump detection 
2022-03-16 05:43:03,854 - stpipe.JumpStep - INFO - Extracting gain subarray to match science data
2022-03-16 05:43:03,856 - stpipe.JumpStep - INFO - Extracting readnoise subarray to match science data
2022-03-16 05:43:06,360 - stpipe.JumpStep - INFO - Executing two-point difference method
2022-03-16 05:43:18,217 - stpipe.JumpStep - INFO - Working on integration 1:
2022-03-16 05:43:18,491 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:18,493 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1300 pixels with at least one CR and three groups
2022-03-16 05:43:18,494 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:18,622 - stpipe.JumpStep - INFO - Working on integration 2:
2022-03-16 05:43:18,941 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:18,942 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1246 pixels with at least one CR and three groups
2022-03-16 05:43:18,944 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:19,078 - stpipe.JumpStep - INFO - Working on integration 3:
2022-03-16 05:43:19,350 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:19,352 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1155 pixels with at least one CR and three groups
2022-03-16 05:43:19,353 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:19,472 - stpipe.JumpStep - INFO - Working on integration 4:
2022-03-16 05:43:19,742 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:19,744 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1260 pixels with at least one CR and three groups
2022-03-16 05:43:19,746 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:19,884 - stpipe.JumpStep - INFO - Working on integration 5:
2022-03-16 05:43:20,162 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:20,163 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1272 pixels with at least one CR and three groups
2022-03-16 05:43:20,164 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:43:20,295 - stpipe.JumpStep - INFO - Working on integration 6:
2022-03-16 05:43:20,564 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:20,566 - stpipe.JumpStep - INFO - From highest outlier Two-point found 950 pixels with at least one CR and three groups
2022-03-16 05:43:20,567 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:20,676 - stpipe.JumpStep - INFO - Working on integration 7:
2022-03-16 05:43:20,961 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:20,963 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1399 pixels with at least one CR and three groups
2022-03-16 05:43:20,965 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:21,115 - stpipe.JumpStep - INFO - Working on integration 8:
2022-03-16 05:43:21,393 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:21,394 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1234 pixels with at least one CR and three groups
2022-03-16 05:43:21,395 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:21,532 - stpipe.JumpStep - INFO - Working on integration 9:
2022-03-16 05:43:21,814 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:21,815 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1125 pixels with at least one CR and three groups
2022-03-16 05:43:21,816 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:21,930 - stpipe.JumpStep - INFO - Working on integration 10:
2022-03-16 05:43:22,206 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:22,208 - stpipe.JumpStep - INFO - From highest outlier Two-point found 923 pixels with at least one CR and three groups
2022-03-16 05:43:22,209 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:22,316 - stpipe.JumpStep - INFO - Working on integration 11:
2022-03-16 05:43:22,610 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:22,611 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1297 pixels with at least one CR and three groups
2022-03-16 05:43:22,612 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:43:22,741 - stpipe.JumpStep - INFO - Working on integration 12:
2022-03-16 05:43:23,029 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:23,030 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1011 pixels with at least one CR and three groups
2022-03-16 05:43:23,032 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:23,146 - stpipe.JumpStep - INFO - Working on integration 13:
2022-03-16 05:43:23,417 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:23,418 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1211 pixels with at least one CR and three groups
2022-03-16 05:43:23,419 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:23,541 - stpipe.JumpStep - INFO - Working on integration 14:
2022-03-16 05:43:23,812 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:23,814 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1320 pixels with at least one CR and three groups
2022-03-16 05:43:23,815 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 05:43:23,945 - stpipe.JumpStep - INFO - Working on integration 15:
2022-03-16 05:43:24,215 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:24,217 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1286 pixels with at least one CR and three groups
2022-03-16 05:43:24,218 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:24,346 - stpipe.JumpStep - INFO - Working on integration 16:
2022-03-16 05:43:24,627 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:24,629 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1250 pixels with at least one CR and three groups
2022-03-16 05:43:24,630 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:43:24,755 - stpipe.JumpStep - INFO - Working on integration 17:
2022-03-16 05:43:25,029 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:25,030 - stpipe.JumpStep - INFO - From highest outlier Two-point found 989 pixels with at least one CR and three groups
2022-03-16 05:43:25,032 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:25,134 - stpipe.JumpStep - INFO - Working on integration 18:
2022-03-16 05:43:25,407 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:25,409 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1268 pixels with at least one CR and three groups
2022-03-16 05:43:25,410 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:25,536 - stpipe.JumpStep - INFO - Working on integration 19:
2022-03-16 05:43:25,802 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:25,804 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1241 pixels with at least one CR and three groups
2022-03-16 05:43:25,805 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:25,935 - stpipe.JumpStep - INFO - Working on integration 20:
2022-03-16 05:43:26,203 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:26,205 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1239 pixels with at least one CR and three groups
2022-03-16 05:43:26,206 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:43:26,330 - stpipe.JumpStep - INFO - Working on integration 21:
2022-03-16 05:43:26,618 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:26,619 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1234 pixels with at least one CR and three groups
2022-03-16 05:43:26,621 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:26,743 - stpipe.JumpStep - INFO - Working on integration 22:
2022-03-16 05:43:27,013 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:27,015 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1270 pixels with at least one CR and three groups
2022-03-16 05:43:27,017 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 05:43:27,153 - stpipe.JumpStep - INFO - Working on integration 23:
2022-03-16 05:43:27,422 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:27,424 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1259 pixels with at least one CR and three groups
2022-03-16 05:43:27,425 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:27,564 - stpipe.JumpStep - INFO - Working on integration 24:
2022-03-16 05:43:27,838 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:27,839 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1282 pixels with at least one CR and three groups
2022-03-16 05:43:27,840 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:43:27,969 - stpipe.JumpStep - INFO - Working on integration 25:
2022-03-16 05:43:28,236 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:28,238 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 05:43:28,239 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:28,362 - stpipe.JumpStep - INFO - Working on integration 26:
2022-03-16 05:43:28,637 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:28,639 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1225 pixels with at least one CR and three groups
2022-03-16 05:43:28,640 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:28,765 - stpipe.JumpStep - INFO - Working on integration 27:
2022-03-16 05:43:29,034 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:29,035 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1133 pixels with at least one CR and three groups
2022-03-16 05:43:29,036 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:29,163 - stpipe.JumpStep - INFO - Working on integration 28:
2022-03-16 05:43:29,433 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:29,435 - stpipe.JumpStep - INFO - From highest outlier Two-point found 934 pixels with at least one CR and three groups
2022-03-16 05:43:29,436 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:29,541 - stpipe.JumpStep - INFO - Working on integration 29:
2022-03-16 05:43:29,809 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:29,811 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1227 pixels with at least one CR and three groups
2022-03-16 05:43:29,812 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:43:29,947 - stpipe.JumpStep - INFO - Working on integration 30:
2022-03-16 05:43:30,216 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:30,217 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1265 pixels with at least one CR and three groups
2022-03-16 05:43:30,219 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:30,346 - stpipe.JumpStep - INFO - Working on integration 31:
2022-03-16 05:43:30,619 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:30,621 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1303 pixels with at least one CR and three groups
2022-03-16 05:43:30,622 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:30,765 - stpipe.JumpStep - INFO - Working on integration 32:
2022-03-16 05:43:31,030 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:31,032 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1294 pixels with at least one CR and three groups
2022-03-16 05:43:31,033 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:31,161 - stpipe.JumpStep - INFO - Working on integration 33:
2022-03-16 05:43:31,429 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:31,431 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1283 pixels with at least one CR and three groups
2022-03-16 05:43:31,432 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:31,573 - stpipe.JumpStep - INFO - Working on integration 34:
2022-03-16 05:43:31,853 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:31,854 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1363 pixels with at least one CR and three groups
2022-03-16 05:43:31,855 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:31,992 - stpipe.JumpStep - INFO - Working on integration 35:
2022-03-16 05:43:32,262 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:32,264 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1237 pixels with at least one CR and three groups
2022-03-16 05:43:32,265 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:32,388 - stpipe.JumpStep - INFO - Working on integration 36:
2022-03-16 05:43:32,667 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:32,668 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1236 pixels with at least one CR and three groups
2022-03-16 05:43:32,669 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:32,808 - stpipe.JumpStep - INFO - Working on integration 37:
2022-03-16 05:43:33,086 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:33,087 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1289 pixels with at least one CR and three groups
2022-03-16 05:43:33,088 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:43:33,219 - stpipe.JumpStep - INFO - Working on integration 38:
2022-03-16 05:43:33,488 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:33,489 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1280 pixels with at least one CR and three groups
2022-03-16 05:43:33,491 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 05:43:33,626 - stpipe.JumpStep - INFO - Working on integration 39:
2022-03-16 05:43:33,901 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:33,902 - stpipe.JumpStep - INFO - From highest outlier Two-point found 992 pixels with at least one CR and three groups
2022-03-16 05:43:33,904 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:43:34,017 - stpipe.JumpStep - INFO - Working on integration 40:
2022-03-16 05:43:34,292 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:34,293 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1234 pixels with at least one CR and three groups
2022-03-16 05:43:34,294 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:34,417 - stpipe.JumpStep - INFO - Working on integration 41:
2022-03-16 05:43:34,695 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:34,697 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1262 pixels with at least one CR and three groups
2022-03-16 05:43:34,698 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:43:34,826 - stpipe.JumpStep - INFO - Working on integration 42:
2022-03-16 05:43:35,097 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:35,099 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1300 pixels with at least one CR and three groups
2022-03-16 05:43:35,100 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:35,243 - stpipe.JumpStep - INFO - Working on integration 43:
2022-03-16 05:43:35,512 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:35,513 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1251 pixels with at least one CR and three groups
2022-03-16 05:43:35,514 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:35,639 - stpipe.JumpStep - INFO - Working on integration 44:
2022-03-16 05:43:35,909 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:35,911 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1299 pixels with at least one CR and three groups
2022-03-16 05:43:35,912 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:36,041 - stpipe.JumpStep - INFO - Working on integration 45:
2022-03-16 05:43:36,318 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:36,320 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1275 pixels with at least one CR and three groups
2022-03-16 05:43:36,321 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:36,450 - stpipe.JumpStep - INFO - Working on integration 46:
2022-03-16 05:43:36,734 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:36,736 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1213 pixels with at least one CR and three groups
2022-03-16 05:43:36,738 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:36,874 - stpipe.JumpStep - INFO - Working on integration 47:
2022-03-16 05:43:37,154 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:37,156 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1236 pixels with at least one CR and three groups
2022-03-16 05:43:37,157 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:37,280 - stpipe.JumpStep - INFO - Working on integration 48:
2022-03-16 05:43:37,562 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:37,564 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1191 pixels with at least one CR and three groups
2022-03-16 05:43:37,565 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 05:43:37,694 - stpipe.JumpStep - INFO - Working on integration 49:
2022-03-16 05:43:37,992 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:37,993 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1294 pixels with at least one CR and three groups
2022-03-16 05:43:37,994 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:38,137 - stpipe.JumpStep - INFO - Working on integration 50:
2022-03-16 05:43:38,418 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:38,420 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1238 pixels with at least one CR and three groups
2022-03-16 05:43:38,421 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:38,545 - stpipe.JumpStep - INFO - Working on integration 51:
2022-03-16 05:43:38,810 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:38,812 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1230 pixels with at least one CR and three groups
2022-03-16 05:43:38,813 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 05:43:38,941 - stpipe.JumpStep - INFO - Working on integration 52:
2022-03-16 05:43:39,211 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:39,213 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1236 pixels with at least one CR and three groups
2022-03-16 05:43:39,214 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:39,337 - stpipe.JumpStep - INFO - Working on integration 53:
2022-03-16 05:43:39,606 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:39,607 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1120 pixels with at least one CR and three groups
2022-03-16 05:43:39,609 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:39,734 - stpipe.JumpStep - INFO - Working on integration 54:
2022-03-16 05:43:40,017 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:40,019 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1184 pixels with at least one CR and three groups
2022-03-16 05:43:40,020 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:43:40,139 - stpipe.JumpStep - INFO - Working on integration 55:
2022-03-16 05:43:40,412 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:40,414 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1012 pixels with at least one CR and three groups
2022-03-16 05:43:40,415 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:40,525 - stpipe.JumpStep - INFO - Working on integration 56:
2022-03-16 05:43:40,804 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:40,805 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1189 pixels with at least one CR and three groups
2022-03-16 05:43:40,806 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:40,934 - stpipe.JumpStep - INFO - Working on integration 57:
2022-03-16 05:43:41,217 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:41,218 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1286 pixels with at least one CR and three groups
2022-03-16 05:43:41,220 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:41,348 - stpipe.JumpStep - INFO - Working on integration 58:
2022-03-16 05:43:41,636 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:41,637 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1247 pixels with at least one CR and three groups
2022-03-16 05:43:41,638 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:41,763 - stpipe.JumpStep - INFO - Working on integration 59:
2022-03-16 05:43:42,036 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:42,038 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 05:43:42,039 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:42,163 - stpipe.JumpStep - INFO - Working on integration 60:
2022-03-16 05:43:42,447 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:42,449 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1308 pixels with at least one CR and three groups
2022-03-16 05:43:42,450 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:43:42,597 - stpipe.JumpStep - INFO - Working on integration 61:
2022-03-16 05:43:42,871 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:42,873 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 05:43:42,874 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:43,007 - stpipe.JumpStep - INFO - Working on integration 62:
2022-03-16 05:43:43,279 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:43,280 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1226 pixels with at least one CR and three groups
2022-03-16 05:43:43,282 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:43,416 - stpipe.JumpStep - INFO - Working on integration 63:
2022-03-16 05:43:43,704 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:43,706 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1309 pixels with at least one CR and three groups
2022-03-16 05:43:43,707 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:43:43,851 - stpipe.JumpStep - INFO - Working on integration 64:
2022-03-16 05:43:44,125 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:44,126 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1214 pixels with at least one CR and three groups
2022-03-16 05:43:44,128 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:44,256 - stpipe.JumpStep - INFO - Working on integration 65:
2022-03-16 05:43:44,547 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:44,549 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1247 pixels with at least one CR and three groups
2022-03-16 05:43:44,550 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:44,675 - stpipe.JumpStep - INFO - Working on integration 66:
2022-03-16 05:43:44,939 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:44,941 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1320 pixels with at least one CR and three groups
2022-03-16 05:43:44,942 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:45,077 - stpipe.JumpStep - INFO - Working on integration 67:
2022-03-16 05:43:45,358 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:45,360 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1218 pixels with at least one CR and three groups
2022-03-16 05:43:45,361 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:43:45,492 - stpipe.JumpStep - INFO - Working on integration 68:
2022-03-16 05:43:45,767 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:45,769 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 05:43:45,770 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:45,893 - stpipe.JumpStep - INFO - Working on integration 69:
2022-03-16 05:43:46,181 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:46,183 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1268 pixels with at least one CR and three groups
2022-03-16 05:43:46,185 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:46,322 - stpipe.JumpStep - INFO - Working on integration 70:
2022-03-16 05:43:46,598 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:46,600 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1052 pixels with at least one CR and three groups
2022-03-16 05:43:46,601 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:43:46,717 - stpipe.JumpStep - INFO - Working on integration 71:
2022-03-16 05:43:47,000 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:47,001 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1291 pixels with at least one CR and three groups
2022-03-16 05:43:47,002 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:47,131 - stpipe.JumpStep - INFO - Working on integration 72:
2022-03-16 05:43:47,421 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:47,422 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1307 pixels with at least one CR and three groups
2022-03-16 05:43:47,423 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:47,553 - stpipe.JumpStep - INFO - Working on integration 73:
2022-03-16 05:43:47,818 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:47,819 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1260 pixels with at least one CR and three groups
2022-03-16 05:43:47,821 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:47,946 - stpipe.JumpStep - INFO - Working on integration 74:
2022-03-16 05:43:48,237 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:48,239 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1264 pixels with at least one CR and three groups
2022-03-16 05:43:48,240 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:48,377 - stpipe.JumpStep - INFO - Working on integration 75:
2022-03-16 05:43:48,656 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:48,657 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1173 pixels with at least one CR and three groups
2022-03-16 05:43:48,659 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:48,789 - stpipe.JumpStep - INFO - Working on integration 76:
2022-03-16 05:43:49,055 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:49,057 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1187 pixels with at least one CR and three groups
2022-03-16 05:43:49,058 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:49,177 - stpipe.JumpStep - INFO - Working on integration 77:
2022-03-16 05:43:49,457 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:49,459 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1297 pixels with at least one CR and three groups
2022-03-16 05:43:49,460 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:49,593 - stpipe.JumpStep - INFO - Working on integration 78:
2022-03-16 05:43:49,872 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:49,874 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1029 pixels with at least one CR and three groups
2022-03-16 05:43:49,876 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:49,981 - stpipe.JumpStep - INFO - Working on integration 79:
2022-03-16 05:43:50,269 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:50,271 - stpipe.JumpStep - INFO - From highest outlier Two-point found 934 pixels with at least one CR and three groups
2022-03-16 05:43:50,272 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:50,374 - stpipe.JumpStep - INFO - Working on integration 80:
2022-03-16 05:43:50,644 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:50,645 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1178 pixels with at least one CR and three groups
2022-03-16 05:43:50,646 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:43:50,765 - stpipe.JumpStep - INFO - Working on integration 81:
2022-03-16 05:43:51,051 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:51,052 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1306 pixels with at least one CR and three groups
2022-03-16 05:43:51,053 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:43:51,183 - stpipe.JumpStep - INFO - Working on integration 82:
2022-03-16 05:43:51,458 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:51,460 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1274 pixels with at least one CR and three groups
2022-03-16 05:43:51,461 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:51,599 - stpipe.JumpStep - INFO - Working on integration 83:
2022-03-16 05:43:51,875 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:51,877 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1231 pixels with at least one CR and three groups
2022-03-16 05:43:51,878 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:52,001 - stpipe.JumpStep - INFO - Working on integration 84:
2022-03-16 05:43:52,294 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:52,296 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1267 pixels with at least one CR and three groups
2022-03-16 05:43:52,297 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:52,422 - stpipe.JumpStep - INFO - Working on integration 85:
2022-03-16 05:43:52,697 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:52,698 - stpipe.JumpStep - INFO - From highest outlier Two-point found 970 pixels with at least one CR and three groups
2022-03-16 05:43:52,700 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:43:52,811 - stpipe.JumpStep - INFO - Working on integration 86:
2022-03-16 05:43:53,101 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:53,102 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1293 pixels with at least one CR and three groups
2022-03-16 05:43:53,103 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:53,233 - stpipe.JumpStep - INFO - Working on integration 87:
2022-03-16 05:43:53,503 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:53,504 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1305 pixels with at least one CR and three groups
2022-03-16 05:43:53,505 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:53,648 - stpipe.JumpStep - INFO - Working on integration 88:
2022-03-16 05:43:53,933 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:53,935 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1161 pixels with at least one CR and three groups
2022-03-16 05:43:53,936 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:54,056 - stpipe.JumpStep - INFO - Working on integration 89:
2022-03-16 05:43:54,343 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:54,345 - stpipe.JumpStep - INFO - From highest outlier Two-point found 982 pixels with at least one CR and three groups
2022-03-16 05:43:54,346 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:54,449 - stpipe.JumpStep - INFO - Working on integration 90:
2022-03-16 05:43:54,729 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:54,731 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1313 pixels with at least one CR and three groups
2022-03-16 05:43:54,732 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:54,875 - stpipe.JumpStep - INFO - Working on integration 91:
2022-03-16 05:43:55,147 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:55,149 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1193 pixels with at least one CR and three groups
2022-03-16 05:43:55,150 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:55,270 - stpipe.JumpStep - INFO - Working on integration 92:
2022-03-16 05:43:55,540 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:55,542 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1340 pixels with at least one CR and three groups
2022-03-16 05:43:55,543 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:55,674 - stpipe.JumpStep - INFO - Working on integration 93:
2022-03-16 05:43:55,954 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:55,955 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1245 pixels with at least one CR and three groups
2022-03-16 05:43:55,957 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 05:43:56,089 - stpipe.JumpStep - INFO - Working on integration 94:
2022-03-16 05:43:56,366 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:56,367 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1240 pixels with at least one CR and three groups
2022-03-16 05:43:56,368 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:56,500 - stpipe.JumpStep - INFO - Working on integration 95:
2022-03-16 05:43:56,789 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:56,790 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1255 pixels with at least one CR and three groups
2022-03-16 05:43:56,791 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:56,917 - stpipe.JumpStep - INFO - Working on integration 96:
2022-03-16 05:43:57,185 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:57,187 - stpipe.JumpStep - INFO - From highest outlier Two-point found 930 pixels with at least one CR and three groups
2022-03-16 05:43:57,188 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:57,285 - stpipe.JumpStep - INFO - Working on integration 97:
2022-03-16 05:43:57,577 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:57,579 - stpipe.JumpStep - INFO - From highest outlier Two-point found 977 pixels with at least one CR and three groups
2022-03-16 05:43:57,580 - stpipe.JumpStep - INFO - From highest outlier Two-point found 67 pixels with at least one CR and two groups
2022-03-16 05:43:57,687 - stpipe.JumpStep - INFO - Working on integration 98:
2022-03-16 05:43:57,963 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:57,964 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1155 pixels with at least one CR and three groups
2022-03-16 05:43:57,965 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:43:58,096 - stpipe.JumpStep - INFO - Working on integration 99:
2022-03-16 05:43:58,377 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:58,379 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1257 pixels with at least one CR and three groups
2022-03-16 05:43:58,380 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:58,507 - stpipe.JumpStep - INFO - Working on integration 100:
2022-03-16 05:43:58,788 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:58,789 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1300 pixels with at least one CR and three groups
2022-03-16 05:43:58,790 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:43:58,934 - stpipe.JumpStep - INFO - Working on integration 101:
2022-03-16 05:43:59,211 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:59,212 - stpipe.JumpStep - INFO - From highest outlier Two-point found 983 pixels with at least one CR and three groups
2022-03-16 05:43:59,213 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:59,316 - stpipe.JumpStep - INFO - Working on integration 102:
2022-03-16 05:43:59,588 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:59,590 - stpipe.JumpStep - INFO - From highest outlier Two-point found 973 pixels with at least one CR and three groups
2022-03-16 05:43:59,591 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:43:59,696 - stpipe.JumpStep - INFO - Working on integration 103:
2022-03-16 05:43:59,974 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:43:59,976 - stpipe.JumpStep - INFO - From highest outlier Two-point found 934 pixels with at least one CR and three groups
2022-03-16 05:43:59,977 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:00,076 - stpipe.JumpStep - INFO - Working on integration 104:
2022-03-16 05:44:00,349 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:00,351 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1228 pixels with at least one CR and three groups
2022-03-16 05:44:00,352 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:00,477 - stpipe.JumpStep - INFO - Working on integration 105:
2022-03-16 05:44:00,776 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:00,777 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1042 pixels with at least one CR and three groups
2022-03-16 05:44:00,779 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:00,898 - stpipe.JumpStep - INFO - Working on integration 106:
2022-03-16 05:44:01,172 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:01,174 - stpipe.JumpStep - INFO - From highest outlier Two-point found 933 pixels with at least one CR and three groups
2022-03-16 05:44:01,175 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:01,273 - stpipe.JumpStep - INFO - Working on integration 107:
2022-03-16 05:44:01,555 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:01,557 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1206 pixels with at least one CR and three groups
2022-03-16 05:44:01,558 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:01,679 - stpipe.JumpStep - INFO - Working on integration 108:
2022-03-16 05:44:01,952 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:01,954 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1293 pixels with at least one CR and three groups
2022-03-16 05:44:01,955 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:02,085 - stpipe.JumpStep - INFO - Working on integration 109:
2022-03-16 05:44:02,381 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:02,383 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1225 pixels with at least one CR and three groups
2022-03-16 05:44:02,384 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:02,506 - stpipe.JumpStep - INFO - Working on integration 110:
2022-03-16 05:44:02,785 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:02,787 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1263 pixels with at least one CR and three groups
2022-03-16 05:44:02,788 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:02,914 - stpipe.JumpStep - INFO - Working on integration 111:
2022-03-16 05:44:03,209 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:03,211 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1267 pixels with at least one CR and three groups
2022-03-16 05:44:03,212 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:03,340 - stpipe.JumpStep - INFO - Working on integration 112:
2022-03-16 05:44:03,618 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:03,619 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1295 pixels with at least one CR and three groups
2022-03-16 05:44:03,621 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:03,753 - stpipe.JumpStep - INFO - Working on integration 113:
2022-03-16 05:44:04,030 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:04,032 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1286 pixels with at least one CR and three groups
2022-03-16 05:44:04,033 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:04,170 - stpipe.JumpStep - INFO - Working on integration 114:
2022-03-16 05:44:04,456 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:04,459 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1313 pixels with at least one CR and three groups
2022-03-16 05:44:04,460 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:04,603 - stpipe.JumpStep - INFO - Working on integration 115:
2022-03-16 05:44:04,879 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:04,881 - stpipe.JumpStep - INFO - From highest outlier Two-point found 994 pixels with at least one CR and three groups
2022-03-16 05:44:04,882 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:44:04,996 - stpipe.JumpStep - INFO - Working on integration 116:
2022-03-16 05:44:05,277 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:05,278 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1242 pixels with at least one CR and three groups
2022-03-16 05:44:05,280 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:05,416 - stpipe.JumpStep - INFO - Working on integration 117:
2022-03-16 05:44:05,702 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:05,704 - stpipe.JumpStep - INFO - From highest outlier Two-point found 977 pixels with at least one CR and three groups
2022-03-16 05:44:05,706 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:05,817 - stpipe.JumpStep - INFO - Working on integration 118:
2022-03-16 05:44:06,100 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:06,101 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1161 pixels with at least one CR and three groups
2022-03-16 05:44:06,103 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:06,223 - stpipe.JumpStep - INFO - Working on integration 119:
2022-03-16 05:44:06,504 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:06,506 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1305 pixels with at least one CR and three groups
2022-03-16 05:44:06,507 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:06,638 - stpipe.JumpStep - INFO - Working on integration 120:
2022-03-16 05:44:06,916 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:06,918 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 05:44:06,919 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:07,044 - stpipe.JumpStep - INFO - Working on integration 121:
2022-03-16 05:44:07,334 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:07,336 - stpipe.JumpStep - INFO - From highest outlier Two-point found 999 pixels with at least one CR and three groups
2022-03-16 05:44:07,337 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:07,452 - stpipe.JumpStep - INFO - Working on integration 122:
2022-03-16 05:44:07,724 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:07,726 - stpipe.JumpStep - INFO - From highest outlier Two-point found 949 pixels with at least one CR and three groups
2022-03-16 05:44:07,727 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:07,837 - stpipe.JumpStep - INFO - Working on integration 123:
2022-03-16 05:44:08,122 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:08,124 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1195 pixels with at least one CR and three groups
2022-03-16 05:44:08,126 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:44:08,257 - stpipe.JumpStep - INFO - Working on integration 124:
2022-03-16 05:44:08,524 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:08,526 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1143 pixels with at least one CR and three groups
2022-03-16 05:44:08,527 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:08,642 - stpipe.JumpStep - INFO - Working on integration 125:
2022-03-16 05:44:08,924 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:08,926 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1252 pixels with at least one CR and three groups
2022-03-16 05:44:08,927 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:09,051 - stpipe.JumpStep - INFO - Working on integration 126:
2022-03-16 05:44:09,326 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:09,327 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1010 pixels with at least one CR and three groups
2022-03-16 05:44:09,328 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:09,433 - stpipe.JumpStep - INFO - Working on integration 127:
2022-03-16 05:44:09,712 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:09,713 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1258 pixels with at least one CR and three groups
2022-03-16 05:44:09,714 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:09,845 - stpipe.JumpStep - INFO - Working on integration 128:
2022-03-16 05:44:10,120 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:10,121 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1266 pixels with at least one CR and three groups
2022-03-16 05:44:10,123 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 05:44:10,255 - stpipe.JumpStep - INFO - Working on integration 129:
2022-03-16 05:44:10,550 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:10,551 - stpipe.JumpStep - INFO - From highest outlier Two-point found 965 pixels with at least one CR and three groups
2022-03-16 05:44:10,552 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 05:44:10,663 - stpipe.JumpStep - INFO - Working on integration 130:
2022-03-16 05:44:10,943 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:10,945 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1254 pixels with at least one CR and three groups
2022-03-16 05:44:10,946 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:11,071 - stpipe.JumpStep - INFO - Working on integration 131:
2022-03-16 05:44:11,354 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:11,355 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1168 pixels with at least one CR and three groups
2022-03-16 05:44:11,357 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:11,473 - stpipe.JumpStep - INFO - Working on integration 132:
2022-03-16 05:44:11,745 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:11,747 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1242 pixels with at least one CR and three groups
2022-03-16 05:44:11,748 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 05:44:11,871 - stpipe.JumpStep - INFO - Working on integration 133:
2022-03-16 05:44:12,159 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:12,160 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1221 pixels with at least one CR and three groups
2022-03-16 05:44:12,162 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:12,288 - stpipe.JumpStep - INFO - Working on integration 134:
2022-03-16 05:44:12,565 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:12,566 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1294 pixels with at least one CR and three groups
2022-03-16 05:44:12,567 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:12,696 - stpipe.JumpStep - INFO - Working on integration 135:
2022-03-16 05:44:12,974 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:12,975 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1175 pixels with at least one CR and three groups
2022-03-16 05:44:12,976 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:13,105 - stpipe.JumpStep - INFO - Working on integration 136:
2022-03-16 05:44:13,388 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:13,390 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1160 pixels with at least one CR and three groups
2022-03-16 05:44:13,391 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:44:13,507 - stpipe.JumpStep - INFO - Working on integration 137:
2022-03-16 05:44:13,806 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:13,807 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1257 pixels with at least one CR and three groups
2022-03-16 05:44:13,808 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:13,932 - stpipe.JumpStep - INFO - Working on integration 138:
2022-03-16 05:44:14,205 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:14,207 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1320 pixels with at least one CR and three groups
2022-03-16 05:44:14,208 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:44:14,348 - stpipe.JumpStep - INFO - Working on integration 139:
2022-03-16 05:44:14,642 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:14,644 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1316 pixels with at least one CR and three groups
2022-03-16 05:44:14,645 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:44:14,778 - stpipe.JumpStep - INFO - Working on integration 140:
2022-03-16 05:44:15,057 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:15,058 - stpipe.JumpStep - INFO - From highest outlier Two-point found 979 pixels with at least one CR and three groups
2022-03-16 05:44:15,059 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:15,161 - stpipe.JumpStep - INFO - Working on integration 141:
2022-03-16 05:44:15,449 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:15,451 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1295 pixels with at least one CR and three groups
2022-03-16 05:44:15,452 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:15,581 - stpipe.JumpStep - INFO - Working on integration 142:
2022-03-16 05:44:15,853 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:15,855 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1257 pixels with at least one CR and three groups
2022-03-16 05:44:15,856 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:15,981 - stpipe.JumpStep - INFO - Working on integration 143:
2022-03-16 05:44:16,268 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:16,269 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1021 pixels with at least one CR and three groups
2022-03-16 05:44:16,271 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:16,386 - stpipe.JumpStep - INFO - Working on integration 144:
2022-03-16 05:44:16,660 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:16,662 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1259 pixels with at least one CR and three groups
2022-03-16 05:44:16,663 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:16,788 - stpipe.JumpStep - INFO - Working on integration 145:
2022-03-16 05:44:17,080 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:17,081 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1292 pixels with at least one CR and three groups
2022-03-16 05:44:17,083 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:17,215 - stpipe.JumpStep - INFO - Working on integration 146:
2022-03-16 05:44:17,489 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:17,490 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1282 pixels with at least one CR and three groups
2022-03-16 05:44:17,491 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:17,619 - stpipe.JumpStep - INFO - Working on integration 147:
2022-03-16 05:44:17,914 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:17,916 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1211 pixels with at least one CR and three groups
2022-03-16 05:44:17,917 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:18,038 - stpipe.JumpStep - INFO - Working on integration 148:
2022-03-16 05:44:18,322 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:18,323 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1196 pixels with at least one CR and three groups
2022-03-16 05:44:18,324 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:18,447 - stpipe.JumpStep - INFO - Working on integration 149:
2022-03-16 05:44:18,733 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:18,734 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1283 pixels with at least one CR and three groups
2022-03-16 05:44:18,736 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:18,863 - stpipe.JumpStep - INFO - Working on integration 150:
2022-03-16 05:44:19,140 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:19,142 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1326 pixels with at least one CR and three groups
2022-03-16 05:44:19,143 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 05:44:19,273 - stpipe.JumpStep - INFO - Working on integration 151:
2022-03-16 05:44:19,553 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:19,555 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1028 pixels with at least one CR and three groups
2022-03-16 05:44:19,556 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:19,662 - stpipe.JumpStep - INFO - Working on integration 152:
2022-03-16 05:44:19,935 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:19,937 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1316 pixels with at least one CR and three groups
2022-03-16 05:44:19,938 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:20,072 - stpipe.JumpStep - INFO - Working on integration 153:
2022-03-16 05:44:20,354 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:20,355 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1188 pixels with at least one CR and three groups
2022-03-16 05:44:20,356 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:44:20,484 - stpipe.JumpStep - INFO - Working on integration 154:
2022-03-16 05:44:20,763 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:20,764 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1256 pixels with at least one CR and three groups
2022-03-16 05:44:20,766 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:20,890 - stpipe.JumpStep - INFO - Working on integration 155:
2022-03-16 05:44:21,180 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:21,182 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1310 pixels with at least one CR and three groups
2022-03-16 05:44:21,184 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:21,312 - stpipe.JumpStep - INFO - Working on integration 156:
2022-03-16 05:44:21,592 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:21,593 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1265 pixels with at least one CR and three groups
2022-03-16 05:44:21,594 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:21,721 - stpipe.JumpStep - INFO - Working on integration 157:
2022-03-16 05:44:22,006 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:22,008 - stpipe.JumpStep - INFO - From highest outlier Two-point found 943 pixels with at least one CR and three groups
2022-03-16 05:44:22,009 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:22,108 - stpipe.JumpStep - INFO - Working on integration 158:
2022-03-16 05:44:22,381 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:22,383 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1278 pixels with at least one CR and three groups
2022-03-16 05:44:22,384 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:22,517 - stpipe.JumpStep - INFO - Working on integration 159:
2022-03-16 05:44:22,795 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:22,797 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1313 pixels with at least one CR and three groups
2022-03-16 05:44:22,798 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:22,926 - stpipe.JumpStep - INFO - Working on integration 160:
2022-03-16 05:44:23,208 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:23,209 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1324 pixels with at least one CR and three groups
2022-03-16 05:44:23,211 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 05:44:23,345 - stpipe.JumpStep - INFO - Working on integration 161:
2022-03-16 05:44:23,641 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:23,642 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1311 pixels with at least one CR and three groups
2022-03-16 05:44:23,643 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:23,785 - stpipe.JumpStep - INFO - Working on integration 162:
2022-03-16 05:44:24,064 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:24,066 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1366 pixels with at least one CR and three groups
2022-03-16 05:44:24,067 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:24,215 - stpipe.JumpStep - INFO - Working on integration 163:
2022-03-16 05:44:24,500 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:24,501 - stpipe.JumpStep - INFO - From highest outlier Two-point found 966 pixels with at least one CR and three groups
2022-03-16 05:44:24,503 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 05:44:24,603 - stpipe.JumpStep - INFO - Working on integration 164:
2022-03-16 05:44:24,870 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:24,871 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1175 pixels with at least one CR and three groups
2022-03-16 05:44:24,873 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 05:44:24,991 - stpipe.JumpStep - INFO - Working on integration 165:
2022-03-16 05:44:25,272 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:25,273 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1217 pixels with at least one CR and three groups
2022-03-16 05:44:25,275 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:25,396 - stpipe.JumpStep - INFO - Working on integration 166:
2022-03-16 05:44:25,671 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:25,672 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1240 pixels with at least one CR and three groups
2022-03-16 05:44:25,674 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 05:44:25,804 - stpipe.JumpStep - INFO - Working on integration 167:
2022-03-16 05:44:26,092 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:26,094 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1315 pixels with at least one CR and three groups
2022-03-16 05:44:26,095 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:26,224 - stpipe.JumpStep - INFO - Working on integration 168:
2022-03-16 05:44:26,510 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:26,511 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1220 pixels with at least one CR and three groups
2022-03-16 05:44:26,513 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:26,636 - stpipe.JumpStep - INFO - Working on integration 169:
2022-03-16 05:44:26,915 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:26,917 - stpipe.JumpStep - INFO - From highest outlier Two-point found 987 pixels with at least one CR and three groups
2022-03-16 05:44:26,919 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 05:44:27,021 - stpipe.JumpStep - INFO - Working on integration 170:
2022-03-16 05:44:27,286 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:27,287 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1237 pixels with at least one CR and three groups
2022-03-16 05:44:27,288 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:27,411 - stpipe.JumpStep - INFO - Working on integration 171:
2022-03-16 05:44:27,696 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:27,698 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1202 pixels with at least one CR and three groups
2022-03-16 05:44:27,699 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:44:27,820 - stpipe.JumpStep - INFO - Working on integration 172:
2022-03-16 05:44:28,095 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:28,096 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1302 pixels with at least one CR and three groups
2022-03-16 05:44:28,097 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:28,227 - stpipe.JumpStep - INFO - Working on integration 173:
2022-03-16 05:44:28,508 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:28,510 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1292 pixels with at least one CR and three groups
2022-03-16 05:44:28,511 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:28,639 - stpipe.JumpStep - INFO - Working on integration 174:
2022-03-16 05:44:28,936 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:28,938 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1256 pixels with at least one CR and three groups
2022-03-16 05:44:28,940 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:29,065 - stpipe.JumpStep - INFO - Working on integration 175:
2022-03-16 05:44:29,337 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:29,339 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1212 pixels with at least one CR and three groups
2022-03-16 05:44:29,340 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:44:29,462 - stpipe.JumpStep - INFO - Working on integration 176:
2022-03-16 05:44:29,739 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:29,740 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1252 pixels with at least one CR and three groups
2022-03-16 05:44:29,741 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:29,866 - stpipe.JumpStep - INFO - Working on integration 177:
2022-03-16 05:44:30,151 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:30,153 - stpipe.JumpStep - INFO - From highest outlier Two-point found 979 pixels with at least one CR and three groups
2022-03-16 05:44:30,154 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:30,267 - stpipe.JumpStep - INFO - Working on integration 178:
2022-03-16 05:44:30,563 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:30,564 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1228 pixels with at least one CR and three groups
2022-03-16 05:44:30,566 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:30,701 - stpipe.JumpStep - INFO - Working on integration 179:
2022-03-16 05:44:30,971 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:30,973 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1261 pixels with at least one CR and three groups
2022-03-16 05:44:30,974 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:31,099 - stpipe.JumpStep - INFO - Working on integration 180:
2022-03-16 05:44:31,389 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:31,391 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1226 pixels with at least one CR and three groups
2022-03-16 05:44:31,393 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:31,515 - stpipe.JumpStep - INFO - Working on integration 181:
2022-03-16 05:44:31,806 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:31,807 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1300 pixels with at least one CR and three groups
2022-03-16 05:44:31,809 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:31,944 - stpipe.JumpStep - INFO - Working on integration 182:
2022-03-16 05:44:32,227 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:32,229 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1211 pixels with at least one CR and three groups
2022-03-16 05:44:32,230 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:32,351 - stpipe.JumpStep - INFO - Working on integration 183:
2022-03-16 05:44:32,632 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:32,634 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1309 pixels with at least one CR and three groups
2022-03-16 05:44:32,635 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:32,765 - stpipe.JumpStep - INFO - Working on integration 184:
2022-03-16 05:44:33,045 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:33,047 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1258 pixels with at least one CR and three groups
2022-03-16 05:44:33,048 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:44:33,173 - stpipe.JumpStep - INFO - Working on integration 185:
2022-03-16 05:44:33,448 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:33,450 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1246 pixels with at least one CR and three groups
2022-03-16 05:44:33,451 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:44:33,583 - stpipe.JumpStep - INFO - Working on integration 186:
2022-03-16 05:44:33,866 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:33,868 - stpipe.JumpStep - INFO - From highest outlier Two-point found 940 pixels with at least one CR and three groups
2022-03-16 05:44:33,869 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:33,968 - stpipe.JumpStep - INFO - Working on integration 187:
2022-03-16 05:44:34,244 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:34,245 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1240 pixels with at least one CR and three groups
2022-03-16 05:44:34,247 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:34,372 - stpipe.JumpStep - INFO - Working on integration 188:
2022-03-16 05:44:34,644 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:34,646 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1287 pixels with at least one CR and three groups
2022-03-16 05:44:34,647 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:34,774 - stpipe.JumpStep - INFO - Working on integration 189:
2022-03-16 05:44:35,046 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:35,048 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1373 pixels with at least one CR and three groups
2022-03-16 05:44:35,049 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:35,183 - stpipe.JumpStep - INFO - Working on integration 190:
2022-03-16 05:44:35,467 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:35,469 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1255 pixels with at least one CR and three groups
2022-03-16 05:44:35,470 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:35,597 - stpipe.JumpStep - INFO - Working on integration 191:
2022-03-16 05:44:35,860 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:35,862 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1319 pixels with at least one CR and three groups
2022-03-16 05:44:35,863 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 05:44:36,012 - stpipe.JumpStep - INFO - Working on integration 192:
2022-03-16 05:44:36,311 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:36,313 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1277 pixels with at least one CR and three groups
2022-03-16 05:44:36,314 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:36,441 - stpipe.JumpStep - INFO - Working on integration 193:
2022-03-16 05:44:36,731 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:36,732 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1162 pixels with at least one CR and three groups
2022-03-16 05:44:36,733 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:36,850 - stpipe.JumpStep - INFO - Working on integration 194:
2022-03-16 05:44:37,127 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:37,128 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1222 pixels with at least one CR and three groups
2022-03-16 05:44:37,130 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:37,253 - stpipe.JumpStep - INFO - Working on integration 195:
2022-03-16 05:44:37,530 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:37,531 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1303 pixels with at least one CR and three groups
2022-03-16 05:44:37,532 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:37,662 - stpipe.JumpStep - INFO - Working on integration 196:
2022-03-16 05:44:37,941 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:37,943 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1194 pixels with at least one CR and three groups
2022-03-16 05:44:37,944 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:44:38,064 - stpipe.JumpStep - INFO - Working on integration 197:
2022-03-16 05:44:38,332 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:38,334 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1242 pixels with at least one CR and three groups
2022-03-16 05:44:38,335 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:38,459 - stpipe.JumpStep - INFO - Working on integration 198:
2022-03-16 05:44:38,741 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:38,742 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1305 pixels with at least one CR and three groups
2022-03-16 05:44:38,744 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:38,872 - stpipe.JumpStep - INFO - Working on integration 199:
2022-03-16 05:44:39,147 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:39,149 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1224 pixels with at least one CR and three groups
2022-03-16 05:44:39,150 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:39,272 - stpipe.JumpStep - INFO - Working on integration 200:
2022-03-16 05:44:39,559 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:39,560 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1295 pixels with at least one CR and three groups
2022-03-16 05:44:39,562 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:39,699 - stpipe.JumpStep - INFO - Working on integration 201:
2022-03-16 05:44:39,976 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:39,978 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1165 pixels with at least one CR and three groups
2022-03-16 05:44:39,979 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:44:40,098 - stpipe.JumpStep - INFO - Working on integration 202:
2022-03-16 05:44:40,368 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:40,369 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1218 pixels with at least one CR and three groups
2022-03-16 05:44:40,371 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:40,493 - stpipe.JumpStep - INFO - Working on integration 203:
2022-03-16 05:44:40,779 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:40,780 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1297 pixels with at least one CR and three groups
2022-03-16 05:44:40,782 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:40,909 - stpipe.JumpStep - INFO - Working on integration 204:
2022-03-16 05:44:41,184 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:41,187 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1263 pixels with at least one CR and three groups
2022-03-16 05:44:41,188 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:41,313 - stpipe.JumpStep - INFO - Working on integration 205:
2022-03-16 05:44:41,590 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:41,592 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1183 pixels with at least one CR and three groups
2022-03-16 05:44:41,593 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:44:41,714 - stpipe.JumpStep - INFO - Working on integration 206:
2022-03-16 05:44:41,990 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:41,992 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1286 pixels with at least one CR and three groups
2022-03-16 05:44:41,993 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:42,137 - stpipe.JumpStep - INFO - Working on integration 207:
2022-03-16 05:44:42,414 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:42,415 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1010 pixels with at least one CR and three groups
2022-03-16 05:44:42,416 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:42,521 - stpipe.JumpStep - INFO - Working on integration 208:
2022-03-16 05:44:42,806 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:42,808 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1282 pixels with at least one CR and three groups
2022-03-16 05:44:42,809 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:42,936 - stpipe.JumpStep - INFO - Working on integration 209:
2022-03-16 05:44:43,216 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:43,217 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1244 pixels with at least one CR and three groups
2022-03-16 05:44:43,218 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:43,342 - stpipe.JumpStep - INFO - Working on integration 210:
2022-03-16 05:44:43,612 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:43,614 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1234 pixels with at least one CR and three groups
2022-03-16 05:44:43,615 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 05:44:43,741 - stpipe.JumpStep - INFO - Working on integration 211:
2022-03-16 05:44:44,015 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:44,017 - stpipe.JumpStep - INFO - From highest outlier Two-point found 941 pixels with at least one CR and three groups
2022-03-16 05:44:44,018 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:44,117 - stpipe.JumpStep - INFO - Working on integration 212:
2022-03-16 05:44:44,384 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:44,386 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1246 pixels with at least one CR and three groups
2022-03-16 05:44:44,387 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:44,511 - stpipe.JumpStep - INFO - Working on integration 213:
2022-03-16 05:44:44,792 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:44,793 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1182 pixels with at least one CR and three groups
2022-03-16 05:44:44,794 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:44,912 - stpipe.JumpStep - INFO - Working on integration 214:
2022-03-16 05:44:45,191 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:45,192 - stpipe.JumpStep - INFO - From highest outlier Two-point found 999 pixels with at least one CR and three groups
2022-03-16 05:44:45,193 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:45,297 - stpipe.JumpStep - INFO - Working on integration 215:
2022-03-16 05:44:45,567 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:45,569 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1168 pixels with at least one CR and three groups
2022-03-16 05:44:45,570 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:45,687 - stpipe.JumpStep - INFO - Working on integration 216:
2022-03-16 05:44:45,960 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:45,961 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1305 pixels with at least one CR and three groups
2022-03-16 05:44:45,962 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:46,105 - stpipe.JumpStep - INFO - Working on integration 217:
2022-03-16 05:44:46,392 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:46,394 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1174 pixels with at least one CR and three groups
2022-03-16 05:44:46,395 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:44:46,513 - stpipe.JumpStep - INFO - Working on integration 218:
2022-03-16 05:44:46,783 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:46,785 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1270 pixels with at least one CR and three groups
2022-03-16 05:44:46,786 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:46,921 - stpipe.JumpStep - INFO - Working on integration 219:
2022-03-16 05:44:47,213 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:47,214 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1219 pixels with at least one CR and three groups
2022-03-16 05:44:47,215 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:44:47,337 - stpipe.JumpStep - INFO - Working on integration 220:
2022-03-16 05:44:47,617 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:47,619 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1357 pixels with at least one CR and three groups
2022-03-16 05:44:47,620 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:47,755 - stpipe.JumpStep - INFO - Working on integration 221:
2022-03-16 05:44:48,035 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:48,036 - stpipe.JumpStep - INFO - From highest outlier Two-point found 961 pixels with at least one CR and three groups
2022-03-16 05:44:48,037 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:48,138 - stpipe.JumpStep - INFO - Working on integration 222:
2022-03-16 05:44:48,415 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:48,417 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1335 pixels with at least one CR and three groups
2022-03-16 05:44:48,418 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:48,550 - stpipe.JumpStep - INFO - Working on integration 223:
2022-03-16 05:44:48,818 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:48,819 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1009 pixels with at least one CR and three groups
2022-03-16 05:44:48,821 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:44:48,928 - stpipe.JumpStep - INFO - Working on integration 224:
2022-03-16 05:44:49,203 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:49,205 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1254 pixels with at least one CR and three groups
2022-03-16 05:44:49,206 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:49,331 - stpipe.JumpStep - INFO - Working on integration 225:
2022-03-16 05:44:49,613 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:49,614 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1248 pixels with at least one CR and three groups
2022-03-16 05:44:49,615 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:49,751 - stpipe.JumpStep - INFO - Working on integration 226:
2022-03-16 05:44:50,032 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:50,034 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1295 pixels with at least one CR and three groups
2022-03-16 05:44:50,035 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:50,162 - stpipe.JumpStep - INFO - Working on integration 227:
2022-03-16 05:44:50,458 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:50,460 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1199 pixels with at least one CR and three groups
2022-03-16 05:44:50,461 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:50,579 - stpipe.JumpStep - INFO - Working on integration 228:
2022-03-16 05:44:50,845 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:50,847 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1198 pixels with at least one CR and three groups
2022-03-16 05:44:50,848 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:50,974 - stpipe.JumpStep - INFO - Working on integration 229:
2022-03-16 05:44:51,260 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:51,262 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1156 pixels with at least one CR and three groups
2022-03-16 05:44:51,263 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 05:44:51,391 - stpipe.JumpStep - INFO - Working on integration 230:
2022-03-16 05:44:51,667 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:51,668 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1316 pixels with at least one CR and three groups
2022-03-16 05:44:51,671 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:51,801 - stpipe.JumpStep - INFO - Working on integration 231:
2022-03-16 05:44:52,078 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:52,081 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1301 pixels with at least one CR and three groups
2022-03-16 05:44:52,082 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:52,211 - stpipe.JumpStep - INFO - Working on integration 232:
2022-03-16 05:44:52,484 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:52,485 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1203 pixels with at least one CR and three groups
2022-03-16 05:44:52,487 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:44:52,607 - stpipe.JumpStep - INFO - Working on integration 233:
2022-03-16 05:44:52,901 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:52,902 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1229 pixels with at least one CR and three groups
2022-03-16 05:44:52,903 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:53,026 - stpipe.JumpStep - INFO - Working on integration 234:
2022-03-16 05:44:53,326 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:53,327 - stpipe.JumpStep - INFO - From highest outlier Two-point found 931 pixels with at least one CR and three groups
2022-03-16 05:44:53,328 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:44:53,426 - stpipe.JumpStep - INFO - Working on integration 235:
2022-03-16 05:44:53,698 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:53,700 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1283 pixels with at least one CR and three groups
2022-03-16 05:44:53,701 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:53,832 - stpipe.JumpStep - INFO - Working on integration 236:
2022-03-16 05:44:54,110 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:54,112 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1268 pixels with at least one CR and three groups
2022-03-16 05:44:54,113 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:54,240 - stpipe.JumpStep - INFO - Working on integration 237:
2022-03-16 05:44:54,521 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:54,522 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1238 pixels with at least one CR and three groups
2022-03-16 05:44:54,523 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:54,647 - stpipe.JumpStep - INFO - Working on integration 238:
2022-03-16 05:44:54,915 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:54,916 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1125 pixels with at least one CR and three groups
2022-03-16 05:44:54,917 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:55,044 - stpipe.JumpStep - INFO - Working on integration 239:
2022-03-16 05:44:55,326 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:55,328 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1013 pixels with at least one CR and three groups
2022-03-16 05:44:55,329 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:55,435 - stpipe.JumpStep - INFO - Working on integration 240:
2022-03-16 05:44:55,711 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:55,713 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1243 pixels with at least one CR and three groups
2022-03-16 05:44:55,715 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 05:44:55,842 - stpipe.JumpStep - INFO - Working on integration 241:
2022-03-16 05:44:56,108 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:56,110 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1296 pixels with at least one CR and three groups
2022-03-16 05:44:56,111 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:44:56,239 - stpipe.JumpStep - INFO - Working on integration 242:
2022-03-16 05:44:56,539 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:56,540 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1299 pixels with at least one CR and three groups
2022-03-16 05:44:56,541 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:44:56,670 - stpipe.JumpStep - INFO - Working on integration 243:
2022-03-16 05:44:56,945 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:56,947 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1289 pixels with at least one CR and three groups
2022-03-16 05:44:56,948 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:44:57,075 - stpipe.JumpStep - INFO - Working on integration 244:
2022-03-16 05:44:57,350 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:57,352 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1249 pixels with at least one CR and three groups
2022-03-16 05:44:57,353 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 05:44:57,476 - stpipe.JumpStep - INFO - Working on integration 245:
2022-03-16 05:44:57,756 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:57,757 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1220 pixels with at least one CR and three groups
2022-03-16 05:44:57,758 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:57,886 - stpipe.JumpStep - INFO - Working on integration 246:
2022-03-16 05:44:58,179 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:58,180 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1188 pixels with at least one CR and three groups
2022-03-16 05:44:58,181 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:44:58,301 - stpipe.JumpStep - INFO - Working on integration 247:
2022-03-16 05:44:58,586 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:58,587 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1130 pixels with at least one CR and three groups
2022-03-16 05:44:58,589 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:44:58,703 - stpipe.JumpStep - INFO - Working on integration 248:
2022-03-16 05:44:58,970 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:58,971 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1258 pixels with at least one CR and three groups
2022-03-16 05:44:58,973 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:44:59,099 - stpipe.JumpStep - INFO - Working on integration 249:
2022-03-16 05:44:59,381 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:59,383 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1175 pixels with at least one CR and three groups
2022-03-16 05:44:59,384 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 05:44:59,502 - stpipe.JumpStep - INFO - Working on integration 250:
2022-03-16 05:44:59,773 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:44:59,775 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1262 pixels with at least one CR and three groups
2022-03-16 05:44:59,776 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:44:59,903 - stpipe.JumpStep - INFO - Working on integration 251:
2022-03-16 05:45:00,172 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:00,174 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1372 pixels with at least one CR and three groups
2022-03-16 05:45:00,175 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:00,308 - stpipe.JumpStep - INFO - Working on integration 252:
2022-03-16 05:45:00,589 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:00,590 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1234 pixels with at least one CR and three groups
2022-03-16 05:45:00,591 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:00,714 - stpipe.JumpStep - INFO - Working on integration 253:
2022-03-16 05:45:00,984 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:00,986 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1211 pixels with at least one CR and three groups
2022-03-16 05:45:00,987 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:45:01,107 - stpipe.JumpStep - INFO - Working on integration 254:
2022-03-16 05:45:01,384 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:01,385 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1308 pixels with at least one CR and three groups
2022-03-16 05:45:01,386 - stpipe.JumpStep - INFO - From highest outlier Two-point found 68 pixels with at least one CR and two groups
2022-03-16 05:45:01,516 - stpipe.JumpStep - INFO - Working on integration 255:
2022-03-16 05:45:01,798 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:01,800 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1251 pixels with at least one CR and three groups
2022-03-16 05:45:01,801 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 05:45:01,931 - stpipe.JumpStep - INFO - Working on integration 256:
2022-03-16 05:45:02,210 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:02,212 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1251 pixels with at least one CR and three groups
2022-03-16 05:45:02,213 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:02,338 - stpipe.JumpStep - INFO - Working on integration 257:
2022-03-16 05:45:02,610 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:02,612 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1278 pixels with at least one CR and three groups
2022-03-16 05:45:02,614 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:02,740 - stpipe.JumpStep - INFO - Working on integration 258:
2022-03-16 05:45:03,013 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:03,015 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1306 pixels with at least one CR and three groups
2022-03-16 05:45:03,016 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:03,148 - stpipe.JumpStep - INFO - Working on integration 259:
2022-03-16 05:45:03,430 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:03,432 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1247 pixels with at least one CR and three groups
2022-03-16 05:45:03,433 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:03,570 - stpipe.JumpStep - INFO - Working on integration 260:
2022-03-16 05:45:03,850 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:03,852 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1267 pixels with at least one CR and three groups
2022-03-16 05:45:03,853 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:03,979 - stpipe.JumpStep - INFO - Working on integration 261:
2022-03-16 05:45:04,251 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:04,253 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1304 pixels with at least one CR and three groups
2022-03-16 05:45:04,254 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:04,383 - stpipe.JumpStep - INFO - Working on integration 262:
2022-03-16 05:45:04,669 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:04,670 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1174 pixels with at least one CR and three groups
2022-03-16 05:45:04,671 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:04,802 - stpipe.JumpStep - INFO - Working on integration 263:
2022-03-16 05:45:05,102 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:05,104 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1326 pixels with at least one CR and three groups
2022-03-16 05:45:05,106 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:05,240 - stpipe.JumpStep - INFO - Working on integration 264:
2022-03-16 05:45:05,534 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:05,536 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1016 pixels with at least one CR and three groups
2022-03-16 05:45:05,537 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:45:05,644 - stpipe.JumpStep - INFO - Working on integration 265:
2022-03-16 05:45:05,927 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:05,929 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1297 pixels with at least one CR and three groups
2022-03-16 05:45:05,930 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:06,059 - stpipe.JumpStep - INFO - Working on integration 266:
2022-03-16 05:45:06,334 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:06,335 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1197 pixels with at least one CR and three groups
2022-03-16 05:45:06,337 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:45:06,468 - stpipe.JumpStep - INFO - Working on integration 267:
2022-03-16 05:45:06,758 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:06,759 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1289 pixels with at least one CR and three groups
2022-03-16 05:45:06,760 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:06,888 - stpipe.JumpStep - INFO - Working on integration 268:
2022-03-16 05:45:07,172 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:07,173 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1317 pixels with at least one CR and three groups
2022-03-16 05:45:07,175 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:07,306 - stpipe.JumpStep - INFO - Working on integration 269:
2022-03-16 05:45:07,584 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:07,586 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1289 pixels with at least one CR and three groups
2022-03-16 05:45:07,587 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:45:07,731 - stpipe.JumpStep - INFO - Working on integration 270:
2022-03-16 05:45:08,033 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:08,035 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1266 pixels with at least one CR and three groups
2022-03-16 05:45:08,036 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:08,162 - stpipe.JumpStep - INFO - Working on integration 271:
2022-03-16 05:45:08,437 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:08,439 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1275 pixels with at least one CR and three groups
2022-03-16 05:45:08,440 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:45:08,566 - stpipe.JumpStep - INFO - Working on integration 272:
2022-03-16 05:45:08,854 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:08,855 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1288 pixels with at least one CR and three groups
2022-03-16 05:45:08,856 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:08,998 - stpipe.JumpStep - INFO - Working on integration 273:
2022-03-16 05:45:09,278 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:09,280 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1257 pixels with at least one CR and three groups
2022-03-16 05:45:09,281 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:09,407 - stpipe.JumpStep - INFO - Working on integration 274:
2022-03-16 05:45:09,676 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:09,678 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1213 pixels with at least one CR and three groups
2022-03-16 05:45:09,679 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:09,802 - stpipe.JumpStep - INFO - Working on integration 275:
2022-03-16 05:45:10,090 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:10,092 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1151 pixels with at least one CR and three groups
2022-03-16 05:45:10,094 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:45:10,209 - stpipe.JumpStep - INFO - Working on integration 276:
2022-03-16 05:45:10,486 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:10,488 - stpipe.JumpStep - INFO - From highest outlier Two-point found 928 pixels with at least one CR and three groups
2022-03-16 05:45:10,489 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:10,586 - stpipe.JumpStep - INFO - Working on integration 277:
2022-03-16 05:45:10,888 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:10,890 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1193 pixels with at least one CR and three groups
2022-03-16 05:45:10,891 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:11,018 - stpipe.JumpStep - INFO - Working on integration 278:
2022-03-16 05:45:11,308 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:11,309 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1231 pixels with at least one CR and three groups
2022-03-16 05:45:11,310 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:11,448 - stpipe.JumpStep - INFO - Working on integration 279:
2022-03-16 05:45:11,740 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:11,742 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1242 pixels with at least one CR and three groups
2022-03-16 05:45:11,743 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:11,880 - stpipe.JumpStep - INFO - Working on integration 280:
2022-03-16 05:45:12,165 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:12,166 - stpipe.JumpStep - INFO - From highest outlier Two-point found 992 pixels with at least one CR and three groups
2022-03-16 05:45:12,168 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:12,272 - stpipe.JumpStep - INFO - Working on integration 281:
2022-03-16 05:45:12,553 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:12,554 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1262 pixels with at least one CR and three groups
2022-03-16 05:45:12,556 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 05:45:12,681 - stpipe.JumpStep - INFO - Working on integration 282:
2022-03-16 05:45:12,962 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:12,964 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1229 pixels with at least one CR and three groups
2022-03-16 05:45:12,965 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:13,091 - stpipe.JumpStep - INFO - Working on integration 283:
2022-03-16 05:45:13,368 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:13,370 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1312 pixels with at least one CR and three groups
2022-03-16 05:45:13,371 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:13,502 - stpipe.JumpStep - INFO - Working on integration 284:
2022-03-16 05:45:13,784 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:13,786 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1308 pixels with at least one CR and three groups
2022-03-16 05:45:13,787 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:13,917 - stpipe.JumpStep - INFO - Working on integration 285:
2022-03-16 05:45:14,197 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:14,198 - stpipe.JumpStep - INFO - From highest outlier Two-point found 973 pixels with at least one CR and three groups
2022-03-16 05:45:14,199 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:14,302 - stpipe.JumpStep - INFO - Working on integration 286:
2022-03-16 05:45:14,568 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:14,569 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1231 pixels with at least one CR and three groups
2022-03-16 05:45:14,571 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:14,694 - stpipe.JumpStep - INFO - Working on integration 287:
2022-03-16 05:45:14,974 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:14,975 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1236 pixels with at least one CR and three groups
2022-03-16 05:45:14,977 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:15,112 - stpipe.JumpStep - INFO - Working on integration 288:
2022-03-16 05:45:15,383 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:15,386 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1277 pixels with at least one CR and three groups
2022-03-16 05:45:15,387 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:15,514 - stpipe.JumpStep - INFO - Working on integration 289:
2022-03-16 05:45:15,801 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:15,802 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1272 pixels with at least one CR and three groups
2022-03-16 05:45:15,803 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:15,930 - stpipe.JumpStep - INFO - Working on integration 290:
2022-03-16 05:45:16,221 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:16,222 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1382 pixels with at least one CR and three groups
2022-03-16 05:45:16,223 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:16,360 - stpipe.JumpStep - INFO - Working on integration 291:
2022-03-16 05:45:16,659 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:16,661 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1297 pixels with at least one CR and three groups
2022-03-16 05:45:16,662 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:16,804 - stpipe.JumpStep - INFO - Working on integration 292:
2022-03-16 05:45:17,096 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:17,097 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1320 pixels with at least one CR and three groups
2022-03-16 05:45:17,098 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:17,230 - stpipe.JumpStep - INFO - Working on integration 293:
2022-03-16 05:45:17,511 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:17,513 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1352 pixels with at least one CR and three groups
2022-03-16 05:45:17,514 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:17,656 - stpipe.JumpStep - INFO - Working on integration 294:
2022-03-16 05:45:17,948 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:17,950 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1210 pixels with at least one CR and three groups
2022-03-16 05:45:17,951 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:18,072 - stpipe.JumpStep - INFO - Working on integration 295:
2022-03-16 05:45:18,357 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:18,358 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1300 pixels with at least one CR and three groups
2022-03-16 05:45:18,359 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:18,495 - stpipe.JumpStep - INFO - Working on integration 296:
2022-03-16 05:45:18,775 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:18,777 - stpipe.JumpStep - INFO - From highest outlier Two-point found 929 pixels with at least one CR and three groups
2022-03-16 05:45:18,778 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:18,876 - stpipe.JumpStep - INFO - Working on integration 297:
2022-03-16 05:45:19,168 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:19,170 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1285 pixels with at least one CR and three groups
2022-03-16 05:45:19,171 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:45:19,300 - stpipe.JumpStep - INFO - Working on integration 298:
2022-03-16 05:45:19,580 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:19,582 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1294 pixels with at least one CR and three groups
2022-03-16 05:45:19,583 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:19,716 - stpipe.JumpStep - INFO - Working on integration 299:
2022-03-16 05:45:20,003 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:20,005 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1219 pixels with at least one CR and three groups
2022-03-16 05:45:20,007 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:20,132 - stpipe.JumpStep - INFO - Working on integration 300:
2022-03-16 05:45:20,422 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:20,423 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1245 pixels with at least one CR and three groups
2022-03-16 05:45:20,425 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:20,562 - stpipe.JumpStep - INFO - Working on integration 301:
2022-03-16 05:45:20,832 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:20,833 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1264 pixels with at least one CR and three groups
2022-03-16 05:45:20,834 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:20,960 - stpipe.JumpStep - INFO - Working on integration 302:
2022-03-16 05:45:21,242 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:21,244 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1327 pixels with at least one CR and three groups
2022-03-16 05:45:21,245 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:21,378 - stpipe.JumpStep - INFO - Working on integration 303:
2022-03-16 05:45:21,659 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:21,661 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1286 pixels with at least one CR and three groups
2022-03-16 05:45:21,662 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:21,790 - stpipe.JumpStep - INFO - Working on integration 304:
2022-03-16 05:45:22,085 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:22,087 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1267 pixels with at least one CR and three groups
2022-03-16 05:45:22,088 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:22,224 - stpipe.JumpStep - INFO - Working on integration 305:
2022-03-16 05:45:22,500 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:22,502 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1003 pixels with at least one CR and three groups
2022-03-16 05:45:22,503 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:22,608 - stpipe.JumpStep - INFO - Working on integration 306:
2022-03-16 05:45:22,888 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:22,889 - stpipe.JumpStep - INFO - From highest outlier Two-point found 989 pixels with at least one CR and three groups
2022-03-16 05:45:22,891 - stpipe.JumpStep - INFO - From highest outlier Two-point found 67 pixels with at least one CR and two groups
2022-03-16 05:45:22,993 - stpipe.JumpStep - INFO - Working on integration 307:
2022-03-16 05:45:23,274 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:23,275 - stpipe.JumpStep - INFO - From highest outlier Two-point found 999 pixels with at least one CR and three groups
2022-03-16 05:45:23,276 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:23,385 - stpipe.JumpStep - INFO - Working on integration 308:
2022-03-16 05:45:23,669 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:23,670 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1242 pixels with at least one CR and three groups
2022-03-16 05:45:23,671 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:23,795 - stpipe.JumpStep - INFO - Working on integration 309:
2022-03-16 05:45:24,078 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:24,079 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1282 pixels with at least one CR and three groups
2022-03-16 05:45:24,081 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:24,207 - stpipe.JumpStep - INFO - Working on integration 310:
2022-03-16 05:45:24,498 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:24,500 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1316 pixels with at least one CR and three groups
2022-03-16 05:45:24,501 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:24,631 - stpipe.JumpStep - INFO - Working on integration 311:
2022-03-16 05:45:24,923 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:24,924 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1253 pixels with at least one CR and three groups
2022-03-16 05:45:24,926 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:25,051 - stpipe.JumpStep - INFO - Working on integration 312:
2022-03-16 05:45:25,333 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:25,335 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1010 pixels with at least one CR and three groups
2022-03-16 05:45:25,336 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:25,453 - stpipe.JumpStep - INFO - Working on integration 313:
2022-03-16 05:45:25,747 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:25,750 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1162 pixels with at least one CR and three groups
2022-03-16 05:45:25,751 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:25,869 - stpipe.JumpStep - INFO - Working on integration 314:
2022-03-16 05:45:26,134 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:26,136 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1282 pixels with at least one CR and three groups
2022-03-16 05:45:26,138 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 05:45:26,269 - stpipe.JumpStep - INFO - Working on integration 315:
2022-03-16 05:45:26,543 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:26,545 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1196 pixels with at least one CR and three groups
2022-03-16 05:45:26,546 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 05:45:26,669 - stpipe.JumpStep - INFO - Working on integration 316:
2022-03-16 05:45:26,961 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:26,963 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1149 pixels with at least one CR and three groups
2022-03-16 05:45:26,965 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 05:45:27,080 - stpipe.JumpStep - INFO - Working on integration 317:
2022-03-16 05:45:27,349 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:27,351 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1298 pixels with at least one CR and three groups
2022-03-16 05:45:27,352 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:27,481 - stpipe.JumpStep - INFO - Working on integration 318:
2022-03-16 05:45:27,767 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:27,769 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1268 pixels with at least one CR and three groups
2022-03-16 05:45:27,770 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:27,896 - stpipe.JumpStep - INFO - Working on integration 319:
2022-03-16 05:45:28,182 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:28,184 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1339 pixels with at least one CR and three groups
2022-03-16 05:45:28,185 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 05:45:28,323 - stpipe.JumpStep - INFO - Working on integration 320:
2022-03-16 05:45:28,614 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 05:45:28,616 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1229 pixels with at least one CR and three groups
2022-03-16 05:45:28,617 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 05:45:28,742 - stpipe.JumpStep - INFO - Total elapsed time = 142.38 sec
2022-03-16 05:45:28,746 - stpipe.JumpStep - INFO - The execution time in seconds: 148.483628
2022-03-16 05:45:28,750 - stpipe.JumpStep - INFO - Step JumpStep done
2022-03-16 05:45:28,754 - stpipe.RampFitStep - INFO - RampFitStep instance created.
2022-03-16 05:45:28,949 - stpipe.RampFitStep - INFO - Step RampFitStep running with args (<RampModel(320, 4, 256, 2048) from jw01185016001_01101_00001-seg005_nrca3_uncal.fits>,).
2022-03-16 05:45:28,952 - stpipe.RampFitStep - INFO - Step RampFitStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
2022-03-16 05:45:29,020 - stpipe.RampFitStep - INFO - Using READNOISE reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits
2022-03-16 05:45:29,050 - stpipe.RampFitStep - INFO - Using GAIN reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits
2022-03-16 05:45:29,090 - stpipe.RampFitStep - INFO - Using algorithm = ols
2022-03-16 05:45:29,092 - stpipe.RampFitStep - INFO - Using weighting = optimal
2022-03-16 05:45:29,093 - stpipe.RampFitStep - INFO - Extracting gain subarray to match science data
2022-03-16 05:45:29,096 - stpipe.RampFitStep - INFO - Extracting readnoise subarray to match science data
2022-03-16 05:45:40,285 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:45:40,302 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:46:01,284 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:46:01,303 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:46:18,188 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:46:18,207 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:46:22,411 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:46:22,427 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:46:39,283 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:46:39,301 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:46:51,963 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:46:51,979 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:47:13,029 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:47:13,047 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:47:34,328 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:47:34,345 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:48:12,502 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:48:12,520 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:48:16,706 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:48:16,723 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:48:18,817 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:48:18,834 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:49:55,610 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:49:55,627 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:50:14,540 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:50:14,557 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:50:31,377 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:50:31,394 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:50:37,704 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:50:37,722 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:50:56,790 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:50:56,808 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:51:05,270 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:51:05,288 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:51:09,511 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:51:09,529 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:51:15,874 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:51:15,891 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:51:28,535 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:51:28,553 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:51:34,867 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:51:34,884 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:51:41,217 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:51:41,233 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:51:58,131 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:51:58,149 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:52:08,656 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:52:08,674 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:52:38,177 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:52:38,195 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:52:50,865 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:52:50,883 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:53:37,222 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:53:37,240 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:54:23,753 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:54:23,771 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:54:38,620 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:54:38,638 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:55:25,108 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:55:25,127 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:55:39,944 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:55:39,962 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:55:46,286 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:55:46,303 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:56:41,221 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 05:56:41,239 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:10:02,770 - stpipe.RampFitStep - INFO - Number of groups per integration: 4
2022-03-16 06:10:02,773 - stpipe.RampFitStep - INFO - Number of integrations: 320
2022-03-16 06:10:03,820 - stpipe.RampFitStep - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg005_nrca3_0_rampfitstep.fits
2022-03-16 06:10:08,716 - stpipe.RampFitStep - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg005_nrca3_1_rampfitstep.fits
2022-03-16 06:10:08,718 - stpipe.RampFitStep - INFO - Step RampFitStep done
2022-03-16 06:10:08,723 - stpipe.DQInitStep - INFO - DQInitStep instance created.
2022-03-16 06:10:09,031 - stpipe.DQInitStep - INFO - Step DQInitStep running with args ('/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/Raw_Data/jw01185016001_01101_00001-seg006_nrca3_uncal.fits',).
2022-03-16 06:10:09,034 - stpipe.DQInitStep - INFO - Step DQInitStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 06:10:10,593 - stpipe.DQInitStep - INFO - Using MASK reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_mask_0058.fits
2022-03-16 06:10:12,286 - stpipe.DQInitStep - INFO - Extracting mask subarray to match science data
2022-03-16 06:10:12,302 - stpipe.DQInitStep - INFO - Step DQInitStep done
2022-03-16 06:10:12,306 - stpipe.SaturationStep - INFO - SaturationStep instance created.
2022-03-16 06:10:12,466 - stpipe.SaturationStep - INFO - Step SaturationStep running with args (<RampModel(81, 4, 256, 2048) from jw01185016001_01101_00001-seg006_nrca3_uncal.fits>,).
2022-03-16 06:10:12,469 - stpipe.SaturationStep - INFO - Step SaturationStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 06:10:12,514 - stpipe.SaturationStep - INFO - Using SATURATION reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_saturation_0067.fits
2022-03-16 06:10:12,646 - stpipe.SaturationStep - WARNING - Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 06:10:12,649 - stpipe.SaturationStep - WARNING - Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 06:10:12,650 - stpipe.SaturationStep - WARNING - Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 06:10:12,652 - stpipe.SaturationStep - WARNING - Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 06:10:12,653 - stpipe.SaturationStep - WARNING - Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 06:10:13,467 - stpipe.SaturationStep - INFO - Extracting reference file subarray to match science data
2022-03-16 06:10:15,196 - stpipe.SaturationStep - INFO - Detected 10309 saturated pixels
2022-03-16 06:10:15,353 - stpipe.SaturationStep - INFO - Detected 0 A/D floor pixels
2022-03-16 06:10:15,360 - stpipe.SaturationStep - INFO - Step SaturationStep done
2022-03-16 06:10:15,363 - stpipe.SuperBiasStep - INFO - SuperBiasStep instance created.
2022-03-16 06:10:15,517 - stpipe.SuperBiasStep - INFO - Step SuperBiasStep running with args (<RampModel(81, 4, 256, 2048) from jw01185016001_01101_00001-seg006_nrca3_uncal.fits>,).
2022-03-16 06:10:15,520 - stpipe.SuperBiasStep - INFO - Step SuperBiasStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 06:10:15,567 - stpipe.SuperBiasStep - INFO - Using SUPERBIAS reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_superbias_0027.fits
2022-03-16 06:10:15,828 - stpipe.SuperBiasStep - WARNING - Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 06:10:17,014 - stpipe.SuperBiasStep - INFO - Step SuperBiasStep done
2022-03-16 06:10:17,017 - stpipe.RefPixStep - INFO - RefPixStep instance created.
100%|███████████████████████████████████████████| 81/81 [00:26<00:00,  3.10it/s]
2022-03-16 06:10:43,961 - stpipe.LinearityStep - INFO - LinearityStep instance created.
2022-03-16 06:10:44,104 - stpipe.LinearityStep - INFO - Step LinearityStep running with args (<RampModel(81, 4, 256, 2048) from jw01185016001_01101_00001-seg006_nrca3_uncal.fits>,).
2022-03-16 06:10:44,106 - stpipe.LinearityStep - INFO - Step LinearityStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2022-03-16 06:10:44,150 - stpipe.LinearityStep - INFO - Using Linearity reference file /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_linearity_0053.fits
2022-03-16 06:10:44,359 - stpipe.LinearityStep - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 06:10:44,361 - stpipe.LinearityStep - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 06:10:44,361 - stpipe.LinearityStep - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 06:10:44,362 - stpipe.LinearityStep - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 06:10:44,363 - stpipe.LinearityStep - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 06:10:44,364 - stpipe.LinearityStep - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 06:10:44,365 - stpipe.LinearityStep - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
2022-03-16 06:10:45,179 - stpipe.LinearityStep - INFO - Extracting linearity subarray to match science data
2022-03-16 06:10:49,882 - stpipe.LinearityStep - INFO - Step LinearityStep done
2022-03-16 06:10:49,885 - stpipe.PersistenceStep - INFO - PersistenceStep instance created.
2022-03-16 06:10:50,017 - stpipe.PersistenceStep - INFO - Step PersistenceStep running with args (<RampModel(81, 4, 256, 2048) from jw01185016001_01101_00001-seg006_nrca3_uncal.fits>,).
2022-03-16 06:10:50,019 - stpipe.PersistenceStep - INFO - Step PersistenceStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}
2022-03-16 06:10:50,020 - stpipe.PersistenceStep - INFO - Step skipped.
2022-03-16 06:10:50,022 - stpipe.PersistenceStep - INFO - Step PersistenceStep done
2022-03-16 06:10:50,024 - stpipe.DarkCurrentStep - INFO - DarkCurrentStep instance created.
2022-03-16 06:10:50,144 - stpipe.DarkCurrentStep - INFO - Step DarkCurrentStep running with args (<RampModel(81, 4, 256, 2048) from jw01185016001_01101_00001-seg006_nrca3_uncal.fits>,).
2022-03-16 06:10:50,146 - stpipe.DarkCurrentStep - INFO - Step DarkCurrentStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}
2022-03-16 06:10:50,147 - stpipe.DarkCurrentStep - INFO - Step skipped.
2022-03-16 06:10:50,148 - stpipe.DarkCurrentStep - INFO - Step DarkCurrentStep done
2022-03-16 06:10:50,151 - stpipe.JumpStep - INFO - JumpStep instance created.
2022-03-16 06:10:50,270 - stpipe.JumpStep - INFO - Step JumpStep running with args (<RampModel(81, 4, 256, 2048) from jw01185016001_01101_00001-seg006_nrca3_uncal.fits>,).
2022-03-16 06:10:50,273 - stpipe.JumpStep - INFO - Step JumpStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 15, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}
2022-03-16 06:10:50,296 - stpipe.JumpStep - INFO - CR rejection threshold = 15 sigma
2022-03-16 06:10:50,321 - stpipe.JumpStep - INFO - Using GAIN reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits
2022-03-16 06:10:50,382 - stpipe.JumpStep - INFO - Using READNOISE reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits
2022-03-16 06:10:50,412 - stpipe.JumpStep - INFO - Using 1 core for jump detection 
2022-03-16 06:10:51,250 - stpipe.JumpStep - INFO - Extracting gain subarray to match science data
2022-03-16 06:10:51,251 - stpipe.JumpStep - INFO - Extracting readnoise subarray to match science data
2022-03-16 06:10:51,919 - stpipe.JumpStep - INFO - Executing two-point difference method
2022-03-16 06:10:54,714 - stpipe.JumpStep - INFO - Working on integration 1:
2022-03-16 06:10:54,982 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:10:54,983 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1341 pixels with at least one CR and three groups
2022-03-16 06:10:54,984 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 06:10:55,113 - stpipe.JumpStep - INFO - Working on integration 2:
2022-03-16 06:10:55,397 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:10:55,398 - stpipe.JumpStep - INFO - From highest outlier Two-point found 976 pixels with at least one CR and three groups
2022-03-16 06:10:55,398 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:10:55,500 - stpipe.JumpStep - INFO - Working on integration 3:
2022-03-16 06:10:55,777 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:10:55,779 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1307 pixels with at least one CR and three groups
2022-03-16 06:10:55,780 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:10:55,908 - stpipe.JumpStep - INFO - Working on integration 4:
2022-03-16 06:10:56,182 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:10:56,184 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1259 pixels with at least one CR and three groups
2022-03-16 06:10:56,185 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:10:56,322 - stpipe.JumpStep - INFO - Working on integration 5:
2022-03-16 06:10:56,590 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:10:56,592 - stpipe.JumpStep - INFO - From highest outlier Two-point found 964 pixels with at least one CR and three groups
2022-03-16 06:10:56,594 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 06:10:56,696 - stpipe.JumpStep - INFO - Working on integration 6:
2022-03-16 06:10:56,969 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:10:56,970 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1238 pixels with at least one CR and three groups
2022-03-16 06:10:56,971 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 06:10:57,094 - stpipe.JumpStep - INFO - Working on integration 7:
2022-03-16 06:10:57,365 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:10:57,367 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1311 pixels with at least one CR and three groups
2022-03-16 06:10:57,368 - stpipe.JumpStep - INFO - From highest outlier Two-point found 67 pixels with at least one CR and two groups
2022-03-16 06:10:57,509 - stpipe.JumpStep - INFO - Working on integration 8:
2022-03-16 06:10:57,783 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:10:57,785 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1300 pixels with at least one CR and three groups
2022-03-16 06:10:57,786 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 06:10:57,929 - stpipe.JumpStep - INFO - Working on integration 9:
2022-03-16 06:10:58,201 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:10:58,203 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1022 pixels with at least one CR and three groups
2022-03-16 06:10:58,204 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 06:10:58,317 - stpipe.JumpStep - INFO - Working on integration 10:
2022-03-16 06:10:58,584 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:10:58,586 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1189 pixels with at least one CR and three groups
2022-03-16 06:10:58,587 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:10:58,719 - stpipe.JumpStep - INFO - Working on integration 11:
2022-03-16 06:10:58,985 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:10:58,986 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1246 pixels with at least one CR and three groups
2022-03-16 06:10:58,987 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:10:59,111 - stpipe.JumpStep - INFO - Working on integration 12:
2022-03-16 06:10:59,385 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:10:59,386 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1225 pixels with at least one CR and three groups
2022-03-16 06:10:59,387 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:10:59,522 - stpipe.JumpStep - INFO - Working on integration 13:
2022-03-16 06:10:59,793 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:10:59,795 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1266 pixels with at least one CR and three groups
2022-03-16 06:10:59,797 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:10:59,921 - stpipe.JumpStep - INFO - Working on integration 14:
2022-03-16 06:11:00,190 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:00,191 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1158 pixels with at least one CR and three groups
2022-03-16 06:11:00,193 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 06:11:00,322 - stpipe.JumpStep - INFO - Working on integration 15:
2022-03-16 06:11:00,592 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:00,593 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1126 pixels with at least one CR and three groups
2022-03-16 06:11:00,595 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:11:00,719 - stpipe.JumpStep - INFO - Working on integration 16:
2022-03-16 06:11:00,987 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:00,989 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1236 pixels with at least one CR and three groups
2022-03-16 06:11:00,990 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:01,126 - stpipe.JumpStep - INFO - Working on integration 17:
2022-03-16 06:11:01,395 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:01,397 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1187 pixels with at least one CR and three groups
2022-03-16 06:11:01,398 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:01,519 - stpipe.JumpStep - INFO - Working on integration 18:
2022-03-16 06:11:01,792 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:01,793 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1240 pixels with at least one CR and three groups
2022-03-16 06:11:01,795 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 06:11:01,918 - stpipe.JumpStep - INFO - Working on integration 19:
2022-03-16 06:11:02,188 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:02,190 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1238 pixels with at least one CR and three groups
2022-03-16 06:11:02,191 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 06:11:02,326 - stpipe.JumpStep - INFO - Working on integration 20:
2022-03-16 06:11:02,598 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:02,599 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1268 pixels with at least one CR and three groups
2022-03-16 06:11:02,601 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:11:02,739 - stpipe.JumpStep - INFO - Working on integration 21:
2022-03-16 06:11:03,007 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:03,008 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1303 pixels with at least one CR and three groups
2022-03-16 06:11:03,010 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:03,143 - stpipe.JumpStep - INFO - Working on integration 22:
2022-03-16 06:11:03,413 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:03,414 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1202 pixels with at least one CR and three groups
2022-03-16 06:11:03,415 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:11:03,536 - stpipe.JumpStep - INFO - Working on integration 23:
2022-03-16 06:11:03,802 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:03,805 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1357 pixels with at least one CR and three groups
2022-03-16 06:11:03,806 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:03,938 - stpipe.JumpStep - INFO - Working on integration 24:
2022-03-16 06:11:04,210 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:04,212 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1227 pixels with at least one CR and three groups
2022-03-16 06:11:04,213 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:04,334 - stpipe.JumpStep - INFO - Working on integration 25:
2022-03-16 06:11:04,603 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:04,604 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1358 pixels with at least one CR and three groups
2022-03-16 06:11:04,606 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:11:04,738 - stpipe.JumpStep - INFO - Working on integration 26:
2022-03-16 06:11:05,008 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:05,009 - stpipe.JumpStep - INFO - From highest outlier Two-point found 992 pixels with at least one CR and three groups
2022-03-16 06:11:05,011 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:05,124 - stpipe.JumpStep - INFO - Working on integration 27:
2022-03-16 06:11:05,390 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:05,391 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1350 pixels with at least one CR and three groups
2022-03-16 06:11:05,393 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 06:11:05,539 - stpipe.JumpStep - INFO - Working on integration 28:
2022-03-16 06:11:05,808 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:05,809 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1283 pixels with at least one CR and three groups
2022-03-16 06:11:05,811 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 06:11:05,952 - stpipe.JumpStep - INFO - Working on integration 29:
2022-03-16 06:11:06,217 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:06,219 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1272 pixels with at least one CR and three groups
2022-03-16 06:11:06,220 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:06,359 - stpipe.JumpStep - INFO - Working on integration 30:
2022-03-16 06:11:06,632 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:06,634 - stpipe.JumpStep - INFO - From highest outlier Two-point found 944 pixels with at least one CR and three groups
2022-03-16 06:11:06,635 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:06,741 - stpipe.JumpStep - INFO - Working on integration 31:
2022-03-16 06:11:07,013 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:07,014 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1171 pixels with at least one CR and three groups
2022-03-16 06:11:07,015 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:11:07,132 - stpipe.JumpStep - INFO - Working on integration 32:
2022-03-16 06:11:07,403 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:07,404 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1131 pixels with at least one CR and three groups
2022-03-16 06:11:07,406 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 06:11:07,528 - stpipe.JumpStep - INFO - Working on integration 33:
2022-03-16 06:11:07,798 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:07,800 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1168 pixels with at least one CR and three groups
2022-03-16 06:11:07,801 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:11:07,918 - stpipe.JumpStep - INFO - Working on integration 34:
2022-03-16 06:11:08,187 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:08,189 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1270 pixels with at least one CR and three groups
2022-03-16 06:11:08,190 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 06:11:08,328 - stpipe.JumpStep - INFO - Working on integration 35:
2022-03-16 06:11:08,598 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:08,600 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1304 pixels with at least one CR and three groups
2022-03-16 06:11:08,601 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:08,730 - stpipe.JumpStep - INFO - Working on integration 36:
2022-03-16 06:11:09,004 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:09,006 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1286 pixels with at least one CR and three groups
2022-03-16 06:11:09,007 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 06:11:09,133 - stpipe.JumpStep - INFO - Working on integration 37:
2022-03-16 06:11:09,399 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:09,401 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1237 pixels with at least one CR and three groups
2022-03-16 06:11:09,402 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 06:11:09,525 - stpipe.JumpStep - INFO - Working on integration 38:
2022-03-16 06:11:09,798 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:09,799 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1001 pixels with at least one CR and three groups
2022-03-16 06:11:09,800 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 06:11:09,905 - stpipe.JumpStep - INFO - Working on integration 39:
2022-03-16 06:11:10,173 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:10,175 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1307 pixels with at least one CR and three groups
2022-03-16 06:11:10,176 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 06:11:10,318 - stpipe.JumpStep - INFO - Working on integration 40:
2022-03-16 06:11:10,587 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:10,588 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1284 pixels with at least one CR and three groups
2022-03-16 06:11:10,590 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:10,715 - stpipe.JumpStep - INFO - Working on integration 41:
2022-03-16 06:11:10,981 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:10,983 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1287 pixels with at least one CR and three groups
2022-03-16 06:11:10,984 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:11,110 - stpipe.JumpStep - INFO - Working on integration 42:
2022-03-16 06:11:11,380 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:11,382 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1165 pixels with at least one CR and three groups
2022-03-16 06:11:11,384 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 06:11:11,507 - stpipe.JumpStep - INFO - Working on integration 43:
2022-03-16 06:11:11,776 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:11,778 - stpipe.JumpStep - INFO - From highest outlier Two-point found 904 pixels with at least one CR and three groups
2022-03-16 06:11:11,779 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:11,877 - stpipe.JumpStep - INFO - Working on integration 44:
2022-03-16 06:11:12,145 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:12,146 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1298 pixels with at least one CR and three groups
2022-03-16 06:11:12,148 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:12,282 - stpipe.JumpStep - INFO - Working on integration 45:
2022-03-16 06:11:12,551 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:12,553 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1191 pixels with at least one CR and three groups
2022-03-16 06:11:12,554 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 06:11:12,684 - stpipe.JumpStep - INFO - Working on integration 46:
2022-03-16 06:11:12,953 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:12,955 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1152 pixels with at least one CR and three groups
2022-03-16 06:11:12,956 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 06:11:13,071 - stpipe.JumpStep - INFO - Working on integration 47:
2022-03-16 06:11:13,339 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:13,341 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1327 pixels with at least one CR and three groups
2022-03-16 06:11:13,342 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:13,487 - stpipe.JumpStep - INFO - Working on integration 48:
2022-03-16 06:11:13,756 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:13,758 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1274 pixels with at least one CR and three groups
2022-03-16 06:11:13,759 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 06:11:13,893 - stpipe.JumpStep - INFO - Working on integration 49:
2022-03-16 06:11:14,157 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:14,158 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1232 pixels with at least one CR and three groups
2022-03-16 06:11:14,160 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 06:11:14,285 - stpipe.JumpStep - INFO - Working on integration 50:
2022-03-16 06:11:14,554 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:14,556 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1251 pixels with at least one CR and three groups
2022-03-16 06:11:14,557 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 06:11:14,694 - stpipe.JumpStep - INFO - Working on integration 51:
2022-03-16 06:11:14,963 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:14,964 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1283 pixels with at least one CR and three groups
2022-03-16 06:11:14,965 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:15,107 - stpipe.JumpStep - INFO - Working on integration 52:
2022-03-16 06:11:15,377 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:15,379 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1281 pixels with at least one CR and three groups
2022-03-16 06:11:15,380 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 06:11:15,521 - stpipe.JumpStep - INFO - Working on integration 53:
2022-03-16 06:11:15,792 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:15,794 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1299 pixels with at least one CR and three groups
2022-03-16 06:11:15,795 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:15,923 - stpipe.JumpStep - INFO - Working on integration 54:
2022-03-16 06:11:16,193 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:16,195 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1260 pixels with at least one CR and three groups
2022-03-16 06:11:16,196 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:16,325 - stpipe.JumpStep - INFO - Working on integration 55:
2022-03-16 06:11:16,593 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:16,595 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1002 pixels with at least one CR and three groups
2022-03-16 06:11:16,596 - stpipe.JumpStep - INFO - From highest outlier Two-point found 66 pixels with at least one CR and two groups
2022-03-16 06:11:16,699 - stpipe.JumpStep - INFO - Working on integration 56:
2022-03-16 06:11:16,967 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:16,968 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1308 pixels with at least one CR and three groups
2022-03-16 06:11:16,969 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:17,097 - stpipe.JumpStep - INFO - Working on integration 57:
2022-03-16 06:11:17,369 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:17,371 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1292 pixels with at least one CR and three groups
2022-03-16 06:11:17,372 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 06:11:17,513 - stpipe.JumpStep - INFO - Working on integration 58:
2022-03-16 06:11:17,782 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:17,783 - stpipe.JumpStep - INFO - From highest outlier Two-point found 974 pixels with at least one CR and three groups
2022-03-16 06:11:17,784 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:17,896 - stpipe.JumpStep - INFO - Working on integration 59:
2022-03-16 06:11:18,166 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:18,168 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1262 pixels with at least one CR and three groups
2022-03-16 06:11:18,169 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:18,307 - stpipe.JumpStep - INFO - Working on integration 60:
2022-03-16 06:11:18,576 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:18,578 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1196 pixels with at least one CR and three groups
2022-03-16 06:11:18,579 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 06:11:18,697 - stpipe.JumpStep - INFO - Working on integration 61:
2022-03-16 06:11:18,967 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:18,969 - stpipe.JumpStep - INFO - From highest outlier Two-point found 983 pixels with at least one CR and three groups
2022-03-16 06:11:18,971 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 06:11:19,072 - stpipe.JumpStep - INFO - Working on integration 62:
2022-03-16 06:11:19,340 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:19,342 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1146 pixels with at least one CR and three groups
2022-03-16 06:11:19,343 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 06:11:19,471 - stpipe.JumpStep - INFO - Working on integration 63:
2022-03-16 06:11:19,740 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:19,742 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1021 pixels with at least one CR and three groups
2022-03-16 06:11:19,743 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:11:19,848 - stpipe.JumpStep - INFO - Working on integration 64:
2022-03-16 06:11:20,116 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:20,118 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1314 pixels with at least one CR and three groups
2022-03-16 06:11:20,119 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 06:11:20,247 - stpipe.JumpStep - INFO - Working on integration 65:
2022-03-16 06:11:20,513 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:20,515 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1254 pixels with at least one CR and three groups
2022-03-16 06:11:20,516 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 06:11:20,653 - stpipe.JumpStep - INFO - Working on integration 66:
2022-03-16 06:11:20,919 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:20,920 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1176 pixels with at least one CR and three groups
2022-03-16 06:11:20,921 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:21,038 - stpipe.JumpStep - INFO - Working on integration 67:
2022-03-16 06:11:21,309 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:21,311 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1274 pixels with at least one CR and three groups
2022-03-16 06:11:21,312 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:21,437 - stpipe.JumpStep - INFO - Working on integration 68:
2022-03-16 06:11:21,703 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:21,704 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1303 pixels with at least one CR and three groups
2022-03-16 06:11:21,706 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:11:21,833 - stpipe.JumpStep - INFO - Working on integration 69:
2022-03-16 06:11:22,101 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:22,103 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1315 pixels with at least one CR and three groups
2022-03-16 06:11:22,104 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:11:22,247 - stpipe.JumpStep - INFO - Working on integration 70:
2022-03-16 06:11:22,515 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:22,516 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1242 pixels with at least one CR and three groups
2022-03-16 06:11:22,517 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:11:22,640 - stpipe.JumpStep - INFO - Working on integration 71:
2022-03-16 06:11:22,907 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:22,909 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1235 pixels with at least one CR and three groups
2022-03-16 06:11:22,910 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 06:11:23,045 - stpipe.JumpStep - INFO - Working on integration 72:
2022-03-16 06:11:23,310 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:23,311 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1203 pixels with at least one CR and three groups
2022-03-16 06:11:23,313 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:11:23,432 - stpipe.JumpStep - INFO - Working on integration 73:
2022-03-16 06:11:23,703 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:23,705 - stpipe.JumpStep - INFO - From highest outlier Two-point found 997 pixels with at least one CR and three groups
2022-03-16 06:11:23,706 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:11:23,819 - stpipe.JumpStep - INFO - Working on integration 74:
2022-03-16 06:11:24,086 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:24,087 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1257 pixels with at least one CR and three groups
2022-03-16 06:11:24,088 - stpipe.JumpStep - INFO - From highest outlier Two-point found 64 pixels with at least one CR and two groups
2022-03-16 06:11:24,212 - stpipe.JumpStep - INFO - Working on integration 75:
2022-03-16 06:11:24,480 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:24,481 - stpipe.JumpStep - INFO - From highest outlier Two-point found 981 pixels with at least one CR and three groups
2022-03-16 06:11:24,482 - stpipe.JumpStep - INFO - From highest outlier Two-point found 63 pixels with at least one CR and two groups
2022-03-16 06:11:24,587 - stpipe.JumpStep - INFO - Working on integration 76:
2022-03-16 06:11:24,857 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:24,858 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1026 pixels with at least one CR and three groups
2022-03-16 06:11:24,859 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:24,975 - stpipe.JumpStep - INFO - Working on integration 77:
2022-03-16 06:11:25,239 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:25,241 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1155 pixels with at least one CR and three groups
2022-03-16 06:11:25,242 - stpipe.JumpStep - INFO - From highest outlier Two-point found 60 pixels with at least one CR and two groups
2022-03-16 06:11:25,383 - stpipe.JumpStep - INFO - Working on integration 78:
2022-03-16 06:11:25,648 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:25,650 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1302 pixels with at least one CR and three groups
2022-03-16 06:11:25,651 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:25,791 - stpipe.JumpStep - INFO - Working on integration 79:
2022-03-16 06:11:26,074 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:26,075 - stpipe.JumpStep - INFO - From highest outlier Two-point found 963 pixels with at least one CR and three groups
2022-03-16 06:11:26,076 - stpipe.JumpStep - INFO - From highest outlier Two-point found 62 pixels with at least one CR and two groups
2022-03-16 06:11:26,177 - stpipe.JumpStep - INFO - Working on integration 80:
2022-03-16 06:11:26,440 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:26,442 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1169 pixels with at least one CR and three groups
2022-03-16 06:11:26,443 - stpipe.JumpStep - INFO - From highest outlier Two-point found 61 pixels with at least one CR and two groups
2022-03-16 06:11:26,560 - stpipe.JumpStep - INFO - Working on integration 81:
2022-03-16 06:11:26,829 - stpipe.JumpStep - INFO - From highest outlier Two-point found 0 pixels with at least one CR and at least four groups
2022-03-16 06:11:26,830 - stpipe.JumpStep - INFO - From highest outlier Two-point found 1029 pixels with at least one CR and three groups
2022-03-16 06:11:26,831 - stpipe.JumpStep - INFO - From highest outlier Two-point found 65 pixels with at least one CR and two groups
2022-03-16 06:11:26,953 - stpipe.JumpStep - INFO - Total elapsed time = 35.0328 sec
2022-03-16 06:11:26,957 - stpipe.JumpStep - INFO - The execution time in seconds: 36.660471
2022-03-16 06:11:26,960 - stpipe.JumpStep - INFO - Step JumpStep done
2022-03-16 06:11:26,965 - stpipe.RampFitStep - INFO - RampFitStep instance created.
2022-03-16 06:11:27,135 - stpipe.RampFitStep - INFO - Step RampFitStep running with args (<RampModel(81, 4, 256, 2048) from jw01185016001_01101_00001-seg006_nrca3_uncal.fits>,).
2022-03-16 06:11:27,138 - stpipe.RampFitStep - INFO - Step RampFitStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
2022-03-16 06:11:27,206 - stpipe.RampFitStep - INFO - Using READNOISE reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits
2022-03-16 06:11:27,236 - stpipe.RampFitStep - INFO - Using GAIN reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits
2022-03-16 06:11:27,276 - stpipe.RampFitStep - INFO - Using algorithm = ols
2022-03-16 06:11:27,278 - stpipe.RampFitStep - INFO - Using weighting = optimal
2022-03-16 06:11:27,279 - stpipe.RampFitStep - INFO - Extracting gain subarray to match science data
2022-03-16 06:11:27,282 - stpipe.RampFitStep - INFO - Extracting readnoise subarray to match science data
2022-03-16 06:11:29,260 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:11:29,276 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:11:43,986 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:11:44,004 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:12:22,082 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:12:22,099 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:13:18,999 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:13:19,017 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:13:25,322 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:13:25,339 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:13:33,755 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:13:33,772 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:13:35,850 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:13:35,868 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:14:07,351 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: invalid value encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:14:07,369 - stpipe.RampFitStep - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/jwst/ramp_fitting/ols_fit.py:3473: RuntimeWarning: divide by zero encountered in true_divide
  abs((abs(jj_rd - nrd_prime) / nrd_prime) ** power_wt_r) * invrdns2_r

2022-03-16 06:15:22,876 - stpipe.RampFitStep - INFO - Number of groups per integration: 4
2022-03-16 06:15:22,879 - stpipe.RampFitStep - INFO - Number of integrations: 81
2022-03-16 06:15:23,293 - stpipe.RampFitStep - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg006_nrca3_0_rampfitstep.fits
2022-03-16 06:15:24,457 - stpipe.RampFitStep - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg006_nrca3_1_rampfitstep.fits
2022-03-16 06:15:24,459 - stpipe.RampFitStep - INFO - Step RampFitStep done
Stage 1 Execution Time in Seconds: 9827.373866558075

$\textbf{OUTPUT FILES:}$ Output files are *rateints.fits. The pipeline creates a rate.fits and a rateint.fits files in cases where there is more than one integration in a file, but only a rate.fits file in the case where there is only one integration in a file.

In [5]:
all_rateints_files = [] # All Rateints File Names. Also used to check that all the rateints file exist.  
for fitsName in glob.glob(output_dir + '*nrca3_1_rampfitstep.fits'): #Grabbing only nrca3 files from the directory
    all_rateints_files.append(fitsName)

$\textbf{Confirming a Source}$¶

Plotting one of the rateints.fits files to check that a target source is present before moving on to stage 2 and stage 3.

In [6]:
#A check to ensure the star is in the file
file = '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg001_nrca3_1_rampfitstep.fits' #random file from the rateints list
HDUList = fits.open(file)
#HDUList.info()

image2D = HDUList[1].data[0]
image2D.shape

fig, ax = plt.subplots(figsize=(22,5))
ax.imshow(image2D, vmin=0, vmax=800)
#ax.plot(image2D[32,:])
ax.set_xlim(800,1300)
Out[6]:
(800.0, 1300.0)

$\textbf{Split the Integrations for tshirt (referenced later)}$¶

In [16]:
#splitegrate
#Splintegrate splits and combines integrations from the pipeline up.
#Set flipToDet = False to not flip the x-axis
#This is a step required if running tshirt

#This simulation has multiple segments that need to be split for tshirt purposes.
for rateints_segment in glob.glob(output_dir + '*nrca3_1_rampfitstep.fits'): #Grabbing only nrca3 files from the directory
    outDir = '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/splintegrate/'
    splint = splintegrate.splint(inFile=rateints_segment,outDir=outDir,flipToDet=False)
    splint.split()
100%|█████████████████████████████████████████| 320/320 [00:08<00:00, 38.71it/s]
100%|█████████████████████████████████████████| 320/320 [00:09<00:00, 34.25it/s]
100%|█████████████████████████████████████████| 320/320 [00:05<00:00, 55.28it/s]
100%|█████████████████████████████████████████| 320/320 [00:06<00:00, 51.61it/s]
100%|█████████████████████████████████████████| 320/320 [00:05<00:00, 53.42it/s]
100%|███████████████████████████████████████████| 81/81 [00:01<00:00, 52.79it/s]

$\textbf{Association Files}$¶

$\textbf{Organizing the Detector1Pipeline Output Files}$¶

Associations are basically just lists of things, mostly exposures, that are somehow related. An association file is a JSON-format file that contains a list of all the files with the same instrument set-up (filter, observation mode, etc) that might be combined into a single image. Relationships between multiple exposures are captured in an association, which is a means of identifying a set of exposures that belong together and may be dependent upon one another. The association concept permits exposures to be calibrated, archived, retrieved, and reprocessed as a set rather than as individual objects.

In [7]:
asn_dir = '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/' #Name the association file's directory. 
level2_asn = (os.path.join(asn_dir, 'nrca3_level2_asn.json')) #Name the stage 2 association file and give it a path. 
asn_stage2 = asn_from_list(all_rateints_files,rule=DMSLevel2bBase) #The rateints files; DMSLevel2bBase indicates that a Level2 association is to be created.
with open(level2_asn, 'w') as fh: #Write an association file. 
   fh.write(asn_stage2.dump()[1])

$\textbf{Stage 2}$¶

$\textbf{Processes JWST imaging-mode slope data from Level-2a to Level-2b.}$¶

Stage 2 processing consists of additional instrument-level and observing-mode corrections and calibrations to produce fully calibrated exposures. The details differ for imaging and spectroscopic exposures, and there are some corrections that are unique to certain instruments or modes.

$\textbf{Image2Pipeline:}$¶

Imaging processing applies additional instrumental corrections and calibrations that result in a fully calibrated individual exposure. Imaging TSO data are run through this pipeline. The steps are very similar to those in Spec2Pipeline. WCS information is added, flat fielding and flux calibration are performed, and astrometric distortion is removed from the images. There are two parameter references used to control this pipeline, depending on whether the data are to be treated as Time Series Observation (TSO). The parameter reference is provided by CRDS. For TSO exposures, some steps are set to be skipped by default.

$\textbf{INPUT FILES:}$ The input to Image2Pipeline is a countrate exposure, in the form of either “_rate” or “_rateints” data. A single input file can be processed or an ASN file listing multiple inputs can be used, in which case the processing steps will be applied to each input exposure, one at a time. If “_rateints” products are used as input, each step applies its algorithm to each integration in the exposure, where appropriate.

In [5]:
startTime = time.time() #Time how long this step takes
#The file to use is the stage 2 association file defined above. 

# Instantiate the class. Do not provide a configuration file.
pipeline_stage2 = Image2Pipeline()

# Specify that you want results saved to a file
pipeline_stage2.save_results = True
pipeline_stage2.output_dir = '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/'

# Execute the pipeline using the run method
result_stage2 = pipeline_stage2.run(level2_asn)

executionTime = (time.time() - startTime)
print('Stage 2 Execution Time in Seconds: ' + str(executionTime)) #Time how long this step takes
2022-03-16 13:44:13,557 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created.
2022-03-16 13:44:13,563 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created.
2022-03-16 13:44:13,571 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created.
2022-03-16 13:44:13,576 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created.
2022-03-16 13:44:13,581 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created.
2022-03-16 13:44:13,587 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created.
2022-03-16 13:44:13,744 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/nrca3_level2_asn.json',).
2022-03-16 13:44:13,758 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}}
2022-03-16 13:44:19,555 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw01185016001_01101_00001-seg001_nrca3_1_rampfitstep.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg']
2022-03-16 13:44:20,644 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0031.fits'.
2022-03-16 13:44:20,646 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2022-03-16 13:44:20,647 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2022-03-16 13:44:20,648 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2022-03-16 13:44:20,649 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2022-03-16 13:44:20,652 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_distortion_0089.asdf'.
2022-03-16 13:44:20,653 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_drizpars_0001.fits'.
2022-03-16 13:44:20,654 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2022-03-16 13:44:20,656 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_filteroffset_0004.asdf'.
2022-03-16 13:44:20,657 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_flat_0349.fits'.
2022-03-16 13:44:20,658 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2022-03-16 13:44:20,662 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2022-03-16 13:44:20,663 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2022-03-16 13:44:20,664 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2022-03-16 13:44:20,665 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2022-03-16 13:44:20,667 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2022-03-16 13:44:20,668 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2022-03-16 13:44:20,671 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0093.fits'.
2022-03-16 13:44:20,673 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2022-03-16 13:44:20,674 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2022-03-16 13:44:20,675 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2022-03-16 13:44:20,677 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2022-03-16 13:44:20,678 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'.
2022-03-16 13:44:20,680 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ...
2022-03-16 13:44:20,698 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg001_nrca3_1
2022-03-16 13:44:20,699 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg001_nrca3_1_rampfitstep.fits ...
2022-03-16 13:44:49,207 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg001_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:44:49,211 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2022-03-16 13:44:49,762 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0.
2022-03-16 13:44:53,721 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS  119.767032966 15.398039752 119.765593894 15.396266039 119.780195294 15.385212635 119.781670330 15.386975194
2022-03-16 13:44:53,724 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  119.767032966 15.398039752 119.765593894 15.396266039 119.780195294 15.385212635 119.781670330 15.386975194
2022-03-16 13:44:53,726 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2022-03-16 13:44:53,834 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2022-03-16 13:44:54,216 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg001_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:44:54,219 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2022-03-16 13:45:05,657 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat
2022-03-16 13:45:30,803 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2022-03-16 13:45:31,023 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg001_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:45:31,025 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'inverse': False, 'source_type': None}
2022-03-16 13:45:31,092 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0093.fits
2022-03-16 13:45:31,094 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0031.fits
2022-03-16 13:45:39,094 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM
2022-03-16 13:45:39,097 - stpipe.Image2Pipeline.photom - INFO -  detector: NRCA3
2022-03-16 13:45:39,099 - stpipe.Image2Pipeline.photom - INFO -  exp_type: NRC_TSIMAGE
2022-03-16 13:45:39,100 - stpipe.Image2Pipeline.photom - INFO -  filter: F210M
2022-03-16 13:45:39,101 - stpipe.Image2Pipeline.photom - INFO -  pupil: WLP8
2022-03-16 13:45:39,571 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2022-03-16 13:45:39,577 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 4.93778
2022-03-16 13:45:41,270 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2022-03-16 13:45:41,274 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg001_nrca3_1
2022-03-16 13:45:41,276 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg002_nrca3_1
2022-03-16 13:45:41,277 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg002_nrca3_1_rampfitstep.fits ...
2022-03-16 13:46:12,925 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg002_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:46:12,929 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2022-03-16 13:46:13,466 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0.
2022-03-16 13:46:17,412 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS  119.767032966 15.398039752 119.765593894 15.396266039 119.780195294 15.385212635 119.781670330 15.386975194
2022-03-16 13:46:17,413 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  119.767032966 15.398039752 119.765593894 15.396266039 119.780195294 15.385212635 119.781670330 15.386975194
2022-03-16 13:46:17,415 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2022-03-16 13:46:17,525 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2022-03-16 13:46:17,908 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg002_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:46:17,911 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2022-03-16 13:46:27,677 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat
2022-03-16 13:46:47,225 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2022-03-16 13:46:47,438 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg002_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:46:47,442 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'inverse': False, 'source_type': None}
2022-03-16 13:46:47,510 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0093.fits
2022-03-16 13:46:47,511 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0031.fits
2022-03-16 13:46:52,491 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM
2022-03-16 13:46:52,492 - stpipe.Image2Pipeline.photom - INFO -  detector: NRCA3
2022-03-16 13:46:52,494 - stpipe.Image2Pipeline.photom - INFO -  exp_type: NRC_TSIMAGE
2022-03-16 13:46:52,495 - stpipe.Image2Pipeline.photom - INFO -  filter: F210M
2022-03-16 13:46:52,496 - stpipe.Image2Pipeline.photom - INFO -  pupil: WLP8
2022-03-16 13:46:52,965 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2022-03-16 13:46:52,970 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 4.93778
2022-03-16 13:46:54,588 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2022-03-16 13:46:54,589 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg002_nrca3_1
2022-03-16 13:46:54,591 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg003_nrca3_1
2022-03-16 13:46:54,592 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg003_nrca3_1_rampfitstep.fits ...
2022-03-16 13:47:12,222 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg003_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:47:12,226 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2022-03-16 13:47:12,710 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0.
2022-03-16 13:47:16,420 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS  119.767032966 15.398039752 119.765593894 15.396266039 119.780195294 15.385212635 119.781670330 15.386975194
2022-03-16 13:47:16,422 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  119.767032966 15.398039752 119.765593894 15.396266039 119.780195294 15.385212635 119.781670330 15.386975194
2022-03-16 13:47:16,423 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2022-03-16 13:47:16,528 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2022-03-16 13:47:16,961 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg003_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:47:16,966 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2022-03-16 13:47:26,386 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat
2022-03-16 13:47:43,117 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2022-03-16 13:47:43,306 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg003_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:47:43,309 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'inverse': False, 'source_type': None}
2022-03-16 13:47:43,373 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0093.fits
2022-03-16 13:47:43,375 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0031.fits
2022-03-16 13:47:47,693 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM
2022-03-16 13:47:47,695 - stpipe.Image2Pipeline.photom - INFO -  detector: NRCA3
2022-03-16 13:47:47,697 - stpipe.Image2Pipeline.photom - INFO -  exp_type: NRC_TSIMAGE
2022-03-16 13:47:47,699 - stpipe.Image2Pipeline.photom - INFO -  filter: F210M
2022-03-16 13:47:47,701 - stpipe.Image2Pipeline.photom - INFO -  pupil: WLP8
2022-03-16 13:47:47,768 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2022-03-16 13:47:47,771 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 4.93778
2022-03-16 13:47:49,434 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2022-03-16 13:47:49,436 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg003_nrca3_1
2022-03-16 13:47:49,438 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg004_nrca3_1
2022-03-16 13:47:49,439 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg004_nrca3_1_rampfitstep.fits ...
2022-03-16 13:48:19,988 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg004_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:48:19,991 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2022-03-16 13:48:20,472 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0.
2022-03-16 13:48:25,064 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS  119.767032966 15.398039752 119.765593894 15.396266039 119.780195294 15.385212635 119.781670330 15.386975194
2022-03-16 13:48:25,066 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  119.767032966 15.398039752 119.765593894 15.396266039 119.780195294 15.385212635 119.781670330 15.386975194
2022-03-16 13:48:25,068 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2022-03-16 13:48:25,169 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2022-03-16 13:48:25,538 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg004_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:48:25,541 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2022-03-16 13:48:33,495 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat
2022-03-16 13:48:51,306 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2022-03-16 13:48:51,520 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg004_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:48:51,523 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'inverse': False, 'source_type': None}
2022-03-16 13:48:51,587 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0093.fits
2022-03-16 13:48:51,589 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0031.fits
2022-03-16 13:48:56,177 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM
2022-03-16 13:48:56,180 - stpipe.Image2Pipeline.photom - INFO -  detector: NRCA3
2022-03-16 13:48:56,181 - stpipe.Image2Pipeline.photom - INFO -  exp_type: NRC_TSIMAGE
2022-03-16 13:48:56,182 - stpipe.Image2Pipeline.photom - INFO -  filter: F210M
2022-03-16 13:48:56,183 - stpipe.Image2Pipeline.photom - INFO -  pupil: WLP8
2022-03-16 13:48:56,257 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2022-03-16 13:48:56,260 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 4.93778
2022-03-16 13:48:57,857 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2022-03-16 13:48:57,859 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg004_nrca3_1
2022-03-16 13:48:57,862 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg005_nrca3_1
2022-03-16 13:48:57,864 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg005_nrca3_1_rampfitstep.fits ...
2022-03-16 13:49:42,404 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg005_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:49:42,407 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2022-03-16 13:49:42,896 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0.
2022-03-16 13:49:49,593 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS  119.767032966 15.398039752 119.765593894 15.396266039 119.780195294 15.385212635 119.781670330 15.386975194
2022-03-16 13:49:49,600 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  119.767032966 15.398039752 119.765593894 15.396266039 119.780195294 15.385212635 119.781670330 15.386975194
2022-03-16 13:49:49,602 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2022-03-16 13:49:49,706 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2022-03-16 13:49:50,226 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg005_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:49:50,229 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2022-03-16 13:50:05,351 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat
2022-03-16 13:50:26,053 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2022-03-16 13:50:26,341 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg005_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:50:26,344 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'inverse': False, 'source_type': None}
2022-03-16 13:50:26,409 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0093.fits
2022-03-16 13:50:26,410 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0031.fits
2022-03-16 13:50:31,983 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM
2022-03-16 13:50:31,985 - stpipe.Image2Pipeline.photom - INFO -  detector: NRCA3
2022-03-16 13:50:31,986 - stpipe.Image2Pipeline.photom - INFO -  exp_type: NRC_TSIMAGE
2022-03-16 13:50:31,988 - stpipe.Image2Pipeline.photom - INFO -  filter: F210M
2022-03-16 13:50:31,989 - stpipe.Image2Pipeline.photom - INFO -  pupil: WLP8
2022-03-16 13:50:32,308 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2022-03-16 13:50:32,313 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 4.93778
2022-03-16 13:50:33,958 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2022-03-16 13:50:33,960 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg005_nrca3_1
2022-03-16 13:50:33,961 - stpipe.Image2Pipeline - INFO - Processing product /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg006_nrca3_1
2022-03-16 13:50:33,963 - stpipe.Image2Pipeline - INFO - Working on input /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg006_nrca3_1_rampfitstep.fits ...
2022-03-16 13:50:38,532 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(81, 256, 2048) from jw01185016001_01101_00001-seg006_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:50:38,535 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2022-03-16 13:50:39,016 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0.
2022-03-16 13:50:42,638 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS  119.767032966 15.398039752 119.765593894 15.396266039 119.780195294 15.385212635 119.781670330 15.386975194
2022-03-16 13:50:42,640 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS  119.767032966 15.398039752 119.765593894 15.396266039 119.780195294 15.385212635 119.781670330 15.386975194
2022-03-16 13:50:42,641 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs
2022-03-16 13:50:42,745 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done
2022-03-16 13:50:42,953 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(81, 256, 2048) from jw01185016001_01101_00001-seg006_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:50:42,956 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2022-03-16 13:50:46,886 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat
2022-03-16 13:50:51,623 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done
2022-03-16 13:50:51,773 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(81, 256, 2048) from jw01185016001_01101_00001-seg006_nrca3_1_rampfitstep.fits>,).
2022-03-16 13:50:51,776 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'inverse': False, 'source_type': None}
2022-03-16 13:50:51,841 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_photom_0093.fits
2022-03-16 13:50:51,842 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_area_0031.fits
2022-03-16 13:50:53,800 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM
2022-03-16 13:50:53,801 - stpipe.Image2Pipeline.photom - INFO -  detector: NRCA3
2022-03-16 13:50:53,802 - stpipe.Image2Pipeline.photom - INFO -  exp_type: NRC_TSIMAGE
2022-03-16 13:50:53,803 - stpipe.Image2Pipeline.photom - INFO -  filter: F210M
2022-03-16 13:50:53,804 - stpipe.Image2Pipeline.photom - INFO -  pupil: WLP8
2022-03-16 13:50:53,882 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output.
2022-03-16 13:50:53,885 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 4.93778
2022-03-16 13:50:54,301 - stpipe.Image2Pipeline.photom - INFO - Step photom done
2022-03-16 13:50:54,302 - stpipe.Image2Pipeline - INFO - Finished processing product /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg006_nrca3_1
2022-03-16 13:50:54,304 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2
2022-03-16 13:51:08,506 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg001_nrca3_1_calints.fits
2022-03-16 13:51:42,667 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg002_nrca3_1_calints.fits
2022-03-16 13:52:25,126 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg003_nrca3_1_calints.fits
2022-03-16 13:52:33,467 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg004_nrca3_1_calints.fits
2022-03-16 13:52:41,910 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg005_nrca3_1_calints.fits
2022-03-16 13:52:43,903 - stpipe.Image2Pipeline - INFO - Saved model in /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/jw01185016001_01101_00001-seg006_nrca3_1_calints.fits
2022-03-16 13:52:43,905 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done
Stage 2 Execution Time in Seconds: 510.37628078460693

$\textbf{OUTPUT FILES:}$ The output is a fully calibrated, but unrectified, exposure, using the product type suffix “_cal” or “_calints”, depending on the type of input.

In [8]:
all_calints_files = [] # All Calibrated Data File Names. Also used to check that all the calints files exist.  
for fitsName in glob.glob(output_dir + '*nrca3_1_calints.fits'): #Grabbing only nrca3 files from the directory
    HDUList = fits.open(fitsName, 'update')
    HDUList[1].header['XREF_SCI'] = (1056, 'Aperture X reference point in SCI frame') #Fix x-position centering
    HDUList[1].header['YREF_SCI'] = (167, 'Aperture Y reference point in SCI frame') #Fix the y-position centering
    HDUList.close()
    all_calints_files.append(fitsName)
all_calints_files = sorted(all_calints_files) #sort files alphabetically. 
In [9]:
#Generate an association file required for stage 3
asn_dir = '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/' #Name the association file's directory. 
level3_asn = (os.path.join(asn_dir, 'nrca3_level3_asn.json')) #Name the stage 3 association file and give it a path.
asn_stage3 = asn_from_list(all_calints_files, product_name ='GJ3470b_nrca3_level3_asn') #The rateints files; Name the output..
with open(level3_asn, 'w') as fh: #Write an association file. 
   fh.write(asn_stage3.dump()[1])

$\textbf{Stage 3}$¶

$\textbf{Applies level 3 processing to TSO-mode data from}$¶

Stage 3 processing consists of routines that work with multiple exposures and in most cases produce some kind of combined product. There are unique pipeline modules for stage 3 processing of imaging, spectroscopic, coronagraphic, AMI, and TSO observations.

$\textbf{Tso3Pipeline:}$¶

The Stage 3 TSO pipeline is to be applied to associations of calibrated TSO exposures (e.g. NIRCam TS imaging, NIRCam TS grism, NIRISS SOSS, NIRSpec BrightObj, MIRI LRS Slitless) and is used to produce calibrated time-series photometry or spectra of the source object. This is a pipeline customized for TSO data. Grism TSO data undergo outlier detection (essentially a check for any cosmic rays/transient effects that were missed in Detector1Pipeline), background subtraction, spectral extraction, and photometry. Imaging TSO data are run through outlier detection, and photometry is performed.

The logic that decides whether to apply the imaging or spectroscopy steps is based on the EXP_TYPE and TSOVISIT keyword values of the input data. Imaging steps are applied if either of the following is true:

  • EXP_TYPE = ‘NRC_TSIMAGE’

  • EXP_TYPE = ‘MIR_IMAGE’ and TSOVISIT = True

$\textbf{INPUT FILES:}$ The spectroscopy steps will be applied in all other cases. The input to calwebb_tso3 is in the form of an ASN file that lists multiple exposures or exposure segments of a science target. The individual inputs should be in the form of 3D calibrated (“_calints”) products from either calwebb_image2 or calwebb_spec2 processing.

In [10]:
#The file to use is the stage 3 association file defined above. 

# Instantiate the class. Do not provide a configuration file.
pipeline_stage3 = Tso3Pipeline()

pipeline_stage3.outlier_detection.skip = True

# Specify that you want results saved to a file
pipeline_stage3.save_results = True
pipeline_stage3.output_dir = '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/'

# Execute the pipeline using the run method
result_stage3 = pipeline_stage3.run(level3_asn)
2022-03-16 14:02:45,450 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created.
2022-03-16 14:02:45,457 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2022-03-16 14:02:45,462 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created.
2022-03-16 14:02:45,468 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created.
2022-03-16 14:02:45,473 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created.
2022-03-16 14:02:45,610 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/nrca3_level3_asn.json',).
2022-03-16 14:02:45,622 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '', 'min_wavelength': None, 'max_wavelength': None}}}
2022-03-16 14:02:51,604 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw01185016001_01101_00001-seg001_nrca3_1_calints.fits' reftypes = ['gain', 'readnoise']
2022-03-16 14:02:52,633 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits'.
2022-03-16 14:02:52,635 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits'.
2022-03-16 14:02:52,637 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3...
2022-03-16 14:03:45,866 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:03:46,174 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:03:46,178 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:03:46,179 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:03:46,329 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:04:12,408 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:04:12,728 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:04:12,732 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:04:12,734 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:04:12,883 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:04:40,096 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:04:40,430 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:04:40,436 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:04:40,437 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:04:40,593 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:05:07,524 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:05:07,853 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:05:07,857 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:05:07,859 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:05:08,011 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:05:34,878 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:05:35,213 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:05:35,218 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:05:35,219 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:05:35,373 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:05:42,202 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:05:42,716 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:05:42,720 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:05:42,721 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:05:42,761 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:05:43,137 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg001_nrca3_1_calints.fits>,).
2022-03-16 14:05:43,139 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:05:45,446 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:05:45,595 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg002_nrca3_1_calints.fits>,).
2022-03-16 14:05:45,598 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:05:47,736 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:05:47,869 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg003_nrca3_1_calints.fits>,).
2022-03-16 14:05:47,872 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:05:50,019 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:05:50,155 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg004_nrca3_1_calints.fits>,).
2022-03-16 14:05:50,158 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:05:52,309 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:05:52,481 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg005_nrca3_1_calints.fits>,).
2022-03-16 14:05:52,484 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:05:54,601 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:05:54,738 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(81, 256, 2048) from jw01185016001_01101_00001-seg006_nrca3_1_calints.fits>,).
2022-03-16 14:05:54,741 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:05:55,376 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:05:55,388 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/GJ3470b_nrca3_level3_asn_phot.ecsv
2022-03-16 14:05:55,555 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done

$\textbf{OUTPUT FILES:}$ For imaging TS observations, the tso_photometry step produces a source catalog containing photometry results from all of the “_crfints” products, organized as a function of integration time stamps. This file is saved in ASCII “ecsv” format, with a product type of “_phot.” The file naming is source-based, using the output product name specified in the ASN file.

$\textbf{Plotting Results: Unaltered}$¶

Initial pipeline results without altering the aperture sizes. In this particular simulation, there is an edge effect (the observation is cut off on the top and bottom). We want to see how observations that turn out this way in real life can effect the results the pipline returns.

TSOPHOT reference files are ASDF format. An object called ‘radii’ in a TSOPHOT file defines the radii that the step needs. This object is a list of one or more dictionaries. Each such dictionary has four keys: ‘pupil’, ‘radius’, ‘radius_inner’, and ‘radius_outer’. The particular one of these dictionaries to use is selected by comparing meta.instrument.pupil with the value corresponding to ‘pupil’ in each dictionary. If an exact match is found, that dictionary will be used. If no match is found, the first dictionary with ‘pupil’: ‘ANY’ will be selected. The radii will be taken from the values of keys ‘radius’, ‘radius_inner’, and ‘radius_outer’.

The original radii parameters are:

`radii': [{'pupil': 'WLP8', 'radius': 50.0, 'radius_inner': 60.0, 'radius_outer': 70.0}, {'pupil': 'ANY', 'radius': 3.0, 'radius_inner': 4.0, 'radius_outer': 5.0}]}

The issue with these paramters is that our pupil = CLEAR therefore, it is using default pupil = ANY. If we plot this with tshirt, it is only capturing a small region of the target.This is also after altering the apertures to be centered. `

In [11]:
#Print the stage 3 result file with all the data
with open('/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/GJ3470b_nrca3_level3_asn_phot.ecsv', 'r') as file:
    reader = csv.reader(file)
    for row in reader:
        print(row)
['# %ECSV 0.9']
['# ---']
['# datatype:']
['# - {name: MJD', ' datatype: float64}']
['# - {name: aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean_err', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg_err', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# meta: !!omap']
['# - {instrument: NIRCAM}']
['# - {detector: NRCA3}']
['# - {channel: SHORT}']
['# - {subarray: SUBGRISM256}']
['# - {filter: F210M}']
['# - {pupil: WLP8}']
['# - {target_name: UNKNOWN}']
['# - {xcenter: 1055}']
['# - {ycenter: 166}']
['# - ra_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       WFgwQkNJUHhYVUE9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - dec_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       S2Yva3ZVM0lMa0E9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - {apertures: Photometry measured in a circular aperture of r=50.0 pixels.  Background calculated as the mean in a circular annulus']
['#     with r_inner=60.0 pixels and r_outer=70.0 pixels.}']
['# - {number_of_integrations: 1681}']
['# - __serialized_columns__:']
['#     annulus_mean:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: &id001 !astropy.units.Unit {unit: Jy}']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean}']
['#     annulus_mean_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean_err}']
['#     annulus_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum}']
['#     annulus_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum_err}']
['#     aperture_bkg:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg}']
['#     aperture_bkg_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg_err}']
['#     aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum}']
['#     aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum_err}']
['#     net_aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum}']
['#     net_aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum_err}']
['# schema: astropy-2.0']
['MJD aperture_sum aperture_sum_err annulus_sum annulus_sum_err annulus_mean annulus_mean_err aperture_bkg aperture_bkg_err net_aperture_sum net_aperture_sum_err']
['59906.93615787118 0.3068671214217737 5.257635375127501e-05 0.026034498165515653 1.3576977607863326e-05 6.374644729167227e-06 3.3243739977529616e-09 0.05006634262599164 2.610957232281409e-05 0.25680077879578206 5.87024934790633e-05']
['59906.93629815139 0.3068375708751646 5.257406711417617e-05 0.026055396198853192 1.3579390142895793e-05 6.379761691177333e-06 3.3249647160234227e-09 0.05010653115164076 2.6114211813261146e-05 0.25673103972352385 5.8702509244101045e-05']
['59906.9364384316 0.30696966842496465 5.258395531883859e-05 0.02604541408551521 1.3578969653316043e-05 6.377317533207727e-06 3.3248617575693674e-09 0.05008733477983694 2.6113403179453933e-05 0.2568823336451277 5.8711005634261863e-05']
['59906.93657871181 0.3068682207189902 5.2576159050036805e-05 0.02600027769752082 1.3576181648725963e-05 6.366265718957542e-06 3.324179104166484e-09 0.050000534033693894 2.6108041632165317e-05 0.25686768668529636 5.8701638293335944e-05']
['59906.936718992016 0.306996936004593 5.258409951166849e-05 0.02603704713632419 1.3577891764345187e-05 6.3752688542502665e-06 3.324597832403497e-09 0.05007124449293114 2.611133031604844e-05 0.25692569151166184 5.871021284518431e-05']
['59906.936859272224 0.3068763106818081 5.257827792409715e-05 0.026044026340560005 1.3577608570514338e-05 6.376977738639463e-06 3.3245284913296e-09 0.05008466603953847 2.6110785712527578e-05 0.2567916446422696 5.870475653632452e-05']
['59906.93699955243 0.30691750358720177 5.258122738864118e-05 0.026025498886265045 1.3578124905948616e-05 6.372441221817999e-06 3.324654918001383e-09 0.050049036319740475 2.6111778665285802e-05 0.25686846726746126 5.870783984069644e-05']
['59906.93713983264 0.30690636716249453 5.2590423556102514e-05 0.026057417510177424 1.357934884530715e-05 6.380256616852378e-06 3.324954604153622e-09 0.05011041828880274 2.6114132394821446e-05 0.2567959488736918 5.871712323117103e-05']
['59906.93728011285 0.30691219813273973 5.258097214078119e-05 0.02605530603813253 1.3580912351993977e-05 6.379739614986e-06 3.3253374346424924e-09 0.05010635776563948 2.611713913844996e-05 0.25680584036710025 5.8709995639982484e-05']
['59906.93742039306 0.30694238972834764 5.25825876663734e-05 0.026099792611559286 1.3582668201170607e-05 6.390632319696906e-06 3.32576736091293e-09 0.05019190886838325 2.6120515771481938e-05 0.2567504808599644 5.871294465328818e-05']
['59906.937560673265 0.30684375848445433 5.257623949284005e-05 0.02602469601478189 1.3577987996741119e-05 6.372244635717673e-06 3.32462139526734e-09 0.05004749233611903 2.611151537834831e-05 0.2567962661483353 5.8703255400038876e-05']
['59906.93770095347 0.3069292939165408 5.2581393816437547e-05 0.026021853855298448 1.3577208536223097e-05 6.371548722285603e-06 3.3244305414298195e-09 0.050042026644804706 2.611001641581365e-05 0.25688726727173605 5.870720511924712e-05']
['59906.93784123368 0.3069299206400051 5.2579590638658126e-05 0.02605212448400328 1.357935493392183e-05 6.378960599499255e-06 3.3249560949738108e-09 0.050100239392314005 2.6114144103695828e-05 0.2568296812476911 5.87074260549503e-05']
['59906.93798151389 0.3068993314928604 5.258796971274372e-05 0.02607389104488151 1.3586657696715076e-05 6.384290223742149e-06 3.326744203891923e-09 0.05014209816323368 2.6128187878298227e-05 0.25675723332962674 5.872117812435392e-05']
['59906.9381217941 0.3069521926934675 5.258299051935801e-05 0.02599423766249978 1.3576385899893272e-05 6.364786793680546e-06 3.3242291158324987e-09 0.049988918581730345 2.610843442287168e-05 0.2569632741117372 5.870793166150793e-05']
['59906.938262074305 0.30687700038219423 5.2578847362121067e-05 0.026006919913113928 1.3578096439366961e-05 6.367892090410965e-06 3.32464794785187e-09 0.0500133075252191 2.6111723921859542e-05 0.25686369285697513 5.87056838483348e-05']
['59906.93840235451 0.3068773507970949 5.257843953580078e-05 0.026051575772313207 1.3579095149560207e-05 6.378826245379551e-06 3.3248924857964416e-09 0.0500991841775254 2.6113644518385018e-05 0.2567781666195695 5.870617287860313e-05']
['59906.93854263472 0.3068785870303374 5.25828700963512e-05 0.026047499560251382 1.3578660567613004e-05 6.37782816953535e-06 3.324786076773248e-09 0.05009134530817574 2.6112808783871164e-05 0.25678724172216166 5.870976929057689e-05']
['59906.93868291493 0.3068552146509941 5.258775123372071e-05 0.026039700783310152 1.3578124330245456e-05 6.375918609688785e-06 3.3246547770383004e-09 0.05007634766021184 2.611177755816434e-05 0.25677886699078223 5.8713682451935755e-05']
['59906.93882319514 0.30695494185104705 5.2579625309061596e-05 0.026047075312555505 1.357832888074821e-05 6.377724290892436e-06 3.3247048619977235e-09 0.05009052944722213 2.611217092451579e-05 0.2568644124038249 5.8706579427117354e-05']
['59906.938963475346 0.30689885172128006 5.257864381535594e-05 0.026002076230163824 1.3577065605156264e-05 6.366706096435151e-06 3.3243955442208845e-09 0.05000399275031505 2.610974154837743e-05 0.25689485897096503 5.870461982829915e-05']
['59906.939103755554 0.3069128565360194 5.257976657605461e-05 0.02604038235794502 1.3577536427258032e-05 6.376085495799901e-06 3.324510826782136e-09 0.050077658380663505 2.6110646975496217e-05 0.2568351981553559 5.870602812890155e-05']
['59906.93924403576 0.3068553329168673 5.257757210143742e-05 0.02605901445936094 1.3578257591545055e-05 6.380647635862259e-06 3.3246874065683836e-09 0.050113489344924884 2.611203382989434e-05 0.2567418435719424 5.870467953081251e-05']
['59906.93938431597 0.30688427365949056 5.2588803893121814e-05 0.026017962597777375 1.3576635429384778e-05 6.370595933255877e-06 3.3242902140663763e-09 0.050034543457264186 2.6108914287278422e-05 0.25684973020222635 5.87133519752507e-05']
['59906.93952459618 0.30690425221075124 5.257907523812887e-05 0.026056514456370097 1.358017233074604e-05 6.380035500733433e-06 3.325156237658489e-09 0.05010868164686558 2.6115716020665464e-05 0.2567955705638857 5.870766369196495e-05']
['59906.93966487639 0.3068990216577249 5.257787585937974e-05 0.026037459406494726 1.3577284885668896e-05 6.375369800151082e-06 3.3244492358785908e-09 0.05007203732018217 2.6110163241670956e-05 0.25682698433754275 5.870411956916697e-05']
['59906.939805156595 0.30691417842362434 5.258080128520478e-05 0.026056277183179426 1.3580475469713137e-05 6.379977403500881e-06 3.3252304623739617e-09 0.05010822535226813 2.6116298980217573e-05 0.25680595307135623 5.870946888039702e-05']
['59906.9399454368 0.30692092138747146 5.25792856875287e-05 0.026047297220106003 1.3590170615534432e-05 6.3777786257902386e-06 3.327604355268509e-09 0.05009095619251155 2.6134943491412372e-05 0.25682996519495993 5.871640788323208e-05']
['59906.94008571701 0.3068900206764468 5.257693973858453e-05 0.026027822003961067 1.3577235038345812e-05 6.3730100459175465e-06 3.3244370305741774e-09 0.05005350385377129 2.6110067381434256e-05 0.2568365168226755 5.870323850468376e-05']
['59906.94022599722 0.3068819477100375 5.257642946959005e-05 0.02601451895464442 1.357691195576401e-05 6.369752744291485e-06 3.3243579225896843e-09 0.05002792106662389 2.6109446068776944e-05 0.2568540266434136 5.870250514065945e-05']
['59906.94036627743 0.30684745373822075 5.2575736647708026e-05 0.026029643708004507 1.3584442945152885e-05 6.373456096999645e-06 3.3262019136475484e-09 0.0500570071307779 2.6123928740678625e-05 0.2567904466074429 5.870832766224229e-05']
['59906.940506557636 0.30689246707276585 5.2578003520243366e-05 0.026074730303670305 1.357861782166119e-05 6.384495719411025e-06 3.3247756102662813e-09 0.050143712122442896 2.6112726580117676e-05 0.25674875495032295 5.870537406083627e-05']
['59906.940646837844 0.3068685822352588 5.257778662345973e-05 0.026038079879567542 1.3577261740334866e-05 6.3755217253150735e-06 3.3244435686565596e-09 0.050073230537629895 2.6110118731413206e-05 0.2567953516976289 5.870401984864883e-05']
['59906.94078711805 0.3069091936044103 5.2579555704290024e-05 0.026031161045413087 1.3577725352941655e-05 6.373827622767205e-06 3.3245570859458675e-09 0.05005992508733286 2.611101029411857e-05 0.25684926851707746 5.870600085715346e-05']
['59906.94092739827 0.3069027349302937 5.2578969960977745e-05 0.02608246752349895 1.3580332603763923e-05 6.386390206767207e-06 3.32519548110932e-09 0.05015859139134414 2.6116024238007545e-05 0.25674414353894953 5.8707706514201336e-05']
['59906.941067678476 0.30690116119222055 5.257958254021656e-05 0.02603846421709655 1.3579522734584032e-05 6.3756158318036224e-06 3.3249971815966474e-09 0.0500739696482626 2.6114466797276988e-05 0.25682719154395794 5.870756234259372e-05']
['59906.941207958684 0.306947871793362 5.2591643979157074e-05 0.02608121256554837 1.3578751386523913e-05 6.3860829255961184e-06 3.324808314124936e-09 0.05015617801066995 2.6112983435622908e-05 0.25679169378269207 5.871770533952706e-05']
['59906.94134823889 0.30695742409761795 5.258204365894312e-05 0.026053280793320224 1.3577877984832932e-05 6.379243726181616e-06 3.324594458438129e-09 0.050102463064077354 2.611130381698641e-05 0.2568549610335406 5.870835973159162e-05']
['59906.9414885191 0.3069223079491646 5.258016142303599e-05 0.026059038680340457 1.3578288228186804e-05 6.380653566460131e-06 3.3246949080652665e-09 0.050113535923731654 2.6112092746513086e-05 0.25680877202543295 5.870702481709513e-05']
['59906.94162879931 0.3068441234275543 5.257485610641468e-05 0.026039990522079785 1.3577018153125608e-05 6.375989553315542e-06 3.3243839254128252e-09 0.05007690485015343 2.6109650294472327e-05 0.25676721857740087 5.870118681176597e-05']
['59906.941769079516 0.30684955354359433 5.2575285100901916e-05 0.026042104213864027 1.35783095294427e-05 6.376507098693442e-06 3.324700123757836e-09 0.05008096964204621 2.6112133710466734e-05 0.2567685839015481 5.870267566605812e-05']
['59906.941909359724 0.30681515860842606 5.2574016475678306e-05 0.02604472269802781 1.3577852809599825e-05 6.3771482443827865e-06 3.3245882941876792e-09 0.050086005188515026 2.6111255403076588e-05 0.25672915341991104 5.87011487716347e-05']
['59906.94204963993 0.30692399677518944 5.258027713387937e-05 0.026045085082201845 1.3585350235417114e-05 6.377236975509858e-06 3.326424067078889e-09 0.050086702081157404 2.6125673529648298e-05 0.25683729469403205 5.871317025040739e-05']
['59906.94218992014 0.3068513010745289 5.2575816935333255e-05 0.026028050232648425 1.3579716522391778e-05 6.373065928569467e-06 3.3250446312697455e-09 0.05005394275509313 2.611483946613804e-05 0.2567973583194358 5.8704355602968986e-05']
['59906.94233020035 0.306899577775763 5.25777949335575e-05 0.026028107594329147 1.357744984243792e-05 6.373079973792592e-06 3.324489626163493e-09 0.050054053066017595 2.611048046622677e-05 0.2568455247097454 5.870418818323301e-05']
['59906.94247048056 0.3068165190227152 5.257416819413926e-05 0.02603885871979599 1.357800652143504e-05 6.37571242727236e-06 3.3246259311082733e-09 0.05007472830729999 2.6111551002759693e-05 0.2567417907154152 5.870141614199239e-05']
['59906.942610760765 0.30696437504420326 5.258579198773825e-05 0.026051247842773486 1.3579662610647122e-05 6.378745950599193e-06 3.3250314307764335e-09 0.050098553543795166 2.6114735789706006e-05 0.2568658215004081 5.871324334716852e-05']
['59906.94275104097 0.30695089743088183 5.258282015840211e-05 0.026042039667602487 1.3577369335543506e-05 6.3764912942987e-06 3.3244699137478028e-09 0.05008084551462017 2.6110325645275975e-05 0.25687005191626167 5.870862016018785e-05']
['59906.94289132118 0.3069677667018743 5.2585186387517696e-05 0.026054444760674277 1.3580250266583145e-05 6.379528727963147e-06 3.325175320541134e-09 0.050104701462835154 2.611586589727528e-05 0.2568630652390392 5.871320361702674e-05']
['59906.94303160139 0.3067892555789913 5.25718148006404e-05 0.026038461953100174 1.3577540317815301e-05 6.375615277455601e-06 3.324511779399706e-09 0.05007396529442342 2.6110654457337118e-05 0.25671529028456785 5.8698909594840786e-05']
['59906.9431718816 0.30685692149687316 5.2577749809781655e-05 0.026014570422655536 1.357825667958059e-05 6.369765346427455e-06 3.3246871832704565e-09 0.05002802004356834 2.6112032076116523e-05 0.25682890145330484 5.870483791140329e-05']
['59906.943312161806 0.3068174361715671 5.2583007208386206e-05 0.026029569733944914 1.3577335956536552e-05 6.3734379841731144e-06 3.3244617407724914e-09 0.050056864872970994 2.6110261454877987e-05 0.2567605712985961 5.870875914477569e-05']
['59906.943452442014 0.30691458211514666 5.2577927080704436e-05 0.02605658200108323 1.3578505608838957e-05 6.380052039310317e-06 3.324748134534994e-09 0.050108811540544675 2.6112510786228767e-05 0.25680577057460197 5.87052096126467e-05']
['59906.94359272222 0.30690241108910477 5.257968212518343e-05 0.026035009005497774 1.357856296453456e-05 6.374769810256894e-06 3.32476217829264e-09 0.05006732501057264 2.6112621085643388e-05 0.2568350860785321 5.8706830542516275e-05']
['59906.94373300243 0.30699885546261024 5.258549029747789e-05 0.026048720177451357 1.35778680505524e-05 6.3781270422445795e-06 3.324592025992202e-09 0.05009369264894492 2.6111284712600773e-05 0.2569051628136653 5.871143823113721e-05']
['59906.94387328264 0.3068128195894239 5.257452351704132e-05 0.026051676450688552 1.3582001852493256e-05 6.3788508968581644e-06 3.3256042029347407e-09 0.05009937778978568 2.6119234331717803e-05 0.25671344179963823 5.870515245801783e-05']
['59906.94401356285 0.3068708321652478 5.257897068553695e-05 0.026080762861719665 1.3590757692576358e-05 6.385972813923401e-06 3.3277481032888143e-09 0.05015531319561474 2.6136072485723768e-05 0.25671551896963307 5.8716628337546434e-05']
['59906.944153843055 0.3067658850325039 5.2571261713966025e-05 0.026018877356901865 1.3576943786918275e-05 6.3708199154657245e-06 3.3243657165674463e-09 0.05003630260942667 2.6109507282535145e-05 0.25672958242307725 5.869790395521007e-05']
['59906.94429412326 0.3068487601915216 5.257609501925692e-05 0.02604405922968498 1.3578908245569766e-05 6.376985791665331e-06 3.324846721651884e-09 0.050084729287855734 2.6113285087634166e-05 0.25676403090366584 5.870391320467477e-05']
['59906.94443440347 0.3068775811413777 5.258356503240312e-05 0.026021575360327072 1.3580616954983716e-05 6.37148053174511e-06 3.32526510557425e-09 0.05004149107755207 2.611657106727638e-05 0.25683609006382563 5.871206516406203e-05']
['59906.94457468368 0.30690051822116654 5.2580779785086676e-05 0.02601288934309057 1.3575564776276202e-05 6.369353727777463e-06 3.3240280606285814e-09 0.0500247871982511 2.61068553389927e-05 0.25687573102291544 5.870524932660512e-05']
['59906.94471496389 0.3068331670888237 5.25832384641961e-05 0.026016385406399577 1.3577018842003413e-05 6.3702097520189865e-06 3.3243840940871448e-09 0.05003151039692227 2.6109651619237335e-05 0.2568016566919014 5.8708695054995514e-05']
['59906.944855244095 0.3068483803683853 5.2581773591746864e-05 0.026037917652224147 1.35773550939451e-05 6.375482003340295e-06 3.3244664266389044e-09 0.05007291856196952 2.6110298257586732e-05 0.25677546180641575 5.870767061597543e-05']
['59906.9449955243 0.30681343317807785 5.257378735471242e-05 0.026014168663365575 1.3576473318950892e-05 6.369666974155254e-06 3.3242505207173304e-09 0.050027247429549185 2.6108602536444026e-05 0.2567861857485287 5.869976357043128e-05']
['59906.94513580451 0.30684300991046715 5.2582285109793094e-05 0.02602088419557445 1.35767627628316e-05 6.3713112974576164e-06 3.3243213921394267e-09 0.050040161914566256 2.6109159159291544e-05 0.2568028479959009 5.870762215737226e-05']
['59906.94527608472 0.3068458709915059 5.258075829865062e-05 0.026036386791531974 1.3582508187746272e-05 6.375107166345918e-06 3.3257281810245546e-09 0.05006997459909995 2.6120208053358217e-05 0.25677589639240594 5.8711169397413944e-05']
['59906.94541636493 0.30690799904258126 5.2579612789980704e-05 0.026041380756709587 1.3580481652545808e-05 6.3763299574899895e-06 3.32523197626378e-09 0.05007957837828767 2.6116310870280403e-05 0.25682842066429357 5.8708409743557424e-05']
['59906.945556645136 0.3069117888213079 5.257971222401771e-05 0.026048920592091383 1.3578310018458394e-05 6.378176114522469e-06 3.3247002434951662e-09 0.0500940780617142 2.6112134650881526e-05 0.2568177107595937 5.870664113698113e-05']
['59906.945696925344 0.3069063657872503 5.258212085277758e-05 0.02602127978519382 1.3576756402321607e-05 6.371408159062784e-06 3.324319834744648e-09 0.050040922663834274 2.610914692754155e-05 0.256865443123416 5.870746959851071e-05']
['59906.94583720555 0.3068612929051188 5.2575871594825e-05 0.026046863220833993 1.357957376167367e-05 6.3776723594372555e-06 3.3250096757713358e-09 0.050090121578526915 2.6114564926295523e-05 0.2567711713265919 5.8704282426797714e-05']
['59906.94597748576 0.3069611403806794 5.25862927094282e-05 0.026021427815699504 1.3577735069463733e-05 6.371444404888488e-06 3.3245594650728187e-09 0.05004120733788366 2.611102897973795e-05 0.25691993304279576 5.871204318793868e-05']
['59906.94611776597 0.30687634157952715 5.257732029907131e-05 0.026049874118446167 1.3578053289307077e-05 6.378409589034365e-06 3.3246373823975236e-09 0.05009591176624263 2.611164094097515e-05 0.2567804298132845 5.8704279251699746e-05']
['59906.946258046184 0.30685472843708167 5.257565745036578e-05 0.02633480555730512 1.3792102160524543e-05 6.448176122783117e-06 3.3770480530398315e-09 0.05064385684097139 2.6523273385624123e-05 0.2562108715961103 5.888704261063515e-05']
['59906.94639832639 0.3068518297137215 5.2578805420414604e-05 0.026013422635534543 1.3575476490018406e-05 6.369484306436804e-06 3.3240064434065273e-09 0.05002581276064336 2.6106685557727707e-05 0.25682601695307816 5.8703405439956283e-05']
['59906.9465386066 0.3068678393574348 5.2579486722239585e-05 0.02602337749929615 1.3575992673505744e-05 6.371921792245214e-06 3.3241328328735305e-09 0.05004495672941568 2.610767821828028e-05 0.2568228826280191 5.870445712144381e-05']
['59906.94667888681 0.30681577452392783 5.2572364729987766e-05 0.026039887902712295 1.3577425651993872e-05 6.375964426577707e-06 3.324483703042346e-09 0.05007670750521596 2.6110433946142064e-05 0.25673906701871185 5.869930403470479e-05']
['59906.94681916702 0.30695336749767355 5.258288640072904e-05 0.026033126782600995 1.357909932552497e-05 6.374308940906089e-06 3.3248935082971095e-09 0.05006370535115576 2.6113652549086485e-05 0.25688966214651776 5.8710159186348536e-05']
['59906.946959447225 0.30693918479880455 5.2580658529467666e-05 0.0260335959898788 1.3578975656814602e-05 6.374423828071623e-06 3.3248632275485545e-09 0.05006460767284385 2.6113414724643467e-05 0.25687457712596073 5.8708058049757595e-05']
['59906.94709972743 0.30688398127342054 5.257743490810784e-05 0.026048276116761228 1.3578984142419448e-05 6.378018312315554e-06 3.3248653052807947e-09 0.050092838686079284 2.6113431043114324e-05 0.25679114258734126 5.870517815627344e-05']
['59906.94724000764 0.3068530975856748 5.257603170109169e-05 0.02599882736632068 1.3575673500140384e-05 6.3659105999119685e-06 3.3240546820753764e-09 0.04999774493523208 2.6107064423346895e-05 0.25685535265044274 5.8701089617135584e-05']
['59906.94738028785 0.30698683085831413 5.25840982044251e-05 0.02605526766979914 1.3580018903017281e-05 6.379730220355358e-06 3.3251186703024287e-09 0.050106283980382964 2.611542096734093e-05 0.25688054687793116 5.8712031103293074e-05']
['59906.94752056806 0.30685447697700724 5.257561268218143e-05 0.026055878694252774 1.3584295544779937e-05 6.379879831989429e-06 3.326165822112213e-09 0.050107459027409186 2.6123645278422957e-05 0.25674701794959803 5.870809051178233e-05']
['59906.947660848266 0.30684559656777977 5.257461574791742e-05 0.026036016750793294 1.3577791580578389e-05 6.375016560480217e-06 3.324573302031645e-09 0.050069262982294804 2.611113765495844e-05 0.25677633358548496 5.870163311763443e-05']
['59906.947801128474 0.30690894104104255 5.2579137726441924e-05 0.026034909013619382 1.357708073108689e-05 6.37474532686964e-06 3.324399247861851e-09 0.050067132718498816 2.6109770636705562e-05 0.2568418083225437 5.870507513629056e-05']
['59906.94794140868 0.30694303617990865 5.258658640771087e-05 0.026047344197555555 1.3578906914354009e-05 6.3777901283953305e-06 3.3248463956987024e-09 0.05009104653376069 2.6113282527603867e-05 0.25685198964614797 5.871330849460029e-05']
['59906.94808168889 0.3068490148027922 5.257615108337955e-05 0.026040921420931225 1.3584279752545306e-05 6.376217487398197e-06 3.326161955324207e-09 0.05007869504025236 2.6123614908740975e-05 0.25677031976253983 5.870855915999426e-05']
['59906.9482219691 0.3068642743456703 5.257742772447245e-05 0.026036160285257626 1.3578056542553044e-05 6.375051705433297e-06 3.3246381789670263e-09 0.05006953901011082 2.6111647197217396e-05 0.2567947353355595 5.8704378247913296e-05']
['59906.948362249306 0.3069294041135945 5.2583541029352003e-05 0.0260240005234979 1.3576630864715455e-05 6.3720743420627125e-06 3.3242890963899357e-09 0.05004615485288058 2.6108905509068184e-05 0.25688324926071393 5.870863423779331e-05']
['59906.948502529514 0.306876044195473 5.2576781901946225e-05 0.026036589943571053 1.3579480432161009e-05 6.375156908886255e-06 3.324986823689372e-09 0.050070365276098185 2.611438544646348e-05 0.2568056789193748 5.870501786398914e-05']
['59906.94864280972 0.3068765925297021 5.257953268071415e-05 0.02606975709444808 1.3578475683582763e-05 6.383278010440645e-06 3.3247408072235376e-09 0.05013414825855401 2.6112453237659162e-05 0.2567424442711481 5.87066220371367e-05']
['59906.94878308993 0.30695252902077996 5.2589598531220836e-05 0.026049612115567153 1.3577706519432135e-05 6.378345436644674e-06 3.324552474490274e-09 0.05009540791455222 2.611097407583103e-05 0.2568571211062277 5.871497969737965e-05']
['59906.94892337014 0.3069239351727773 5.258226932862362e-05 0.02602623504221372 1.3577756004620513e-05 6.3726214723689495e-06 3.324564591124643e-09 0.05005045200425716 2.6111069239654833e-05 0.2568734831685201 5.870845752177416e-05']
['59906.94906365035 0.30678555322401135 5.257487817885994e-05 0.026025059167102398 1.3578118150008985e-05 6.372333554928294e-06 3.3246532637841715e-09 0.05004819070596615 2.6111765673094207e-05 0.2567373625180452 5.8702147508319864e-05']
['59906.949203930555 0.3068972901719732 5.2580416523861796e-05 0.02605868588937077 1.3584013809320289e-05 6.380567184265202e-06 3.3260968381259862e-09 0.050112857479559174 2.6123103479462094e-05 0.256784432692414 5.8712151529487345e-05']
['59906.94934421076 0.306956518685919 5.258113945222917e-05 0.02602307045043936 1.3577338494155012e-05 6.371846610178554e-06 3.324462362117909e-09 0.05004436625084493 2.6110266334913487e-05 0.2569121524350741 5.870708844913779e-05']
['59906.94948449097 0.3070049298021148 5.2587334157584066e-05 0.026037217379002504 1.3578367437998401e-05 6.375310538809927e-06 3.3247143028853544e-09 0.050071571882697126 2.611224507307385e-05 0.2569333579194177 5.8713516813061685e-05']
['59906.94962477118 0.30695544345940906 5.2582723870099894e-05 0.026037911063795535 1.3577999138468215e-05 6.375480390138786e-06 3.324624123361097e-09 0.050072905891914495 2.611153680474657e-05 0.2568825375674946 5.870907258597097e-05']
['59906.94976505139 0.3068465649521178 5.257460186393906e-05 0.026028120199195447 1.3577333930810628e-05 6.373083060141482e-06 3.324461244765885e-09 0.05005407730614509 2.611025755925121e-05 0.25679248764597273 5.870122921167954e-05']
['59906.949905331596 0.3070680149119324 5.259713110786383e-05 0.026036894427718997 1.357736341674139e-05 6.3752314629743144e-06 3.324468464506858e-09 0.05007095082253654 2.6110314262964212e-05 0.2569970640893959 5.87214331542459e-05']
['59906.950045611804 0.3067452351539596 5.257710519080915e-05 0.02604088848076464 1.3579215966086348e-05 6.3762094218746e-06 3.3249220681769684e-09 0.050078631693778165 2.6113876857858362e-05 0.2566666034601814 5.8705081166733776e-05']
['59906.95018589201 0.30694151507793327 5.258694429336638e-05 0.026045223538556837 1.3579228715291028e-05 6.377270877068779e-06 3.3249251898676535e-09 0.050086968343378536 2.611390137555967e-05 0.2568545467345547 5.871390427459305e-05']
['59906.95032617222 0.3069502020975684 5.258170052374051e-05 0.026025518939747014 1.3583090138250454e-05 6.3724461319884315e-06 3.3258706737928246e-09 0.05004907488412887 2.6121327188943185e-05 0.25690112721343955 5.8712511137577443e-05']
['59906.95046645243 0.3068895620280012 5.257649071551048e-05 0.026045973192375144 1.3578020737040058e-05 6.3774544326238425e-06 3.324629411852593e-09 0.05008840998533681 2.6111578340461653e-05 0.2568011520426644 5.87035084078305e-05']
['59906.95060673264 0.30694149402891246 5.258985719886682e-05 0.026041145533225493 1.3578176049167595e-05 6.376272362135797e-06 3.324667440610777e-09 0.05007912602543364 2.611187701762999e-05 0.25686236800347884 5.8715612928598795e-05']
['59906.950747012845 0.3069437031449306 5.259657109031161e-05 0.02604424248125142 1.3580450437124564e-05 6.377030661500143e-06 3.325224333050562e-09 0.05008508169471427 2.6116250840624163e-05 0.2568586214502163 5.872357148904182e-05']
['59906.95088729305 0.3069628698347293 5.2610691034671576e-05 0.02604276826575002 1.3581211625840542e-05 6.376669694293635e-06 3.325410712968675e-09 0.050082246664903886 2.6117714665077965e-05 0.2568806231698254 5.873686943029991e-05']
['59906.95102757326 0.3069287660762189 5.2583035801643566e-05 0.026037663730097634 1.3579224923138232e-05 6.375419829553226e-06 3.324924261344788e-09 0.05007243025018777 2.611389408295814e-05 0.2568563358260311 5.8710400426950636e-05']
['59906.95116785347 0.3069594363654594 5.257973497351621e-05 0.026018533845244385 1.3587477619500016e-05 6.370735805345267e-06 3.3269449650675796e-09 0.05003564201008536 2.6129764652884647e-05 0.25692379435537405 5.871450528362087e-05']
['59906.95130813368 0.3069345829022122 5.259565976785667e-05 0.02604426151045549 1.3577338428358243e-05 6.3770353208722825e-06 3.324462346007323e-09 0.05008511828933748 2.611026620838124e-05 0.2568494646128747 5.872009390224672e-05']
['59906.951448413885 0.30697661570527557 5.258224037803245e-05 0.026073362410130092 1.3580521073613144e-05 6.3841607855363355e-06 3.3252416286602855e-09 0.05014108155794249 2.611638668002528e-05 0.25683553414733307 5.871079676170124e-05']
['59906.9515886941 0.3068772663219854 5.2577082105882e-05 0.026035030617715213 1.3579014930661853e-05 6.374775102089566e-06 3.3248728438976686e-09 0.05006736657252926 2.6113490251272797e-05 0.25680989974945617 5.870488851766926e-05']
['59906.95172897431 0.3068278698195921 5.2574617425720165e-05 0.025994267839490413 1.3575450536017632e-05 6.364794182630126e-06 3.3240000884718867e-09 0.04998897661440464 2.6106635646187755e-05 0.25683889320518744 5.8699632215403525e-05']
['59906.95186925452 0.30689270398185353 5.258167220777406e-05 0.02600023528463511 1.3584265843009635e-05 6.366255334003062e-06 3.326158549522117e-09 0.050000452470452136 2.6123588159633912e-05 0.2568922515114014 5.8713491724645063e-05']
['59906.952009534725 0.30687085131473374 5.2577788404798154e-05 0.02602752482180474 1.3576883482978792e-05 6.37293727974958e-06 3.3243509509212053e-09 0.050052932349624504 2.6109391313420754e-05 0.25681791896510925 5.8703697909902216e-05']
['59906.95214981493 0.30689343980654726 5.2585581995034324e-05 0.02605592646087241 1.3578950694978234e-05 6.3798915278257826e-06 3.324857115549098e-09 0.0501075508862931 2.611336672111199e-05 0.25678588892025417 5.8712446340343865e-05']
['59906.95229009514 0.3069625874320842 5.258127374886873e-05 0.026062297186321283 1.357895875178138e-05 6.381451423896967e-06 3.3248590882876306e-09 0.05011980228138709 2.6113382214964196e-05 0.25684278515069714 5.8708594598732136e-05']
['59906.95243037535 0.3068640213673031 5.258293713829252e-05 0.02603536127803801 1.3578037314101393e-05 6.3748560655124235e-06 3.3246334708083675e-09 0.05006800245776541 2.611161021942576e-05 0.25679601890953774 5.8709296251452735e-05']
['59906.95257065556 0.3069454617566771 5.2587986172745275e-05 0.026005615252448613 1.3576174138734674e-05 6.367572639343361e-06 3.3241772653168897e-09 0.05001079856240118 2.6108027189874373e-05 0.2569346631942759 5.8712225076657314e-05']
['59906.952710935766 0.3068944345126981 5.258526472665417e-05 0.02602860575345245 1.357692843951417e-05 6.373201949926315e-06 3.3243619586978667e-09 0.05005501106433164 2.6109477768296483e-05 0.25683942344836647 5.871043259681764e-05']
['59906.952851215974 0.30684078198476294 5.258246277042943e-05 0.02604808147170578 1.357796559063847e-05 6.3779706527421334e-06 3.3246159090488906e-09 0.05009246436866496 2.6111472289689367e-05 0.25674831761609795 5.8708810038518176e-05']
['59906.95299149618 0.30708758977264317 5.26099218855921e-05 0.02605887006672545 1.3579740771203699e-05 6.380612280782745e-06 3.325050568682486e-09 0.05011321166677971 2.6114886098468652e-05 0.25697437810586343 5.873492280359355e-05']
['59906.95313177639 0.30688508552697247 5.257932782405859e-05 0.026013084360199664 1.3577035142812545e-05 6.369401478449616e-06 3.3243880854015288e-09 0.050025162231153206 2.61096829669472e-05 0.25685992329581925 5.870520640509081e-05']
['59906.9532720566 0.30688913183647437 5.25866745765388e-05 0.026044170190829226 1.3577059107856341e-05 6.377012960918558e-06 3.3243939533325775e-09 0.05008494267467159 2.610972905356989e-05 0.2568041891618028 5.87118071112585e-05']
['59906.95341233681 0.3069808629354184 5.2582991521168764e-05 0.02604915952420804 1.3579638256010648e-05 6.378234617949284e-06 3.3250254674521534e-09 0.05009453754655393 2.611468895386663e-05 0.25688632538886447 5.871071432432508e-05']
['59906.953552617015 0.3074301466937083 5.272290327175839e-05 0.02602310286665578 1.3577011668141126e-05 6.371854547410984e-06 3.32438233754e-09 0.05004442858972266 2.6109637823348323e-05 0.2573857181039856 5.883381439843598e-05']
['59906.95369289722 0.30684251222986847 5.257576274745357e-05 0.026030704730327807 1.357787636922873e-05 6.373715892303467e-06 3.324594062851368e-09 0.05005904755832271 2.6111300710055253e-05 0.2567834646715458 5.870273292826713e-05']
['59906.95383317743 0.30692870300464625 5.259071937555053e-05 0.026041837503516376 1.3585965088889851e-05 6.376441793662361e-06 3.326574616262679e-09 0.0500804567375315 2.6126855940172794e-05 0.2568482462671148 5.8723047994432715e-05']
['59906.95397345764 0.3069355890947242 5.2597761614054787e-05 0.02604226847126193 1.357945365481361e-05 6.376547317734696e-06 3.324980267155216e-09 0.050081285521657554 2.6114333951564635e-05 0.2568543035730666 5.872378533901554e-05']
['59906.95411373785 0.3069706798535843 5.258537919890905e-05 0.026032536495720206 1.3577816677463734e-05 6.374164406944674e-06 3.324579447098351e-09 0.050062570184077324 2.6111185918199487e-05 0.25690810966950695 5.871129478684519e-05']
['59906.954254018056 0.30691072269053743 5.258505834453641e-05 0.02602542605394346 1.3578613175847905e-05 6.372423388550311e-06 3.3247744727214364e-09 0.05004889625758358 2.6112717645861357e-05 0.25686182643295385 5.871168864843505e-05']
['59906.954394298264 0.30689172110952123 5.257779637520258e-05 0.02605071024365927 1.357883275158909e-05 6.378614317435457e-06 3.324828236666964e-09 0.050097519699344756 2.61131399069021e-05 0.2567942014101765 5.870537239018001e-05']
['59906.95453457847 0.3068133398698296 5.257427411795624e-05 0.026021304048876474 1.3578173341940343e-05 6.371414100116679e-06 3.3246667777360087e-09 0.05004096932476246 2.6111871811423737e-05 0.2567723705450672 5.8701653712022704e-05']
['59906.95467485868 0.3071793757483432 5.2624128149651037e-05 0.026015972894267554 1.3576703731488082e-05 6.3701087468729915e-06 3.3243069380930907e-09 0.05003071710436068 2.6109045637477084e-05 0.2571486586439825 5.8745051941510406e-05']
['59906.95481513889 0.3069130127566421 5.2579603496118245e-05 0.026036443173905473 1.357894361002673e-05 6.3751209717819886e-06 3.324855380772093e-09 0.0500700830267413 2.6113353096205255e-05 0.2568429297299008 5.8707085720005745e-05']
['59906.954955419096 0.30690920386418497 5.258032462803828e-05 0.025996328455138076 1.3574363411715315e-05 6.365298732116492e-06 3.3237339020003958e-09 0.049992939336803995 2.6104545022529454e-05 0.256916264527381 5.8703814261282515e-05']
['59906.955095699304 0.30683154788688416 5.257486198878921e-05 0.026016483087606228 1.3587070257380922e-05 6.37023366962958e-06 3.326845220921607e-09 0.05003169824539659 2.6128981264194084e-05 0.25679984964148755 5.870979283769308e-05']
['59906.95523597951 0.3068478194337353 5.257956173752325e-05 0.026037062690039206 1.3578348801667057e-05 6.375272662635848e-06 3.324709739709578e-09 0.05007127440392155 2.611220923397511e-05 0.25677654502981373 5.8706539530012447e-05']
['59906.95537625972 0.3069915721712475 5.2582516326220784e-05 0.026032723393253784 1.357720205394926e-05 6.374210169508244e-06 3.3244289542207064e-09 0.05006292960241113 2.6110003949902426e-05 0.2569286425688364 5.870820495860179e-05']
['59906.95551653993 0.3069285120909703 5.257968658613007e-05 0.02602911575087486 1.3579637862522504e-05 6.37332682471207e-06 3.3250253711051024e-09 0.050055991828605505 2.6114688197158665e-05 0.2568725202623648 5.87077540119743e-05']
['59906.95565682014 0.3069250865406066 5.2582921353477215e-05 0.02603585726525534 1.3577040790283698e-05 6.374977509846806e-06 3.3243894682060676e-09 0.050068956279337204 2.6109693827468654e-05 0.25685613026126936 5.870842980211722e-05']
['59906.955797100345 0.30684565551322796 5.257600788018002e-05 0.026032281498999978 1.3578469066037337e-05 6.3741019700392945e-06 3.3247391868926672e-09 0.05006207980576919 2.6112440511610265e-05 0.25678357570745874 5.87034594729232e-05']
['59906.95593738055 0.30691992776671606 5.2579795273077934e-05 0.0260350822114839 1.3578303370684201e-05 6.374787735017749e-06 3.324698615762669e-09 0.05006746579131519 2.6112121866700386e-05 0.25685246197540085 5.870670983235392e-05']
['59906.95607766076 0.30685043228295006 5.257548259170927e-05 0.026041998523251148 1.3577566800516716e-05 6.376481219949629e-06 3.3245182637886854e-09 0.050080766390867594 2.611070538560907e-05 0.25676966589208244 5.870221721098104e-05']
['59906.95621794097 0.3068852173206299 5.2578354545982034e-05 0.026003175335716916 1.3576350191643673e-05 6.366975216560927e-06 3.3242203725333714e-09 0.050006106414840226 2.6108365753160914e-05 0.2568791109057897 5.8703748850169825e-05']
['59906.95635822118 0.30681826034131365 5.2575607620717085e-05 0.026021638452398098 1.3578282370312482e-05 6.371495980075838e-06 3.3246934737427213e-09 0.050041612408457885 2.6112081481370157e-05 0.25677664793285576 5.870294128897903e-05']
['59906.956498501386 0.3069408221129148 5.258026672932294e-05 0.02605073523855765 1.358123472389392e-05 6.37862043753027e-06 3.3254163686138616e-09 0.050097567766457025 2.6117759084411387e-05 0.25684325434645777 5.8709639659242495e-05']
['59906.956638781594 0.3069110687272254 5.25783359395002e-05 0.026043188736924374 1.3578260851771779e-05 6.376772648241059e-06 3.324688204847151e-09 0.050083055263316106 2.6112040099561116e-05 0.25682801346390927 5.870536643551445e-05']
['59906.9567790618 0.3067705493419669 5.257009628157803e-05 0.026053598289267507 1.3579174067310606e-05 6.3793214662576494e-06 3.324911809104247e-09 0.05010307363320675 2.611379628328963e-05 0.25666747570876014 5.869876812488943e-05']
['59906.95691934202 0.3068853166509833 5.257913129132216e-05 0.02605126028569821 1.3578543016835976e-05 6.3787489972960806e-06 3.3247572940236655e-09 0.05009857747249657 2.611258272468457e-05 0.2567867391784867 5.870632013594097e-05']
['59906.957059622226 0.3069698872049107 5.259031018432007e-05 0.026048123330137885 1.3578062607454077e-05 6.377980901936564e-06 3.3246396639808397e-09 0.050092544865649784 2.6111658860488612e-05 0.2568773423392609 5.8715921637402005e-05']
['59906.957199902434 0.30686150706817683 5.257775663247249e-05 0.02602231285784006 1.3578148174229821e-05 6.371661110783125e-06 3.3246606153274923e-09 0.05004290934200012 2.611182341198043e-05 0.2568185977261767 5.8704751208074755e-05']
['59906.95734018264 0.30691695252613166 5.25807501030756e-05 0.02606375846582048 1.3580240815806068e-05 6.381809223674714e-06 3.325173006482845e-09 0.05012261243427016 2.6115847722703978e-05 0.25679434009186153 5.8709222305167245e-05']
['59906.95748046285 0.3069421101619765 5.258215628185356e-05 0.02631047622136248 1.3681511455666234e-05 6.442218993433248e-06 3.3499695032887287e-09 0.050597069656466306 2.6310598953204295e-05 0.25634504050551016 5.8797370489892034e-05']
['59906.95762074306 0.30687336178936253 5.258217387663214e-05 0.026057841658035572 1.3586142448308554e-05 6.380360471049648e-06 3.3266180433829716e-09 0.050111233957760716 2.612719701597799e-05 0.2567621278316018 5.87155467785501e-05']
['59906.957761023266 0.30697886289478493 5.2584411480904e-05 0.026061642358012706 1.3579062518355625e-05 6.381291086724372e-06 3.3248844959233516e-09 0.05011854299617829 2.6113581766068512e-05 0.25686031989860664 5.871149362302218e-05']
['59906.957901303475 0.3069168941759953 5.258077566597885e-05 0.02604349765192781 1.35781545145935e-05 6.3768482872407395e-06 3.32466216778937e-09 0.050083649330630406 2.6111835604987504e-05 0.2568332448453649 5.870746058464705e-05']
['59906.95804158368 0.3074675632674051 5.277702970357423e-05 0.02601734284338774 1.3577146159261669e-05 6.370444184064164e-06 3.324415268196364e-09 0.0500333516218995 2.6109896460118598e-05 0.2574342116455056 5.888243844721506e-05']
['59906.95818186389 0.3069436401167084 5.258483930485166e-05 0.026014807395942304 1.3578269068288552e-05 6.369823370227409e-06 3.3246902166921653e-09 0.050028475761427514 2.611205590055491e-05 0.2569151643552809 5.871119814882657e-05']
['59906.9583221441 0.3069805317612808 5.259242454138554e-05 0.026022111396413042 1.3577576634142711e-05 6.371611782195506e-06 3.3245206715889713e-09 0.05004252191617893 2.6110724296428294e-05 0.2569380098451019 5.8717399826843685e-05']
['59906.95846242431 0.3068755596814979 5.257725456798188e-05 0.026032835793912988 1.3576940743443177e-05 6.3742376912321196e-06 3.3243649713611297e-09 0.05006314575752498 2.6109501429698422e-05 0.2568124139239729 5.870326875748739e-05']
['59906.958602704515 0.30681449504601355 5.257921838583969e-05 0.026047163799436092 1.357770702927267e-05 6.3777459572377356e-06 3.3245525993266453e-09 0.05009069961430018 2.61109750562936e-05 0.25672379543171336 5.870568306779344e-05']
['59906.95874298472 0.30704420936375665 5.2607398678791314e-05 0.026262084919165735 1.3693320771978023e-05 6.4303702012066855e-06 3.352861058774201e-09 0.05050400945993411 2.6333309176880817e-05 0.25654019990382254 5.8830107665671406e-05']
['59906.95888326493 0.30692396163684377 5.2578565564349765e-05 0.02602579367922994 1.3576846663735518e-05 6.372513402983463e-06 3.324341935591101e-09 0.05004960322928836 2.610932050718369e-05 0.2568743584075554 5.870436247972947e-05']
['59906.95902354514 0.3069009843961291 5.257878395196065e-05 0.026044222444676572 1.3577553483901054e-05 6.377025755469482e-06 3.324515003165289e-09 0.050085043162839564 2.61106797767328e-05 0.25681594123328955 5.8705162637284616e-05']
['59906.95916382535 0.306853394073183 5.257570699951948e-05 0.026012418969933504 1.3582190470275299e-05 6.3692385551420094e-06 3.325650386707613e-09 0.05002388263448752 2.611959705822173e-05 0.2568295114386955 5.8706373733890146e-05']
['59906.959304105556 0.30694420617956136 5.258063992841185e-05 0.026061952380033983 1.3582505026952242e-05 6.381366996781531e-06 3.3257274070922563e-09 0.05011913919237305 2.612020197490816e-05 0.2568250669871883 5.8711060682730766e-05']
['59906.959444385764 0.3068129649125646 5.257467726119387e-05 0.02602618084256845 1.3578014057990042e-05 6.37260820138209e-06 3.3246277764620926e-09 0.0500503477741701 2.61115654961347e-05 0.2567626171383945 5.8701878520006734e-05']
['59906.95958466597 0.30686911092982394 5.257750516779303e-05 0.0260247081024381 1.357818723823237e-05 6.372247595425729e-06 3.324670180295342e-09 0.05004751558161173 2.611189853506225e-05 0.2568215953482122 5.870455940363311e-05']
['59906.95972494618 0.3069033060850085 5.258429929658196e-05 0.026041452805521843 1.357915350552012e-05 6.376347598912473e-06 3.3249067744725632e-09 0.05007971693369586 2.611375674138485e-05 0.25682358915131265 5.871147097169966e-05']
['59906.95986522639 0.3068622786940891 5.257647858673447e-05 0.02604397610049123 1.3577524151929858e-05 6.376965437169791e-06 3.3245078211218942e-09 0.0500845694240216 2.6110623369095884e-05 0.2567777092700675 5.8703072775657364e-05']
['59906.9600055066 0.3069183136452237 5.258186354397254e-05 0.026040947849097544 1.3578530052404874e-05 6.376223958434053e-06 3.3247541196339824e-09 0.050078745863649125 2.61125577930863e-05 0.2568395677815746 5.870875614637241e-05']
['59906.960145786805 0.3069336868081291 5.258063704683718e-05 0.026037449629116364 1.3577170436558656e-05 6.375367406123241e-06 3.3244212125837795e-09 0.05007201851753148 2.6109943147228183e-05 0.25686166829059764 5.87064947293118e-05']
['59906.96028606701 0.30687458719289784 5.257742585361402e-05 0.02603185573168975 1.3577458217097562e-05 6.373997719313096e-06 3.3244916767303838e-09 0.0500612610224803 2.611049657134147e-05 0.2568133261704175 5.8703864784137634e-05']
['59906.96042634722 0.30686658722844823 5.258182737104882e-05 0.02606298987113557 1.3580392817639963e-05 6.381621030377272e-06 3.3252102247031886e-09 0.05012113436756841 2.6116140033923007e-05 0.2567454528608798 5.871031715082329e-05']
['59906.96056662743 0.3069834619019386 5.258372156503457e-05 0.026043793264391393 1.3578999066279394e-05 6.376920669063538e-06 3.3248689594439955e-09 0.0500842178161373 2.6113459742844992e-05 0.2568992440858013 5.8710821433278106e-05']
['59906.96070690764 0.30684991237625003 5.257625908660947e-05 0.026010587760047388 1.3576474502126415e-05 6.3687901765186025e-06 3.3242508104223043e-09 0.05002036107701421 2.6108604811781567e-05 0.25682955129923585 5.870197837177269e-05']
['59906.960847187846 0.30698668719572897 5.2594724663863894e-05 0.026017971336863517 1.3589675018789731e-05 6.370598073053965e-06 3.327483006542818e-09 0.05003456026319907 2.6133990420749485e-05 0.2569521269325299 5.8729809447839004e-05']
['59906.960987468054 0.3069392459248914 5.2578406494483904e-05 0.026074732279766713 1.3580377654826143e-05 6.384496203265659e-06 3.325206512031234e-09 0.0501437159226283 2.6116110874665662e-05 0.25679553000226313 5.8707240411358266e-05']
['59906.96112774826 0.30681600713500456 5.257663743216814e-05 0.026037142266444095 1.3579612650188425e-05 6.375292147217682e-06 3.32501919777034e-09 0.05007142743546942 2.611463971190082e-05 0.2567445796995351 5.870500158381781e-05']
['59906.96126802847 0.306867473904393 5.257540788750586e-05 0.02605570030601196 1.3581778800011108e-05 6.379836152958175e-06 3.325549587696121e-09 0.05010711597309993 2.6118805384636748e-05 0.2567603579312931 5.870575362993088e-05']
['59906.96140830868 0.3068529136938295 5.2574374020639765e-05 0.02601648206848919 1.3576623248855838e-05 6.370233420094943e-06 3.3242872316180833e-09 0.05003169628555614 2.6108890863184303e-05 0.25682121740827335 5.8700417253779295e-05']
['59906.961548588886 0.30688046452637274 5.257571286613173e-05 0.026031699858914778 1.3577170523803274e-05 6.3739595532782796e-06 3.3244212339459525e-09 0.05006096126714381 2.6109943315006298e-05 0.2568195032592289 5.870208448849812e-05']
['59906.961688869094 0.3069596427516027 5.258130880986539e-05 0.02603353641497575 1.3577542357689433e-05 6.374409240932694e-06 3.3245122788705543e-09 0.050064493105722606 2.6110658380171987e-05 0.2568951496458801 5.8707414499400954e-05']
['59906.9618291493 0.3069328853234041 5.257989502211719e-05 0.026020360571441373 1.3576446437075486e-05 6.371183086120537e-06 3.324243938589099e-09 0.050039154945079566 2.6108550840529783e-05 0.2568937303783246 5.870521090609753e-05']
['59906.96196942951 0.3069105826257352 5.258640136126872e-05 0.02603502467182319 1.3576771683110633e-05 6.374773646215556e-06 3.3243235763032754e-09 0.05006735513812153 2.6109176313674296e-05 0.2568432274876136 5.871131659149687e-05']
['59906.96210970972 0.3068825251360534 5.257912050958668e-05 0.02601772290018371 1.3576101547581008e-05 6.370537242399139e-06 3.3241594911000735e-09 0.05003408250035329 2.610788759150194e-05 0.2568484426357001 5.870422223360207e-05']
['59906.96224998993 0.3069645338981202 5.258152978007909e-05 0.026034001550372898 1.3576901370527802e-05 6.374523131082945e-06 3.3243553307548126e-09 0.050065387596870965 2.6109425712553466e-05 0.2568991463012492 5.8707064183560504e-05']
['59906.96239027014 0.30685832698673343 5.257866065493493e-05 0.026024893755848804 1.3578486299505323e-05 6.372293053361137e-06 3.3247434065720774e-09 0.050047872607401546 2.6112473652894853e-05 0.25681045437933187 5.870585010490803e-05']
['59906.96253055035 0.3067951336318983 5.2578178999000386e-05 0.02602904688582009 1.3577927909165455e-05 6.373309962844573e-06 3.324606682598593e-09 0.050055859395807874 2.6111399825318183e-05 0.25673927423609044 5.870494108410766e-05']
['59906.96267083056 0.30678480307436184 5.258523185297955e-05 0.02602252106838949 1.3577248709801249e-05 6.371712091918734e-06 3.3244403780814267e-09 0.05004330974690287 2.6110093672694712e-05 0.256741493327459 5.871067705816811e-05']
['59906.96281111077 0.30686453415400217 5.258089394827951e-05 0.026047545890435744 1.3579082651413925e-05 6.377839513655128e-06 3.3248894255783485e-09 0.050091434404684124 2.611362048348832e-05 0.25677309974931806 5.870836041958486e-05']
['59906.962951390975 0.30694557718942606 5.2581485079685834e-05 0.026024135760867234 1.357745134140629e-05 6.372107455440898e-06 3.3244899931915326e-09 0.05004641492474469 2.611048334885825e-05 0.25689916226468135 5.870749452920154e-05']
['59906.96309167118 0.3068800711603883 5.2576873913351555e-05 0.026018882762967765 1.3580292932710033e-05 6.370821239161279e-06 3.3251857675026674e-09 0.05003631300570724 2.6115947947519295e-05 0.2568437581546811 5.870579535018672e-05']
['59906.96323195139 0.30687953241187915 5.258469640698666e-05 0.026041628122569566 1.3579212683367105e-05 6.3763905259505555e-06 3.324921264390823e-09 0.050080054081864556 2.611387054493674e-05 0.2567994783300146 5.87118772570991e-05']
['59906.9633722316 0.30692641587930997 5.258758560445611e-05 0.026054116283331402 1.3578023993052304e-05 6.379448299051128e-06 3.3246302090994293e-09 0.05010406977563731 2.6111584602023662e-05 0.25682234610367266 5.8713448290273655e-05']
['59906.96351251181 0.3068464310794384 5.257989622193406e-05 0.02602943862990964 1.3581781313995929e-05 6.37340588285731e-06 3.3255502032547535e-09 0.050056612749826236 2.6118810219222944e-05 0.2567898183296121 5.870977545500528e-05']
['59906.963652792016 0.30692502510292463 5.258114956346602e-05 0.026061768432323863 1.3579446543744476e-05 6.381321956493322e-06 3.324978525983211e-09 0.05011878544677666 2.611432027643169e-05 0.25680623965614796 5.8708900627721124e-05']
['59906.963793072224 0.30693463293408546 5.257926159859083e-05 0.026021434006264672 1.3577801092763969e-05 6.371445920671637e-06 3.3245756311260367e-09 0.05004121924281668 2.6111155947623018e-05 0.2568934136912688 5.8705802227498245e-05']
['59906.96393335243 0.30695614113418607 5.258309182233413e-05 0.026051872972127098 1.3585122010870748e-05 6.378899015871038e-06 3.326368185440906e-09 0.05009975571562904 2.61252346362899e-05 0.25685638541855704 5.871549565827767e-05']
['59906.96407363264 0.3068436957142571 5.2585027318881585e-05 0.026060179988822672 1.3579457530897419e-05 6.3809330201317264e-06 3.3249812162289054e-09 0.05011573074773591 2.6114341405571963e-05 0.2567279649665212 5.87123830650255e-05']
['59906.96421391285 0.3069124110674495 5.258018067164897e-05 0.02603701282459088 1.357898489833794e-05 6.375260452893401e-06 3.324865490370279e-09 0.05007117850882862 2.6113432496803733e-05 0.25684123255862085 5.870763797180375e-05']
['59906.964354193056 0.3069038094501514 5.2581605209625386e-05 0.026026750076767288 1.3576078952545797e-05 6.372747580515201e-06 3.3241539586207762e-09 0.05005144245532171 2.610784413951115e-05 0.25685236699482966 5.870642837061296e-05']
['59906.964494473264 0.30684858768015005 5.2586551781252756e-05 0.026024656407268237 1.357580247241537e-05 6.372234937669086e-06 3.3240862614216622e-09 0.05004741616782354 2.6107312446952638e-05 0.2568011715123265 5.8710622475367995e-05']
['59906.96463475347 0.30695311108146717 5.25831013950107e-05 0.02605141441633422 1.3579662254190599e-05 6.378786736761622e-06 3.325031343496714e-09 0.05009887387756581 2.611473510421269e-05 0.2568542372039014 5.871083325827675e-05']
['59906.96477503368 0.30697510700309366 5.258298783027164e-05 0.026058663280301788 1.3579150168059025e-05 6.380561648349683e-06 3.3249059572826695e-09 0.05011281400058037 2.6113750323190433e-05 0.2568622930025133 5.871029351911319e-05']
['59906.96491531389 0.3068451497567516 5.2577523821316646e-05 0.02603920417104414 1.3578157204237662e-05 6.375797012308883e-06 3.3246628263588522e-09 0.05007539263662335 2.6111840777380123e-05 0.25676975712012823 5.8704550419574555e-05']
['59906.9650555941 0.3068570019039426 5.2575697922585566e-05 0.026017259494389496 1.357868238740517e-05 6.370423775748668e-06 3.324791419431372e-09 0.05003319133536442 2.6112850745009945e-05 0.25682381056857817 5.870336435059012e-05']
['59906.965195874305 0.30688442204294575 5.257940388691017e-05 0.026030825381096218 1.3579793394948525e-05 6.37374543409759e-06 3.3250634538041982e-09 0.05005927957903119 2.6114987297977935e-05 0.2568251424639146 5.870763387053146e-05']
['59906.96533615451 0.30687448074005 5.257891508227699e-05 0.026004982300150522 1.3576821048058741e-05 6.367417658594157e-06 3.324335663496363e-09 0.050009581346443316 2.610927124626681e-05 0.2568648993936067 5.8704653616561176e-05']
['59906.96547643472 0.3068457472208006 5.257674851778572e-05 0.02602814296776658 1.3577920726776231e-05 6.373088635111702e-06 3.3246049239635962e-09 0.05005412109185881 2.6111386013031216e-05 0.2567916261289418 5.8703653755315816e-05']
['59906.96561671493 0.30692402247798634 5.2580693192702784e-05 0.02604316214812566 1.3590073583928166e-05 6.376766137873758e-06 3.327580596715012e-09 0.05008300413101089 2.6134756892169553e-05 0.2568410183469754 5.8717585223150526e-05']
['59906.96575699514 0.30695135141076707 5.25886835842875e-05 0.026047433936905208 1.3577264853335622e-05 6.377812101412388e-06 3.324444330886495e-09 0.0500912191094331 2.611012471795312e-05 0.256860132301334 5.8713782486869094e-05']
['59906.965897275346 0.3068564895667857 5.257626007609986e-05 0.02602167064891714 1.3586420973212056e-05 6.3715038635145395e-06 3.326686241252459e-09 0.050041674324840656 2.612773264079242e-05 0.25681481524194505 5.871048915260732e-05']
['59906.966037555554 0.3067630822092773 5.257055510874479e-05 0.026027599984308748 1.3577392243588711e-05 6.3729556835711925e-06 3.324475522868773e-09 0.05005307689290144 2.611036969920906e-05 0.25671000531637583 5.869765472547389e-05']
['59906.96617783576 0.30683472437812065 5.257360966034535e-05 0.026037184902829278 1.3577994295479895e-05 6.3753025868968466e-06 3.3246229375372036e-09 0.050071509428517846 2.611152749130749e-05 0.2567632149496028 5.8700905449981475e-05']
['59906.96631811597 0.3068885928653763 5.257859510799012e-05 0.026014655201474692 1.3577179188160202e-05 6.3697861048399754e-06 3.324423355446312e-09 0.05002818307975903 2.6109959977231158e-05 0.25686040978561725 5.8704673353512284e-05']
['59906.96645839618 0.3069176481393078 5.257936906390191e-05 0.026027311871985353 1.3576633951567269e-05 6.372885138185909e-06 3.3242898522172045e-09 0.05005252283074106 2.6108911445321673e-05 0.2568651253085667 5.870490020447743e-05']
['59906.96659867639 0.30686411528847934 5.258876203743921e-05 0.02599539017812395 1.3575256959877812e-05 6.365068991462973e-06 3.323952690626476e-09 0.04999113495793068 2.610626338438041e-05 0.2568729803305487 5.871213571762697e-05']
['59906.966738956595 0.3068370938518339 5.258298526251068e-05 0.026031785665654984 1.3588064323292028e-05 6.373980563381133e-06 3.3270886216962405e-09 0.05006112628010575 2.613089292940775e-05 0.25677596757172816 5.871791808643753e-05']
['59906.9668792368 0.30700915967699327 5.258710030372022e-05 0.026011273902519675 1.3578998420651545e-05 6.3689581810818794e-06 3.32486880135959e-09 0.05002168058176861 2.611345850125297e-05 0.2569874790952247 5.8713847031600586e-05']
['59906.96701951701 0.3068849723175564 5.2585715198538e-05 0.026031646890909452 1.3577215869250105e-05 6.3739465838630895e-06 3.3244323369490443e-09 0.0500608594055951 2.6110030517788663e-05 0.2568241129119613 5.871108188904038e-05']
['59906.96715979722 0.3068674048871251 5.2575185608222514e-05 0.026022246054055898 1.3576021406939996e-05 6.371644753625484e-06 3.3241398683629046e-09 0.05004278087318442 2.6107733474884608e-05 0.2568246240139407 5.87006293742636e-05']
['59906.96730007743 0.3069764935043584 5.258151894997679e-05 0.026048449575614238 1.3578657969730384e-05 6.378060784367677e-06 3.3247854406719238e-09 0.05009317226079662 2.6112803787943048e-05 0.2568833212435618 5.87085569295855e-05']
['59906.967440357635 0.3068975863757316 5.25792542187271e-05 0.02602311201216724 1.3576893100035909e-05 6.371856786723839e-06 3.324353305693787e-09 0.0500444461772447 2.6109409807761365e-05 0.25685314019848693 5.8705018990774185e-05']
['59906.967580637844 0.3069699856766983 5.2583565153770944e-05 0.026037795601685416 1.3577836829619326e-05 6.3754521188071465e-06 3.324584381429392e-09 0.05007268384939503 2.611122467234486e-05 0.2568973018273033 5.870968726003014e-05']
['59906.96772091806 0.3068267165264258 5.257548717341432e-05 0.026023955760339907 1.3577618819531366e-05 6.372063381635231e-06 3.3245310008399413e-09 0.05004606876988444 2.6110805422175706e-05 0.25678064775654136 5.8702265810755325e-05']
['59906.96786119827 0.30691553910201463 5.258044979216835e-05 0.02604675722698957 1.3578611605114026e-05 6.37764640644606e-06 3.3247740881213427e-09 0.05008991774421072 2.6112714625219284e-05 0.2568256213578039 5.870755969587629e-05']
['59906.968001478475 0.3069575126191462 5.2582254358004635e-05 0.026033093850856327 1.3577417350628175e-05 6.37430087744463e-06 3.3244816704217536e-09 0.050063642020877555 2.6110417981977262e-05 0.2568938705982687 5.87081544639538e-05']
['59906.96814175868 0.30697665879710334 5.258488420454248e-05 0.026023729204755767 1.3580191893650125e-05 6.372007908648922e-06 3.3251610277090835e-09 0.05004563308606878 2.611575364163486e-05 0.25693102571103454 5.87128830417627e-05']
['59906.96828203889 0.30693214880315944 5.2584891893439186e-05 0.026062345655999998 1.3578902752554979e-05 6.381463291879978e-06 3.3248453766665674e-09 0.05011989549230769 2.6113274524144193e-05 0.2568122533108518 5.871178724768992e-05']
['59906.9684223191 0.307002664901313 5.258845742003995e-05 0.026041824029585922 1.357787605775897e-05 6.376438494519847e-06 3.3245939865868267e-09 0.05008043082612678 2.6111300111074946e-05 0.2569222340751862 5.871410262713701e-05']
['59906.96856259931 0.3069691172049232 5.2583829542288825e-05 0.026020787386762403 1.3577934784460503e-05 6.371287593456121e-06 3.324608366040427e-09 0.050039975743773855 2.611141304703943e-05 0.25692914146114937 5.871000784061937e-05']
['59906.968702879516 0.3069308563149642 5.258768433516123e-05 0.02604037055915425 1.3579483983291019e-05 6.3760826068216334e-06 3.324987693196902e-09 0.05007763569068125 2.6114392275559652e-05 0.25685322062428295 5.8714785426299324e-05']
['59906.968843159724 0.3071031137158594 5.2625770755292074e-05 0.026011079310200066 1.3575948567327618e-05 6.368910534421028e-06 3.3241220333100385e-09 0.05002130636576937 2.6107593398706958e-05 0.25708180735009006 5.8745877988679014e-05']
['59906.96898343993 0.3069270089254572 5.2580595324407224e-05 0.026073297134447462 1.3586720450665665e-05 6.384144802540099e-06 3.326759569432592e-09 0.05014095602778359 2.6128308558972435e-05 0.25678605289767364 5.871462775852323e-05']
['59906.96912372014 0.3067891303160047 5.2570578540832225e-05 0.026033630059415024 1.3585404876773158e-05 6.374432170125622e-06 3.3264374462202916e-09 0.05006467319118274 2.6125778609179153e-05 0.25672445712482195 5.8704531648362994e-05']
['59906.96926400035 0.3067917702707843 5.257254628780019e-05 0.02603011941759236 1.3577642425622369e-05 6.373572576280234e-06 3.3245367808800494e-09 0.050057921956908384 2.6110850818504557e-05 0.2567338483138759 5.869965207434447e-05']
['59906.96940428056 0.30689781795333104 5.257874120191139e-05 0.026058865684494174 1.3578454324849759e-05 6.380611207776946e-06 3.3247355774574825e-09 0.05011320323941188 2.6112412163172614e-05 0.25678461471391917 5.870589489443951e-05']
['59906.969544560765 0.30690277131184396 5.257902798189613e-05 0.026034886474126766 1.357897708639984e-05 6.374739807990156e-06 3.324863577587873e-09 0.05006708937332071 2.6113417473845846e-05 0.25683568193852324 5.870659891089224e-05']
['59906.96968484097 0.30688955948084506 5.2578348243401954e-05 0.02604746445104044 1.3577802887801933e-05 6.37781957291309e-06 3.3245760706478294e-09 0.050091277790462393 2.6111159399619105e-05 0.25679828169038266 5.870498572691051e-05']
['59906.96982512118 0.3068808150659077 5.25858951550073e-05 0.026050059998171542 1.3578636488861195e-05 6.378455102383771e-06 3.324780181000365e-09 0.05009626922725297 2.6112762478579224e-05 0.25678454583865473 5.8712458077618544e-05']
['59906.96996540139 0.306885901327909 5.257813527101236e-05 0.02604255664735814 1.3578299863840836e-05 6.376617878734993e-06 3.32469775709889e-09 0.050081839706457965 2.611211512277084e-05 0.25680406162145103 5.870522008102611e-05']
['59906.9701056816 0.3068069975413359 5.2576085908072003e-05 0.02602482222262787 1.3576400878078678e-05 6.372275538183127e-06 3.3242327832974924e-09 0.05004773504351514 2.6108463227074383e-05 0.2567592624978208 5.870176029296279e-05']
['59906.970245961806 0.306930902193543 5.2580256098981826e-05 0.026021465137605903 1.3579234289823158e-05 6.371453543297548e-06 3.324926554812798e-09 0.05004127911078059 2.611391209581377e-05 0.2568896230827624 5.8707918855827314e-05']
['59906.970386242014 0.3068849411918336 5.25784736753875e-05 0.026031689448322858 1.3577316197230394e-05 6.373957004205719e-06 3.3244569026321112e-09 0.05006094124677473 2.6110223456212297e-05 0.2568239999450589 5.8704681780644675e-05']
['59906.97052652222 0.30688759940344945 5.2577411618183895e-05 0.026029733340007726 1.358021480901835e-05 6.373478043732524e-06 3.325166638623123e-09 0.05005717950001486 2.6115797709650675e-05 0.2568304199034346 5.8706210084447915e-05']
['59906.97066680243 0.3068798785237184 5.257712925307534e-05 0.026015502993000924 1.3577008429454799e-05 6.369993689781685e-06 3.32438154453548e-09 0.0500298134480787 2.6109631595105386e-05 0.2568500650756397 5.870321441392043e-05']
['59906.97080708264 0.30690689228361157 5.258228823554571e-05 0.026048769824634697 1.3578784843093496e-05 6.378139198544025e-06 3.3248165060917483e-09 0.050093788124297496 2.61130477751798e-05 0.2568131041593141 5.87093544522066e-05']
['59906.970947362846 0.30693541108964445 5.258145634697529e-05 0.026039570287567704 1.3577951220301993e-05 6.375886657315764e-06 3.3246123904179916e-09 0.05007609670686097 2.611144465442691e-05 0.2568593143827835 5.870789634717009e-05']
['59906.971087643054 0.3067972522923478 5.258015798356395e-05 0.0260076323999355 1.3575564368276313e-05 6.368066545487182e-06 3.324027960728275e-09 0.05001467769218366 2.6106854554377528e-05 0.2567825746001641 5.870469204671775e-05']
['59906.97122792326 0.3071360831145755 5.263232890428699e-05 0.026079599049169275 1.3579342006333511e-05 6.385687850046129e-06 3.3249529296052216e-09 0.0501530750945563 2.6114119242949063e-05 0.2569830080200192 5.875465317508058e-05']
['59906.97136820347 0.3068518781210313 5.2576257065494616e-05 0.026036305112261838 1.3579892859952825e-05 6.375087166869625e-06 3.3250878081843507e-09 0.05006981752358046 2.6115178576832358e-05 0.25678206059745085 5.870490063969801e-05']
['59906.97150848368 0.30693563558475817 5.258176242696992e-05 0.026037326632301655 1.3578444482258748e-05 6.375337289890863e-06 3.324733167462079e-09 0.0500717819851955 2.6112393235112977e-05 0.25686385359956265 5.8708592389798274e-05']
['59906.97164876389 0.30692519172451466 5.2578699211996215e-05 0.026004105808870418 1.3577854516531938e-05 6.367203046409841e-06 3.324588712136423e-09 0.05000789578628927 2.6111258685638345e-05 0.2569172959382254 5.870534422839113e-05']
['59906.971789044095 0.30684309972001295 5.257370706521142e-05 0.026047106377441495 1.3578437711141496e-05 6.377731897246531e-06 3.32473150952857e-09 0.05009058918738749 2.611238021373365e-05 0.25675251053262543 5.870137200275007e-05']
['59906.9719293243 0.3068273902723362 5.2574000349327204e-05 0.026063309475847417 1.3578096259296296e-05 6.3816992867922346e-06 3.324647903760891e-09 0.05012174899201427 2.6111723575569803e-05 0.2567056412803219 5.8701342581051966e-05']
['59906.97206960451 0.3069184122391537 5.258067726938595e-05 0.026057122263027654 1.3578615184371387e-05 6.38018432447804e-06 3.3247749645159604e-09 0.050109850505822416 2.6112721508406514e-05 0.25680856173333133 5.870776649373502e-05']
['59906.97220988472 0.30687859023036923 5.257827351344665e-05 0.02602424821957224 1.3577429657498811e-05 6.3721349913775056e-06 3.3244846838052854e-09 0.05004663119148508 2.611044164903618e-05 0.25683195903888417 5.8704599553719205e-05']
['59906.97235016493 0.30694745832386794 5.258951442541736e-05 0.026033745442671175 1.3579275926761518e-05 6.37446042214957e-06 3.324936749773652e-09 0.050064895082059954 2.6113992166849074e-05 0.25688256324180797 5.871624659658888e-05']
['59906.972490445136 0.30688246836897437 5.257915962294542e-05 0.026024979062421814 1.3576386043637524e-05 6.372313940996172e-06 3.324229151028819e-09 0.05004803665850349 2.6108434699302932e-05 0.2568344317104709 5.870450058643664e-05']
['59906.972630725344 0.3069121587570023 5.258358369695245e-05 0.02603355138519877 1.3582495750410497e-05 6.374412906448067e-06 3.325725135696143e-09 0.05006452189461302 2.6120184135404804e-05 0.25684763686238926 5.8713689150672995e-05']
['59906.97277100555 0.30685921568287233 5.257743422620651e-05 0.02602180633864771 1.3577124002885619e-05 6.3715370876550735e-06 3.324409843124411e-09 0.050041935266630214 2.6109853851703118e-05 0.25681728041624213 5.87035864148722e-05']
['59906.97291128576 0.30688104630151936 5.257745359201173e-05 0.026045740802307878 1.3577218340804804e-05 6.377397531042411e-06 3.3244329421185023e-09 0.050087963081361306 2.6110035270778474e-05 0.25679308322015804 5.870368445047928e-05']
['59906.973051565976 0.3068587930803079 5.2576506453723034e-05 0.02604078598558933 1.3577340551734013e-05 6.3761843255456856e-06 3.3244628659238612e-09 0.05007843458767179 2.611027029179618e-05 0.2567803584926361 5.870294068944957e-05']
['59906.973191846184 0.3069529972634999 5.259293975122398e-05 0.026020323420813125 1.3576409049797378e-05 6.3711739896495765e-06 3.3242347841735303e-09 0.050039083501563705 2.6108478941918034e-05 0.2569139137619362 5.871686286184279e-05']
['59906.97333212639 0.30691087274402273 5.257905703013924e-05 0.026040900053101133 1.357853259671801e-05 6.376212255404685e-06 3.3247547426186166e-09 0.050078653948271414 2.6112562685996172e-05 0.2568322187957513 5.870624471220004e-05']
['59906.9734724066 0.30690133971749084 5.2578918751240976e-05 0.026020944848186234 1.3577268793746188e-05 6.371326148477581e-06 3.3244452957108326e-09 0.0500402785542043 2.6110132295665748e-05 0.25686106116328655 5.870503986496191e-05']
['59906.97361268681 0.3068775775968492 5.2577717882314305e-05 0.02603831231472457 1.357808679791578e-05 6.375578637936903e-06 3.32464558710631e-09 0.050073677528316485 2.611170538060727e-05 0.2568039000685327 5.8704664002069446e-05']
['59906.97375296702 0.3068853751628665 5.257694696325053e-05 0.02605692979319872 1.3580013068611045e-05 6.380137197517008e-06 3.3251172417261323e-09 0.05010948037153601 2.6115409747328935e-05 0.2567758947913305 5.870562135134371e-05']
['59906.973893247225 0.3068218934052195 5.257439004671912e-05 0.02601872576646222 1.3576627861231395e-05 6.370782797976809e-06 3.3242883609755748e-09 0.05003601108935043 2.61088997331373e-05 0.2567858823158691 5.870043555255425e-05']
['59906.97403352743 0.30708518567990917 5.2593438313446515e-05 0.026039531911203118 1.357881411351765e-05 6.375877260718654e-06 3.3248236730651187e-09 0.050076022906159846 2.6113104064457022e-05 0.2570091627737493 5.871936611980298e-05']
['59906.97417380764 0.3068348643902086 5.2577381880861685e-05 0.026024836674948423 1.3581921893357198e-05 6.372279076888134e-06 3.325584624639742e-09 0.05004776283643928 2.611908056414846e-05 0.25678710155376927 5.870764392276733e-05']
['59906.97431408785 0.30688277585292467 5.2576945077417074e-05 0.026043101842634864 1.357865432578141e-05 6.376751371847672e-06 3.3247845484373214e-09 0.05008288815891321 2.6112796780348866e-05 0.25679988769401146 5.870445732110578e-05']
['59906.97445436806 0.3069389829573142 5.258120557839353e-05 0.026049891831342584 1.3579117442988887e-05 6.378413926103628e-06 3.324897944426246e-09 0.050095945829504974 2.6113687390363246e-05 0.2568430371278092 5.87086692848586e-05']
['59906.974594648265 0.30689322890785226 5.2577596483135245e-05 0.026029769275233393 1.357770211419057e-05 6.373486842607595e-06 3.3245513958503187e-09 0.05005724860621807 2.6110965604212635e-05 0.2568359803016342 5.8704226225441136e-05']
['59906.97473492847 0.30697036711129755 5.2583374051913685e-05 0.02604376127998077 1.3577931056113425e-05 6.37691283756038e-06 3.3246074531406317e-09 0.05008415630765533 2.6111405877141203e-05 0.2568862108036422 5.8709596690526446e-05']
['59906.97487520868 0.30701735126768265 5.258816772780804e-05 0.02601015714386777 1.3576390265672277e-05 6.368684738528508e-06 3.3242301848098975e-09 0.05001953296897648 2.6108442818600535e-05 0.25699781829870616 5.871257251543493e-05']
['59906.97501548889 0.3069549668433424 5.2581656720708796e-05 0.026027856395502615 1.3579336281677833e-05 6.3730184668157585e-06 3.324951527901762e-09 0.05005356999135119 2.6114108233995833e-05 0.2569013968519912 5.870926053316725e-05']
['59906.9751557691 0.30686321843618825 5.257719184221106e-05 0.02605602264683707 1.3594574436688328e-05 6.379915079320755e-06 3.3286826474302556e-09 0.05010773585930207 2.6143412378246788e-05 0.2567554825768862 5.871830304761653e-05']
['59906.975296049306 0.3069089359664728 5.2578628590172e-05 0.026060272718932964 1.3580698446234973e-05 6.380955725447768e-06 3.3252850590134135e-09 0.05011590907487109 2.6116727781221104e-05 0.2567930268916017 5.870771375570385e-05']
['59906.975436329514 0.30690268205597626 5.257927474163237e-05 0.026044157520390437 1.3577875848275545e-05 6.3770098585139975e-06 3.324593935294023e-09 0.05008491830844315 2.6111299708222207e-05 0.2568177637475331 5.870587794087288e-05']
['59906.97557660972 0.30685993605151163 5.258074110295975e-05 0.026044046789079393 1.357846817238971e-05 6.3769827455362935e-06 3.324738968079687e-09 0.05008470536361422 2.6112438793057136e-05 0.2567752306878974 5.8707697916522296e-05']
['59906.97571688993 0.3067704409872585 5.257301041772244e-05 0.0260521929250964 1.3577973752489119e-05 6.378977357558148e-06 3.324617907508699e-09 0.050100371009800776 2.6111487985556e-05 0.25667006997745767 5.8700351184654664e-05']
['59906.97585717014 0.3068211497229151 5.257451859413125e-05 0.026026678927771767 1.3576245585711935e-05 6.372730159416227e-06 3.324194759377813e-09 0.05005130563033033 2.6108164587907568e-05 0.25676984409258474 5.870022370957306e-05']
['59906.97599745035 0.306874726492012 5.257492352009417e-05 0.026038347323138367 1.3577309187978233e-05 6.375587209878604e-06 3.3244551863903747e-09 0.05007374485218917 2.611020997688122e-05 0.2568009816398228 5.870149613238642e-05']
['59906.976137730555 0.306994124487209 5.258377861022533e-05 0.026072362156284314 1.3579767218810294e-05 6.38391586962264e-06 3.3250570444783667e-09 0.050139157992854455 2.6114936959250567e-05 0.2568549664943545 5.871152957737366e-05']
['59906.97627801076 0.3068776589528981 5.2577227220309234e-05 0.026020971575098563 1.3582464554770159e-05 6.37133269266252e-06 3.325717497326354e-09 0.050040329952112626 2.6120124143788766e-05 0.2568373290007855 5.8707969709937706e-05']
['59906.97641829097 0.3068627012501782 5.2588356468871245e-05 0.026021916631237655 1.3576817911523442e-05 6.371564093210268e-06 3.3243348955039063e-09 0.050042147367764724 2.610926521446816e-05 0.2568205538824135 5.871310727713625e-05']
['59906.97655857118 0.3068761195028261 5.257823756591792e-05 0.026022243909502966 1.3575910936588185e-05 6.371644228523638e-06 3.3241128192820496e-09 0.05004277674904417 2.6107521031900356e-05 0.25683334275378195 5.870326839256245e-05']
['59906.97669885139 0.3069321005567872 5.258036368270911e-05 0.026012399398486638 1.3576910185926296e-05 6.369233762999683e-06 3.3243574892382676e-09 0.05002384499708969 2.6109442665242878e-05 0.25690825555969754 5.8706027299550434e-05']
['59906.976839131596 0.3068282606839615 5.257416616902376e-05 0.026020554431563883 1.357721547819437e-05 6.3712305535001775e-06 3.324432241197578e-09 0.050039527753007476 2.6110029765758406e-05 0.25678873293095406 5.8700737667740704e-05']
['59906.976979411804 0.30691331695086366 5.257973079339212e-05 0.026053880637983584 1.3579483569067144e-05 6.379390600402018e-06 3.3249875917726294e-09 0.0501036166115069 2.6114391478975275e-05 0.25680970033935674 5.870766161773746e-05']
['59906.97711969201 0.3068491600425383 5.258485440295977e-05 0.02604167859963664 1.357925636414011e-05 6.376402885450152e-06 3.3249319597922723e-09 0.050080151153147394 2.611395454642329e-05 0.2567690088893909 5.8712056126771263e-05']
['59906.97725997222 0.3068603274830418 5.258295280443845e-05 0.026017977594068594 1.3577053497078973e-05 6.370599605154147e-06 3.3243925795126503e-09 0.050034572296285766 2.6109718263613412e-05 0.25682575518675604 5.8708468839163816e-05']
['59906.97740025243 0.3068355841248018 5.257339687477036e-05 0.02601349949799639 1.3575936710086898e-05 6.369503126499483e-06 3.324119130020082e-09 0.05002596057306999 2.6107570596320958e-05 0.25680962355173176 5.8698954857765535e-05']
['59906.977540532636 0.3067844319022466 5.2571894007213476e-05 0.026022357047365323 1.3577485666046495e-05 6.371671930754477e-06 3.3244983977086995e-09 0.050042994321856396 2.6110549357781724e-05 0.2567414375803902 5.869893378308369e-05']
['59906.977680812844 0.30681065870158936 5.257975256459287e-05 0.026041731528829215 1.3579333854905608e-05 6.376415845361893e-06 3.3249509336974613e-09 0.050080252940056184 2.611410356712617e-05 0.25673040576153316 5.870755304786942e-05']
['59906.97782109305 0.3068366310494947 5.257878870917438e-05 0.026048590395675534 1.3578187555063522e-05 6.378095264688971e-06 3.324670257872641e-09 0.0500934430686068 2.611189914435293e-05 0.2567431879808879 5.870570925428686e-05']
['59906.97796137326 0.30698289154194147 5.258413925043139e-05 0.02604834642936821 1.3577346028508988e-05 6.378035528621651e-06 3.324464206932799e-09 0.05009297390263118 2.6110280824055747e-05 0.2568899176393103 5.870978168431401e-05']
['59906.97810165347 0.30700837221468275 5.2586282696153495e-05 0.02603581808450027 1.3578193650548243e-05 6.374967916291662e-06 3.3246717503749854e-09 0.05006888093173129 2.6111910866438933e-05 0.25693949128295146 5.8712426426580464e-05']
['59906.97824193368 0.30678211539350153 5.257972359120072e-05 0.026048470288817082 1.3578473459810221e-05 6.378065856073245e-06 3.3247402627244725e-09 0.05009321209387901 2.6112448961173505e-05 0.2566889032996225 5.87067911205932e-05']
['59906.97838221389 0.3069647814811292 5.258379851899796e-05 0.026046111322869415 1.3580302434632541e-05 6.377488254394543e-06 3.3251880940841076e-09 0.050088675620902724 2.6115966220447198e-05 0.25687610586022647 5.8712005231588806e-05']
['59906.9785224941 0.3068965661910022 5.258302438675448e-05 0.026031570154696468 1.3576940132593189e-05 6.3739277947129196e-06 3.324364821792214e-09 0.05006071183595475 2.6109500254986903e-05 0.25683585435504747 5.870843599707947e-05']
['59906.97866277431 0.3069185050628222 5.2580473234372e-05 0.02603885933992433 1.3577572453366176e-05 6.375712579113114e-06 3.3245196479101227e-09 0.05007472949985448 2.611071625647342e-05 0.2568437755629677 5.870669185856562e-05']
['59906.97880305452 0.3069544259469069 5.2582197969070864e-05 0.026045716063581133 1.3579071956244599e-05 6.377391473672184e-06 3.3248868068259402e-09 0.0500879155068868 2.6113599915855e-05 0.2568665104400201 5.870951919257985e-05']
['59906.978943334725 0.3068361328196291 5.257464654356191e-05 0.02601560136401093 1.357800112289258e-05 6.370017776293222e-06 3.3246246092548613e-09 0.05003000262309794 2.6111540620947272e-05 0.2568061301965312 5.870183994373469e-05']
['59906.97908361493 0.3069221265206228 5.258141422054557e-05 0.02601764023066198 1.357649220132047e-05 6.370517000456022e-06 3.324255144136493e-09 0.050033923520503815 2.6108638848693213e-05 0.25688820300011894 5.8706610734772315e-05']
['59906.97922389514 0.3069532857441448 5.2582259374188e-05 0.026051345476804575 1.3578448078271768e-05 6.378769856658673e-06 3.324734047959383e-09 0.05009874130154726 2.611240015052263e-05 0.2568545444425976 5.870904055182128e-05']
['59906.97936417535 0.3068538443582756 5.2582883621429037e-05 0.026025201217539925 1.3577158564334554e-05 6.3723683365118346e-06 3.3244183056250853e-09 0.05004846387988448 2.610992031602799e-05 0.25680538047839113 5.8708496734749404e-05']
['59906.97950445556 0.30694596803789487 5.258238954763332e-05 0.0260301897220534 1.3577878453533813e-05 6.373589790591766e-06 3.3245945732013013e-09 0.050058057157795 2.6111304718334256e-05 0.2568879108800999 5.870866992730088e-05']
['59906.979644735766 0.3069251878751449 5.257990738724828e-05 0.026038252414880732 1.3579863587342431e-05 6.375563971234999e-06 3.3250806406756715e-09 0.05007356233630911 2.611512228335083e-05 0.2568516255388358 5.870814485849449e-05']
['59906.979785015974 0.3069231932098341 5.258036287566258e-05 0.026030327296466427 1.3577132458011321e-05 6.373623476203884e-06 3.3244119133937187e-09 0.050058321723973905 2.6109870111560236e-05 0.2568648714858602 5.8706216684256716e-05']
['59906.97992529618 0.306815907443163 5.2573051288833674e-05 0.026044045583595292 1.3578266432212287e-05 6.37698245036898e-06 3.3246895712389838e-09 0.050084703045375566 2.6112050831177477e-05 0.25673120439778746 5.8700638160315875e-05']
['59906.98006557639 0.30692688898356724 5.2589778891365346e-05 0.02604204711222266 1.3578089162629436e-05 6.376493117141931e-06 3.3246461661153367e-09 0.05008085983119743 2.6111709928133534e-05 0.2568460291523698 5.871546848330245e-05']
['59906.9802058566 0.3069860561356632 5.2586775082068664e-05 0.026022706926425457 1.3577391146467826e-05 6.371757599957407e-06 3.324475254234601e-09 0.05004366716620281 2.6110367589361204e-05 0.2569423889694604 5.871218109714237e-05']
['59906.98034613681 0.3069501387067021 5.2582405729630325e-05 0.02604238024639941 1.3577070412204066e-05 6.376574686297228e-06 3.3243967212446066e-09 0.05008150047384503 2.610975079270013e-05 0.2568686382328571 5.8707993312430334e-05']
['59906.980486417015 0.30682575104344045 5.258328869164417e-05 0.026007471717444774 1.3575379592163288e-05 6.368027201775386e-06 3.323982717602501e-09 0.050014368687393805 2.6106499215698633e-05 0.25681138235604667 5.8707338135262675e-05']
['59906.98062669722 0.306823547237446 5.257496729799221e-05 0.02602504210477937 1.357870248361126e-05 6.372329377154371e-06 3.3247963400629664e-09 0.05004815789380648 2.6112889391560118e-05 0.2567753893436395 5.870272718333283e-05']
['59906.98076697743 0.30688527512850894 5.258297301751999e-05 0.026023247628941606 1.3577311623610084e-05 6.371889993000772e-06 3.3244557827639878e-09 0.05004470697873386 2.6110214660788625e-05 0.2568405681497751 5.8708707710131865e-05']
['59906.98090725764 0.3068707586857733 5.25775841366883e-05 0.026025158999354977 1.357641198594018e-05 6.372357999230568e-06 3.3242355030991313e-09 0.05004838269106727 2.6108484588346502e-05 0.25682237599470603 5.870311168200936e-05']
['59906.98104753785 0.30688687830855893 5.257810776924358e-05 0.02602658801799478 1.3577226924034844e-05 6.372707899815638e-06 3.3244350437546385e-09 0.050051130803836115 2.6110051776990087e-05 0.2568357475047228 5.870427770095886e-05']
['59906.981187818055 0.30688728425699796 5.2580555359147566e-05 0.02603634382593894 1.3576749770535204e-05 6.375096646058973e-06 3.3243182109268208e-09 0.050069891972959496 2.6109134174106162e-05 0.25681739228403844 5.8706061775576974e-05']
['59906.98132809826 0.30689060950234737 5.25786381451075e-05 0.02600864041679509 1.357564550727928e-05 6.368313362203988e-06 3.3240478279181208e-09 0.05001661618614441 2.6107010590921694e-05 0.256873993316203 5.870340016718496e-05']
['59906.98146837847 0.30689487699497997 5.257823079130204e-05 0.02601237394883569 1.3576386468847728e-05 6.369227531556993e-06 3.3242292551431356e-09 0.050023796055453255 2.6108435517014862e-05 0.2568710809395267 5.870366903601125e-05']
['59906.98160865868 0.3069419756396503 5.2579114887421624e-05 0.02600761522881946 1.3576753559960495e-05 6.36806234107488e-06 3.3243191387818465e-09 0.05001464467080666 2.6109141461462492e-05 0.2569273309688437 5.870477485008644e-05']
['59906.98174893889 0.3068712594540453 5.257675964135367e-05 0.02603843088289243 1.3577287647355307e-05 6.375607669798454e-06 3.3244499120878885e-09 0.05007390554402391 2.611016855260636e-05 0.2567973539100214 5.8703122201721016e-05']
['59906.981889219096 0.3068060642935231 5.257566786394508e-05 0.026058647213999336 1.3576797054826378e-05 6.380557714455141e-06 3.324329788663238e-09 0.050112783103844885 2.6109225105435347e-05 0.2566932811896782 5.87017247357023e-05']
['59906.982029499304 0.3068737408653838 5.258193299319449e-05 0.02603783451682288 1.357539571555935e-05 6.3754616473248216e-06 3.3239866654766282e-09 0.05007275868619785 2.6106530222229523e-05 0.25680098217918595 5.870613764799196e-05']
['59906.98216977951 0.30696410917509603 5.258322598069397e-05 0.026022208749841593 1.3576350696166827e-05 6.3716356195484e-06 3.3242204960677617e-09 0.05004270913431076 2.6108366723397744e-05 0.2569214000407853 5.870811245049658e-05']
['59906.98231005972 0.3068621171449611 5.258187351886806e-05 0.02605612470983007 1.3583245920135887e-05 6.379940069828204e-06 3.3259088175729953e-09 0.050107932134288595 2.6121626769492094e-05 0.2567541850106725 5.871279935277217e-05']
['59906.98245033993 0.30690412846505244 5.2578837172141835e-05 0.026024197660499675 1.3576571262502795e-05 6.372122611798557e-06 3.324274502564145e-09 0.050046533962499376 2.6108790889428453e-05 0.2568575945025531 5.8704370195774235e-05']
['59906.98259062014 0.3069145244656486 5.2584991445811425e-05 0.02607018400214326 1.3578640707128305e-05 6.3833825403943865e-06 3.3247812138589216e-09 0.05013496923489089 2.6112770590631358e-05 0.2567795552307577 5.871165227852988e-05']
['59906.982730900345 0.3069128546482766 5.258089355897866e-05 0.026040267430914976 1.3575674572908318e-05 6.376057355484629e-06 3.324054944746637e-09 0.05007743736714419 2.610706648636215e-05 0.2568354172811324 5.8705445130617805e-05']
['59906.98287118055 0.30680526554771614 5.257165231679246e-05 0.026066798657734574 1.358371560000057e-05 6.382553626091754e-06 3.326023820453203e-09 0.050128458957181876 2.61225300000011e-05 0.25667680659053427 5.870404756844853e-05']
['59906.98301146076 0.30692557499898243 5.2584273794509434e-05 0.0260600485586017 1.3582298282230228e-05 6.380900838948127e-06 3.32567678487e-09 0.05011547799731096 2.6119804388904286e-05 0.25681009700167146 5.8714138261670464e-05']
['59906.98315174097 0.30696011807498547 5.258101520597682e-05 0.026002027681315897 1.357537283997656e-05 6.36669420906726e-06 3.3239810643042017e-09 0.05000389938714596 2.6106486230724155e-05 0.2569562186878395 5.870529604223247e-05']
['59906.98329202118 0.3068486891148544 5.257671847825052e-05 0.02603794626072318 1.357558578827528e-05 6.37548900823881e-06 3.3240332054955315e-09 0.050072973578313806 2.610689574668323e-05 0.2567757155365406 5.870162971732043e-05']
['59906.983432301386 0.3069807376529679 5.2584280327694986e-05 0.02602130633038425 1.3574892398414064e-05 6.371414658752433e-06 3.3238634263818354e-09 0.050040973712277406 2.6105562304642432e-05 0.2569397639406905 5.870780970895761e-05']
['59906.983572581594 0.30678814600414067 5.257760509679179e-05 0.026021414973185233 1.3575439903379948e-05 6.3714412603505995e-06 3.3239974850305858e-09 0.05004118264074084 2.6106615198807594e-05 0.25674696336339986 5.870229905934518e-05']
['59906.98371286181 0.30694409533635614 5.258150335394589e-05 0.026056525783753372 1.3578016133481847e-05 6.380038274285803e-06 3.324628284654062e-09 0.05010870343029495 2.611156948746509e-05 0.2568353919060612 5.870799397066588e-05']
['59906.98385314202 0.3068646814828299 5.257634686491241e-05 0.026034217877055427 1.3576102885823232e-05 6.374576099484248e-06 3.324159818773712e-09 0.05006580360972198 2.610789016504468e-05 0.25679887787310796 5.8701739143994884e-05']
['59906.983993422225 0.30683905982990667 5.257436323506569e-05 0.02602573891923126 1.3575484236301462e-05 6.372499994791965e-06 3.3240083401130487e-09 0.05004949792159858 2.610670045442589e-05 0.2567895619083081 5.869943337196491e-05']
['59906.98413370243 0.3068511303570659 5.25788659631649e-05 0.026029868704995393 1.3577412441012342e-05 6.373511188358538e-06 3.324480468283863e-09 0.050057439817298835 2.611040854040835e-05 0.2567936905397671 5.8705115451036204e-05']
['59906.98427398264 0.30694177964246333 5.257988840059844e-05 0.026046965465433607 1.3577508479510393e-05 6.377697394411768e-06 3.324503983671082e-09 0.05009031820275694 2.6110593229827684e-05 0.2568514614397064 5.870611333611611e-05']
['59906.98441426285 0.30687895681673005 5.257720719182646e-05 0.026034240773107474 1.357693988187094e-05 6.374581705668649e-06 3.324364760401929e-09 0.0500658476405913 2.6109499772828733e-05 0.25681310917613875 5.870322558837454e-05']
['59906.98455454306 0.3068788951544783 5.257856559913947e-05 0.026041494889874478 1.3576342871554323e-05 6.376357903424394e-06 3.3242185801819808e-09 0.05007979786514323 2.610835167606601e-05 0.2567990972893351 5.8703931620498394e-05']
['59906.984694823266 0.3068457485025584 5.25798504604984e-05 0.026045916433521374 1.357709674709969e-05 6.377440535005163e-06 3.3244031694427827e-09 0.05008830083369495 2.6109801436730175e-05 0.25675744766886344 5.870572719517109e-05']
['59906.984835103474 0.30686354122662174 5.2576324604826e-05 0.026046472640715117 1.3578045455900753e-05 6.377576724427113e-06 3.3246354643585423e-09 0.05008937046291369 2.6111625876732217e-05 0.25677417076370807 5.8703380778950577e-05']
['59906.98497538368 0.3068657757972232 5.257636717988838e-05 0.026032317657931993 1.3577043559861241e-05 6.3741108236897055e-06 3.3243901463475385e-09 0.05006214934217691 2.610969915357931e-05 0.2568036264550463 5.870256191789983e-05']
['59906.98511566389 0.30683098378372364 5.2576714053320615e-05 0.026027142827828004 1.3576318978737412e-05 6.372843747088612e-06 3.3242127299359564e-09 0.050052197745823084 2.610830572834118e-05 0.25677878603790055 5.870225284134481e-05']
['59906.9852559441 0.3070532826795117 5.25892511823991e-05 0.026015470846695192 1.3575943228288179e-05 6.369985818637901e-06 3.324120726026165e-09 0.05002975162825999 2.6107583131323423e-05 0.2570235310512517 5.87131606787135e-05']
['59906.98539622431 0.30691922719281495 5.258072610779551e-05 0.026034795397442943 1.3583346108491517e-05 6.3747175075218005e-06 3.3259333490684393e-09 0.050066914225851814 2.6121819439406764e-05 0.25685231296696315 5.871185748081879e-05']
['59906.985536504515 0.3069625333285605 5.258241779401194e-05 0.026011531552170945 1.3574950701256046e-05 6.369021267567396e-06 3.323877702051832e-09 0.05002217606186721 2.6105674425492397e-05 0.2569403572666933 5.870619131125635e-05']
['59906.98567678472 0.3069685430335532 5.2581573256069706e-05 0.02603763919642075 1.357559578829985e-05 6.375413822390228e-06 3.3240356540391336e-09 0.0500723830700399 2.6106914977499715e-05 0.2568961599635133 5.8705986540776433e-05']
['59906.98581706493 0.30695356296428733 5.258960565158433e-05 0.026013233790227068 1.3578279374466535e-05 6.369438066953474e-06 3.324692740198581e-09 0.05002544959659052 2.6112075720127952e-05 0.25692811336769683 5.871547599230416e-05']
['59906.98595734514 0.3069290375244621 5.258624389377686e-05 0.02603521320898277 1.3576682312925623e-05 6.374819810247716e-06 3.324301693677569e-09 0.05006771770958226 2.6109004447933894e-05 0.25686131981487986 5.8711099122040085e-05']
['59906.98609762535 0.3068939583774234 5.258463478137e-05 0.026062076178678523 1.3577108860553063e-05 6.381397309344957e-06 3.3244061354673706e-09 0.05011937726668947 2.6109824731832815e-05 0.2567745811107339 5.8710022676005644e-05']
['59906.986237905556 0.306926033792593 5.258018420443596e-05 0.026056879057075027 1.357942243642912e-05 6.380124774586424e-06 3.324972623216436e-09 0.050109382802067365 2.6114273916209848e-05 0.25681665099052564 5.870801540797692e-05']
['59906.986378185764 0.30700738750696877 5.2584863814500686e-05 0.026026984682966096 1.3577571795309757e-05 6.372805024724771e-06 3.324519486782535e-09 0.05005189362108865 2.6110714990980304e-05 0.2569554938858801 5.871062373821102e-05']
['59906.98651846597 0.30702909658973815 5.258725235806559e-05 0.02605876871149745 1.3579858238290868e-05 6.380587463574215e-06 3.3250793309402913e-09 0.05011301675287971 2.611511199671321e-05 0.25691607983685844 5.8714718641680886e-05']
['59906.98665874618 0.3068994528991817 5.257895025904307e-05 0.02602296966750345 1.3576794009731896e-05 6.371821933097893e-06 3.3243290430604087e-09 0.05004417243750664 2.610921924948442e-05 0.25685528046167505 5.870466199681736e-05']
['59906.98679902639 0.306858410103038 5.257592617776133e-05 0.026064683115759393 1.357746418958917e-05 6.382035627687649e-06 3.3244931391174023e-09 0.050124390607229605 2.6110508056902252e-05 0.2567340194958084 5.870252672959629e-05']
['59906.9869393066 0.3069541993048971 5.258242138752391e-05 0.026012947501229934 1.3585490792086345e-05 6.369367968016479e-06 3.326458482907647e-09 0.0500248990408268 2.612594383093528e-05 0.2569293002640703 5.871521080633465e-05']
['59906.987079586805 0.30686515826891225 5.2576810051606446e-05 0.026035734914736215 1.3576748817212952e-05 6.374947551862331e-06 3.3243179775022844e-09 0.050068720989877344 2.610913234079414e-05 0.2567964372790349 5.8702706469053086e-05']
['59906.98721986701 0.3068811354469432 5.257862804143795e-05 0.026026204642452592 1.357587291165147e-05 6.372614028873177e-06 3.324103508733374e-09 0.050050393543178064 2.610744790702206e-05 0.2568307419037651 5.870358560546158e-05']
['59906.98736014722 0.30684999922556544 5.2575468129720654e-05 0.02602904132620887 1.3575280915923533e-05 6.373308601552869e-06 3.3239585563543123e-09 0.050055848704247834 2.6106309453699106e-05 0.2567941505213176 5.870024908253432e-05']
['59906.98750042743 0.3068552017522522 5.2584171277492565e-05 0.02604107395862718 1.3574720036412424e-05 6.376254836826379e-06 3.3238212228978935e-09 0.050078988381975345 2.610523083925466e-05 0.2567762133702769 5.870756464129173e-05']
['59906.98764070764 0.30682692124739475 5.258013095501879e-05 0.025997915830688785 1.3574395776181062e-05 6.365687406986398e-06 3.3237418265614793e-09 0.04999599198209382 2.610460726188666e-05 0.25683092926530093 5.870366846751803e-05']
['59906.987780987845 0.30693401847007695 5.258051084901576e-05 0.02602310510354485 1.3576600983952565e-05 6.371855095121681e-06 3.324281779972832e-09 0.050044432891432414 2.610884804606263e-05 0.25688958557864455 5.8705894656634374e-05']
['59906.98792126805 0.30698371212649755 5.258648604335489e-05 0.026055727786474234 1.3577977560373642e-05 6.379842881652651e-06 3.324618839883537e-09 0.05010716882014276 2.611149530841085e-05 0.2568765433063548 5.871242374173562e-05']
['59906.98806154826 0.3069190284394798 5.257919835983158e-05 0.02603753601658608 1.3576695568989422e-05 6.375388558419897e-06 3.324304939474614e-09 0.05007218464728093 2.6109029940364275e-05 0.2568468437921989 5.8704800013196144e-05']
['59906.98820182847 0.30693897093136663 5.2588635335068333e-05 0.026028053837718747 1.3579610276453006e-05 6.373066811284485e-06 3.3250186165523007e-09 0.05005394968792067 2.6114635147025012e-05 0.256885021243446 5.871574520745719e-05']
['59906.98834210868 0.30695447711837254 5.258101192838892e-05 0.026047303446358108 1.3577042204677985e-05 6.377780150311468e-06 3.324389814525825e-09 0.05009096816607329 2.6109696547457666e-05 0.25686350895229926 5.870672081809459e-05']
['59906.988482388886 0.30685587635485745 5.2576747123416423e-05 0.026021233545198533 1.3574783740987937e-05 6.371396837026139e-06 3.323836821202648e-09 0.05004083374076641 2.6105353348053726e-05 0.25681504261409105 5.8700969425610144e-05']
['59906.988622669094 0.30704356934601307 5.258868287310881e-05 0.02604136460738329 1.3577864753461539e-05 6.376326003266747e-06 3.3245912186871122e-09 0.050079547321890946 2.6111278372041423e-05 0.2569640220241221 5.871429489102841e-05']
['59906.9887629493 0.30690233999932787 5.2577763667728306e-05 0.026060680524132972 1.358338592484099e-05 6.3810555780837675e-06 3.325943098251262e-09 0.05011669331564034 2.61218960093096e-05 0.25678564668368753 5.870923848442147e-05']
['59906.98890322951 0.3068672265687483 5.2577244019759824e-05 0.026052746716957197 1.3579818666118105e-05 6.379112955576747e-06 3.3250696415450543e-09 0.05010143599414846 2.6115035896380974e-05 0.25676579057459986 5.8705721089027066e-05']
['59906.98904350972 0.3069458394358607 5.259085945414836e-05 0.026042960436838517 1.3576577770277837e-05 6.376716748106948e-06 3.324276096017324e-09 0.05008261622468946 2.6108803404380456e-05 0.2568632232111712 5.871514381600862e-05']
['59906.989183789934 0.30688529425116906 5.2577147814186084e-05 0.026025564296662453 1.3576319548304638e-05 6.372457237799655e-06 3.3242128693966323e-09 0.050049162108966254 2.6108306823662768e-05 0.2568361321422028 5.87026418270361e-05']
['59906.98932407014 0.30695142033296197 5.258758852182017e-05 0.026025322049507967 1.3575809229957039e-05 6.372397922673369e-06 3.3240879160311387e-09 0.05004869624905379 2.610732544222508e-05 0.2569027240839082 5.87115568545625e-05']
['59906.98946435035 0.3069306494933358 5.258075239468706e-05 0.026039408486789876 1.3577209183705789e-05 6.375847039787168e-06 3.32443069996839e-09 0.050075785551518995 2.6110017660972672e-05 0.25685486394181684 5.870663118121916e-05']
['59906.98960463056 0.3068367640284222 5.257388208896519e-05 0.02605724610144352 1.3577433386412262e-05 6.380214646779624e-06 3.324485596843759e-09 0.050110088656622156 2.6110448820023582e-05 0.25672667537180005 5.870066963406368e-05']
['59906.98974491077 0.30681520256714323 5.2573424632041185e-05 0.026036158389488133 1.357695666769035e-05 6.3750512412470115e-06 3.3243688704729028e-09 0.05006953536440026 2.6109532053250677e-05 0.25674566720274294 5.8699852142749384e-05']
['59906.989885190975 0.3068315311375134 5.2580215834739575e-05 0.02603428646977339 1.3576589486410823e-05 6.374592894669054e-06 3.3242789647565217e-09 0.050065935518794985 2.6108825935405428e-05 0.25676559561871837 5.87056205908182e-05']
['59906.99002547118 0.3068463014330707 5.25767184894301e-05 0.02604446327214225 1.3576516178723057e-05 6.377084722979628e-06 3.324261015093638e-09 0.05008550629258125 2.6108684959082805e-05 0.25676079514048944 5.870242548148601e-05']
['59906.99016575139 0.30686135282763344 5.258179955792522e-05 0.0260148827752093 1.3574612620184613e-05 6.369841827124254e-06 3.3237949216307793e-09 0.05002862072155635 2.6105024269585797e-05 0.2568327321060771 5.870534845195528e-05']
['59906.9903060316 0.30684518680941736 5.2574909207931344e-05 0.02602506266811512 1.3577185229170719e-05 6.372334412164419e-06 3.3244248346104427e-09 0.05004819743868293 2.6109971594559076e-05 0.2567969893707344 5.870137728274274e-05']
['59906.99044631181 0.3069375265758276 5.2581538006940935e-05 0.026036973132035242 1.357667281157082e-05 6.375250734021965e-06 3.3242993672351336e-09 0.05007110217699086 2.6108986176097735e-05 0.2568664243988368 5.870687607358304e-05']
['59906.990586592015 0.30684115182339555 5.2574521103858864e-05 0.02602532081407661 1.3575903036534091e-05 6.372397620173358e-06 3.3241108849241117e-09 0.050048693873224255 2.610750583948864e-05 0.2567924579501713 5.8699932968096606e-05']
['59906.99072687222 0.3069404169119433 5.2589693382243746e-05 0.026016381028890104 1.3574700347092578e-05 6.3702086801693386e-06 3.323816401893925e-09 0.05003150197863482 2.6105192975178034e-05 0.2569089149333085 5.871249398815976e-05']
['59906.99086715243 0.30698938594805036 5.2584056455291664e-05 0.026059408131954533 1.3578233040511441e-05 6.38074402807646e-06 3.3246813951555255e-09 0.050114246407604875 2.6111986616368158e-05 0.2568751395404455 5.871046617381513e-05']
['59906.99100743264 0.30689289766623207 5.257799792984966e-05 0.02604720216901387 1.3580043885130214e-05 6.37775535217307e-06 3.325124787266678e-09 0.05009077340194975 2.61154690098658e-05 0.25680212426428234 5.8706588965094336e-05']
['59906.99114771285 0.3068447572709322 5.257488820574797e-05 0.026014111689291852 1.3575902968553315e-05 6.36965302383916e-06 3.3241108682787632e-09 0.0500271378640228 2.6107505708756378e-05 0.2568176194069094 5.870026170452432e-05']
['59906.991287993056 0.3068749011520574 5.2575772645908615e-05 0.02606086920143457 1.3585057815281194e-05 6.381101776430227e-06 3.326352466909518e-09 0.05011705615660495 2.6125111183233066e-05 0.25675784499545246 5.87088860705989e-05']
['59906.991428273264 0.3068889875713434 5.2583140724381375e-05 0.026048083441790458 1.35764073338258e-05 6.377971135124772e-06 3.32423436401144e-09 0.05009246815728934 2.6108475641972695e-05 0.25679651941405407 5.8708084526644e-05']
['59906.99156855347 0.3069513807263968 5.258627399631454e-05 0.026040532905816857 1.3576529399916818e-05 6.376122358012169e-06 3.3242642523526236e-09 0.05007794789580165 2.610871038445542e-05 0.25687343283059516 5.871099531395152e-05']
['59906.99170883368 0.3068435736918882 5.257404623731409e-05 0.026047957043564985 1.3577452016453497e-05 6.377940186044184e-06 3.3244901584793784e-09 0.05009222508377882 2.6110484647025957e-05 0.2567513486081094 5.8700832585797435e-05']
['59906.99184911389 0.3068675892136264 5.2576927011314383e-05 0.02605684001979598 1.3576798718822889e-05 6.380115216161923e-06 3.324330196099038e-09 0.05010930773037688 2.6109228305428636e-05 0.25675828148324953 5.870285390556472e-05']
['59906.9919893941 0.30689273191998173 5.257719823623838e-05 0.026049042212187238 1.357911897779407e-05 6.378205893660061e-06 3.3248983202290636e-09 0.050094311946513925 2.6113690341911676e-05 0.2567984199734678 5.8705081531720565e-05']
['59906.992129674305 0.30691186620764055 5.258046703276681e-05 0.02602867050464911 1.3575523464169586e-05 6.373217804500192e-06 3.324017945204001e-09 0.050055135585863685 2.6106775892633824e-05 0.2568567306217769 5.8704933871797214e-05']
['59906.99226995451 0.30692163468532885 5.258001621989123e-05 0.026037281502890045 1.3577568540964806e-05 6.375326239784807e-06 3.324518689943942e-09 0.05007169519786547 2.611070873262463e-05 0.2568499394874634 5.870627918889073e-05']
['59906.99241023472 0.3068548739166672 5.2577857607902135e-05 0.02601497793049985 1.3576592794320565e-05 6.369865126254796e-06 3.3242797747106555e-09 0.050028803712499716 2.610883229677032e-05 0.2568260702041675 5.870351126242543e-05']
['59906.99255051493 0.3069326443634022 5.2580470947709596e-05 0.02602730775033075 1.35761920263088e-05 6.372884128983288e-06 3.3241816451566467e-09 0.05005251490448221 2.6108061589055384e-05 0.25688012945891997 5.870550915391878e-05']
['59906.99269079514 0.3068756255748274 5.257599067123393e-05 0.026058137591833674 1.3577738902238565e-05 6.380432931552411e-06 3.324560403542142e-09 0.05011180306121861 2.611103635045878e-05 0.2567638225136088 5.870281947535959e-05']
['59906.992831075346 0.30685498307788345 5.2584520858875565e-05 0.026029040423523032 1.3576047800088859e-05 6.373308380526849e-06 3.324146330824605e-09 0.05005584696831353 2.6107784230940115e-05 0.25679913610956995 5.870901320416521e-05']
['59906.992971355554 0.3068330230057994 5.258047450471418e-05 0.026027806171508173 1.3587193342910003e-05 6.373006169281947e-06 3.326875358876032e-09 0.05005347340674649 2.6129217967134623e-05 0.2567795495990529 5.8714924258785596e-05']
['59906.99311163576 0.3068752952830942 5.258353896562319e-05 0.026020203042207243 1.3575319605985152e-05 6.371144514495471e-06 3.32396802976132e-09 0.050038852004244704 2.6106383857663754e-05 0.2568364432788495 5.87075110038988e-05']
['59906.99325191597 0.3069459738140506 5.258296639993911e-05 0.026018590064699653 1.357842428931897e-05 6.370749570890195e-06 3.3247282231448773e-09 0.050035750124422414 2.6112354402536482e-05 0.2569102236896282 5.87096534469485e-05']
['59906.99339219618 0.3068128516863424 5.2573313586090376e-05 0.02604033970392996 1.3578693999771661e-05 6.3760750518039936e-06 3.3247942627629532e-09 0.05007757635371147 2.6112873076483966e-05 0.25673527533263096 5.8701238843230186e-05']
['59906.99353247639 0.306884914787487 5.2594338695907216e-05 0.026058981841110575 1.3579434009547729e-05 6.380639649161059e-06 3.3249754569380262e-09 0.05011342661752034 2.6114296172207172e-05 0.25677148816996664 5.872070271573355e-05']
['59906.993672756595 0.30687130319232236 5.257695129785991e-05 0.02601718238913034 1.3575246188645024e-05 6.370404896236155e-06 3.323950053249643e-09 0.05003304305601988 2.6106242670471202e-05 0.2568382601363025 5.870154780026728e-05']
['59906.9938130368 0.30691609103095363 5.258176570937443e-05 0.02606117856931362 1.3577567980075414e-05 6.381177526318203e-06 3.324518552608066e-09 0.05011765109483389 2.6110707653991184e-05 0.2567984399361197 5.87078456367438e-05']
['59906.99395331701 0.3069153522103561 5.2578816620076794e-05 0.026020638088014983 1.3575524104964627e-05 6.3712510370966605e-06 3.324018102105075e-09 0.05003968863079805 2.610677712493198e-05 0.25687566357955804 5.8703456193128314e-05']
['59906.99409359722 0.30687051927495296 5.257691280767821e-05 0.026004520986745765 1.3577468501598369e-05 6.367304704273108e-06 3.3244941949290615e-09 0.05000869420528032 2.6110516349227633e-05 0.25686182506967264 5.870341407796893e-05']
['59906.99423387743 0.30694116223557044 5.2583753037059495e-05 0.026040986947978833 1.357772405923026e-05 6.3762335319420936e-06 3.3245567691757698e-09 0.050078821053805456 2.611100780621204e-05 0.256862341181765 5.8709759087553153e-05']
['59906.994374157635 0.3068273740280292 5.2584367215863616e-05 0.026019008416956934 1.3575498204041084e-05 6.3708520060128106e-06 3.324011760166594e-09 0.05003655464799411 2.6106727315463624e-05 0.25679081938003506 5.870840558741795e-05']
['59906.99451443785 0.3068421672107816 5.257570847565202e-05 0.026033172877381584 1.3585025802862445e-05 6.374320227386369e-06 3.326344628548465e-09 0.05006379399496459 2.6125049620889318e-05 0.25677837321581704 5.870880120910899e-05']
['59906.99465471806 0.30687702637084163 5.2577822236816585e-05 0.02600608104292045 1.3575955100074302e-05 6.367686689891111e-06 3.3241236328776184e-09 0.050011694313308555 2.610760596168135e-05 0.2568653320575331 5.870293417042034e-05']
['59906.99479499827 0.3069243672812283 5.2579456631101765e-05 0.02606751232569043 1.3577056336463691e-05 6.38272837037314e-06 3.3243932747466707e-09 0.05012983139555852 2.610972372396864e-05 0.25679453588566975 5.870533989820587e-05']
['59906.994935278475 0.3068424218009891 5.257449436994362e-05 0.026022482638571282 1.3577427209316255e-05 6.371702682233303e-06 3.3244840843585847e-09 0.050043235843406315 2.61104369409928e-05 0.2567991859575828 5.87012127260144e-05']
['59906.99507555868 0.30697423284675246 5.25834473618742e-05 0.02602667882603717 1.3576534122606736e-05 6.372730134506129e-06 3.3242654087210007e-09 0.050051305434686874 2.6108719466551417e-05 0.25692292741206557 5.870846760597721e-05']
['59906.99521583889 0.30689285043876213 5.257978360498162e-05 0.02602919028320226 1.357506497619012e-05 6.373345074232571e-06 3.323905682698954e-09 0.05005613516000435 2.6105894184981e-05 0.2568367152787578 5.8703929639710823e-05']
['59906.9953561191 0.3068717310719936 5.258656454067535e-05 0.026003968935969263 1.35800066119359e-05 6.3671695325655425e-06 3.325115660784955e-09 0.050007632569171664 2.6115397330645964e-05 0.25686409850282194 5.8714229518304374e-05']
['59906.99549639931 0.30683253762347246 5.2576184991935994e-05 0.02605170988517296 1.3576572453209093e-05 6.378859083417338e-06 3.3242747941130573e-09 0.05009944208687108 2.610879317924826e-05 0.2567330955366014 5.8701995788755225e-05']
['59906.995636679516 0.3069221595561971 5.258039651904874e-05 0.026019761729406107 1.3576432456995309e-05 6.371036457397393e-06 3.324240515513922e-09 0.05003800332578098 2.610852395576021e-05 0.25688415623041616 5.870564812050794e-05']
['59906.995776959724 0.3069272708926951 5.258030044609503e-05 0.02601766897680524 1.3575463125156539e-05 6.370524039057245e-06 3.324003170969866e-09 0.05003397880154854 2.610665985607027e-05 0.2568932920911466 5.870473306167206e-05']
['59906.99591723993 0.3069279524198665 5.257920805825806e-05 0.026052901867318193 1.3577472486347733e-05 6.379150944725786e-06 3.3244951706099204e-09 0.050101734360227294 2.611052401220718e-05 0.2568262180596392 5.870547320502269e-05']
['59906.99605752014 0.30695989242011756 5.258126071978629e-05 0.02604016426305761 1.3575913113896245e-05 6.376032094446986e-06 3.3241133524041118e-09 0.05007723896741849 2.6107525219031243e-05 0.25688265345269906 5.8705977991551195e-05']
['59906.99619780035 0.30693083837954066 5.2581782049633165e-05 0.026043514021960437 1.3581643514545946e-05 6.376852295504757e-06 3.3255164625414916e-09 0.05008368081146239 2.6118545220280666e-05 0.2568471575680783 5.8711346500816776e-05']
['59906.99633808056 0.30686101005004673 5.2575600840950775e-05 0.026053404874985572 1.3578763636756157e-05 6.37927410804375e-06 3.324811313640345e-09 0.05010270168266456 2.6113006993761844e-05 0.25675830836738217 5.8703346906656345e-05']
['59906.996478360765 0.30686084424060217 5.258210294514199e-05 0.026066265583210572 1.3577834389047132e-05 6.382423100790937e-06 3.324583783846117e-09 0.05012743381386649 2.6111219978936794e-05 0.2567334104267357 5.870837554320455e-05']
['59906.99661864097 0.3069017160508468 5.258194171663389e-05 0.026045079513624694 1.3575604206298198e-05 6.377235612022812e-06 3.324037715217669e-09 0.050086691372355184 2.6106931165958075e-05 0.25681502467849165 5.870632376154682e-05']
['59906.99675892118 0.30682504770566144 5.2574321579199706e-05 0.026021301673118502 1.3574758897298169e-05 6.37141351840341e-06 3.323830738131831e-09 0.050040964755997126 2.610530557172725e-05 0.2567840829496643 5.869877569853018e-05']
['59906.99689920139 0.30689825393023495 5.258665722665409e-05 0.02602995161188197 1.3575898926094534e-05 6.37353148842133e-06 3.3241098784675366e-09 0.050057599253619176 2.6107497934797184e-05 0.25684065467661576 5.871079940427527e-05']
['59906.9970394816 0.3068622933472545 5.257888004618768e-05 0.026030953840620635 1.3577376511301626e-05 6.373776887894972e-06 3.324471670759149e-09 0.05005952661657815 2.611033944481082e-05 0.25680276673067637 5.8705097332639156e-05']
['59906.997179761805 0.3068748040532284 5.2577591868786513e-05 0.026014185118206565 1.35750427872455e-05 6.3696710031849184e-06 3.3239002496524648e-09 0.05002727907347417 2.6105851513933656e-05 0.25684752497975427 5.8701947582582285e-05']
['59906.99732004201 0.30682924570989834 5.257370045337639e-05 0.026031751185182764 1.357807889651875e-05 6.373972120707911e-06 3.324643652419549e-09 0.05006105997150532 2.611169018561298e-05 0.256768185738393 5.8701059136192646e-05']
['59906.99746032222 0.30692794254098876 5.258436715378283e-05 0.02603614315161859 1.3577282086687336e-05 6.375047510197381e-06 3.3244485505374354e-09 0.050069506060804986 2.6110157859014108e-05 0.2568584364801838 5.870993112231074e-05']
['59906.99760060243 0.3069145149156344 5.258023398028056e-05 0.02606551409388642 1.359205372717318e-05 6.382239095805369e-06 3.3280654422311257e-09 0.050125988642089274 2.6138564859948427e-05 0.2567885262735451 5.871886901464282e-05']
['59906.99774088264 0.30689996164835 5.257856827390384e-05 0.026041610576076 1.3575496589266239e-05 6.376386229625655e-06 3.324011364782904e-09 0.0500800203386077 2.6106724210127384e-05 0.2568199413097423 5.870321022497167e-05']
['59906.997881162846 0.30687090523419025 5.2576437319851996e-05 0.02602413468927807 1.3576243467642353e-05 6.372107193058263e-06 3.324194240760515e-09 0.05004641286399629 2.6108160514696835e-05 0.25682449237019395 5.870194039986669e-05']
['59906.998021443054 0.30696471580270257 5.258159353533897e-05 0.026051293924058486 1.3576031681815356e-05 6.378757233775027e-06 3.324142384204756e-09 0.050098642161650934 2.6107753234260303e-05 0.25686607364105163 5.870637748708934e-05']
['59906.99816172326 0.3068938784873093 5.2584062682617435e-05 0.02604415573321998 1.3577032433409298e-05 6.377009420918594e-06 3.3243874219939607e-09 0.05008491487157689 2.6109677756556346e-05 0.2568089636157324 5.8709444902508257e-05']
['59906.99830200347 0.3069553234163503 5.2579623423913356e-05 0.02601708016189431 1.3575286599540639e-05 6.370379865513182e-06 3.323959948009323e-09 0.050032846465181365 2.6106320383732e-05 0.25692247695116893 5.870397570334227e-05']
['59906.99844228368 0.3068328286865372 5.257469023767264e-05 0.026006000410589876 1.3577461584162249e-05 6.3676669467619055e-06 3.3244925011688276e-09 0.05001153925113438 2.6110503046465864e-05 0.25682128943540283 5.870141755466161e-05']
['59906.99858256389 0.30690814629760377 5.2577422707029124e-05 0.026024636420795385 1.3575182896615702e-05 6.372230043906087e-06 3.323934555958374e-09 0.050047377732298816 2.61061209550302e-05 0.25686076856530493 5.8701915895754955e-05']
['59906.998722844095 0.3069223555591678 5.258800053390999e-05 0.026001825971469536 1.3574733935425537e-05 6.366644819653231e-06 3.3238246261234954e-09 0.05000351148359526 2.6105257568126036e-05 0.25691884407557253 5.87110064029967e-05']
['59906.9988631243 0.30688681707649995 5.2579191772214475e-05 0.026037349642774026 1.3576010998476713e-05 6.375342924091511e-06 3.3241373198115485e-09 0.0500718262361039 2.6107713458609065e-05 0.25681499084039605 5.87042086179189e-05']
['59906.99900340451 0.30683516518306375 5.257636648499416e-05 0.026008740670541985 1.3575893692828637e-05 6.368337909710729e-06 3.324108597082712e-09 0.05001680898181152 2.6107487870824302e-05 0.25681835620125226 5.8701577795572536e-05']
['59906.99914368472 0.3069915050636288 5.2583393148464557e-05 0.0260531700698277 1.3577231399220995e-05 6.379216615118306e-06 3.3244361395207877e-09 0.05010225013428404 2.6110060383117298e-05 0.2568892549293448 5.870901539130103e-05']
['59906.99928396493 0.3069485847906406 5.2580995289509346e-05 0.026047328464870217 1.3576110422043e-05 6.377786276188193e-06 3.3241616640454477e-09 0.05009101627859658 2.6107904657775e-05 0.256857568512044 5.8705908997773585e-05']
['59906.999424245136 0.3069223154994238 5.258260460284252e-05 0.026048444104577656 1.3578000261645773e-05 6.378059444763806e-06 3.3246243983753435e-09 0.05009316173957242 2.611153896470341e-05 0.2568291537598514 5.870896672505913e-05']
['59906.999564525344 0.30690288189849724 5.25800021290734e-05 0.026044587917717105 1.3577221975869857e-05 6.377115242917124e-06 3.324433832177843e-09 0.05008574599560982 2.6110042261288187e-05 0.2568171359028874 5.870597014597083e-05']
['59906.99970480555 0.3069191225288205 5.258007347433658e-05 0.02599937531926863 1.3573741568837602e-05 6.366044768250811e-06 3.3235816414345277e-09 0.049998798690901215 2.6103349170841547e-05 0.25692032383791924 5.870305753963338e-05']
['59906.99984508577 0.3069273653693482 5.258127993812305e-05 0.026034309127069867 1.357906678444232e-05 6.374598442393256e-06 3.324885540490714e-09 0.05006597909051898 2.611358997008139e-05 0.25686138627882926 5.8708692551076255e-05']
['59906.999985365976 0.30691222586776135 5.2580371795118436e-05 0.026041926511430308 1.3576869161612195e-05 6.376463587584633e-06 3.3243474442807657e-09 0.05008062790659675 2.6109363772331146e-05 0.2568315979611646 5.8705999477981845e-05']
['59907.000125646184 0.30693111276739904 5.257873081341087e-05 0.02602927765290705 1.357717678339011e-05 6.373366467033177e-06 3.3244227666293165e-09 0.05005630317866741 2.610995535267329e-05 0.25687480958873166 5.870479284068477e-05']
['59907.00026592639 0.30690669976468776 5.25787477336003e-05 0.02604331949307964 1.3582726593845401e-05 6.376804664377137e-06 3.3257816585788285e-09 0.05008330671746085 2.6120628065087315e-05 0.2568233930472269 5.8709555642571555e-05']
['59907.0004062066 0.30684826681248556 5.257565479530583e-05 0.02604427609738664 1.357732773682047e-05 6.377038892537201e-06 3.324459728144114e-09 0.05008514634112816 2.6110245647731674e-05 0.2567631204713574 5.8702166952677785e-05']
['59907.00054648681 0.3068296492731216 5.257363958090428e-05 0.02604701673757061 1.35775870086906e-05 6.377709948587225e-06 3.3245232118360155e-09 0.05009041680302041 2.6110744247481927e-05 0.2567392324701012 5.8700583846672564e-05']
['59907.000686767016 0.30695035405607995 5.2582324231474364e-05 0.026060555230839354 1.3577084632026802e-05 6.381024899549897e-06 3.32440020302165e-09 0.050116452366998764 2.6109778138513084e-05 0.2568339016890812 5.8707932479574444e-05']
['59907.000827047224 0.30687847418809744 5.257585395015655e-05 0.02605608480876681 1.35775479894708e-05 6.3799302999028935e-06 3.3245136578333897e-09 0.05010785540147464 2.611066921052077e-05 0.2567706187866228 5.8702533720525466e-05']
['59907.00096732743 0.3068751919880221 5.257839076932197e-05 0.026031542603614385 1.3587967398973966e-05 6.373921048726918e-06 3.327064889412663e-09 0.05006065885310459 2.61307065364884e-05 0.25681453313491753 5.871372071319956e-05']
['59907.00110760764 0.30694390220913076 5.2580092183833403e-05 0.0260451968729212 1.3576560787286847e-05 6.377264347887668e-06 3.3242719376681478e-09 0.050086917063310005 2.61087707447824e-05 0.2568569851458208 5.870548529621422e-05']
['59907.00124788785 0.30683280171731686 5.257450443458481e-05 0.026005939177226177 1.3581633548305825e-05 6.367651953542652e-06 3.325514022270139e-09 0.050011421494665725 2.6118526054434283e-05 0.2568213802226511 5.870482024330149e-05']
['59907.00138816806 0.30696083358995907 5.2581034582663146e-05 0.026012521322791044 1.3575321812307508e-05 6.369263616623882e-06 3.3239685699876416e-09 0.05002407946690586 2.6106388100591365e-05 0.2569367541230532 5.870526975870153e-05']
['59907.001528448265 0.30702799949145376 5.258792073428309e-05 0.026055071777256196 1.3579067376087531e-05 6.379682255329936e-06 3.3248856853572674e-09 0.050105907263954225 2.611359110786064e-05 0.2569220922274995 5.87146408292155e-05']
['59907.00166872847 0.3068208503806181 5.258147298298794e-05 0.02604451959856252 1.3576386963380948e-05 6.37709851471534e-06 3.3242293762314536e-09 0.05008561461262024 2.6108436468040287e-05 0.2567352357679979 5.8706573361646535e-05']
['59907.00180900868 0.3069108099221891 0.0006659214469258569 0.026011655150328522 1.3575529829904684e-05 6.369051531040835e-06 3.3240195038781657e-09 0.05002241375063178 2.6106788134432087e-05 0.25688839617155734 0.0006664329957786627']
['59907.00194928889 0.3070419022163805 5.261469692078186e-05 0.026040320442527392 1.3576498058389026e-05 6.376070335577179e-06 3.324256578261743e-09 0.05007753931255268 2.610865011228659e-05 0.25696436290382785 5.873642773229859e-05']
['59907.0020895691 0.306831217636636 5.257521228690527e-05 0.026031624563091597 1.357777319838227e-05 6.373941116812967e-06 3.3245688010818342e-09 0.050060816467483844 2.611110230458129e-05 0.2567704011691522 5.870215166902714e-05']
['59907.002229849306 0.30696448037472 5.258387800042019e-05 0.02601231313223698 1.35742387386232e-05 6.369212640384213e-06 3.3237033753251947e-09 0.050023679100455735 2.610430526658308e-05 0.2569408012742643 5.870689038787553e-05']
['59907.002370129514 0.30688097510002843 5.257559565368031e-05 0.02601424672975155 1.3575216852493368e-05 6.3696860890032806e-06 3.323942870182647e-09 0.05002739755721452 2.610618625479494e-05 0.2568535775428139 5.8700308509490236e-05']
['59907.00251040972 0.30692459667931216 5.2580102963423216e-05 0.026018935378393414 1.3574976950122412e-05 6.37083412224601e-06 3.323884129185421e-09 0.05003641418921811 2.6105724904081564e-05 0.25688818249009404 5.870414040263064e-05']
['59907.00265068993 0.3069756709310465 5.2583863761015256e-05 0.02603509631549948 1.3578369653895214e-05 6.374791188438976e-06 3.324714845456018e-09 0.050067492914422085 2.6112249334413874e-05 0.2569081780166244 5.8710410434092615e-05']
['59907.00279097014 0.30673336967233017 5.2567393951712316e-05 0.02600902324573387 1.357481442586674e-05 6.36840709930855e-06 3.3238443345105555e-09 0.05001735239564206 2.610541235743604e-05 0.25671601727668814 5.869261845604007e-05']
['59907.00293125035 0.30682911667241997 5.2574124202053524e-05 0.026026474516393748 1.357953246196197e-05 6.372680108522017e-06 3.3249995633816964e-09 0.05005091253152644 2.611448550377302e-05 0.25677820414089353 5.870268212560412e-05']
['59907.003071530555 0.3068504971700796 5.257734549177797e-05 0.026053986909232697 1.357782860621062e-05 6.379416621316794e-06 3.3245823678968616e-09 0.050103820979293646 2.611120885809735e-05 0.25674667619078595 5.870410962609829e-05']
['59907.00321181076 0.30686386342774374 5.25767303062693e-05 0.02603900970373662 1.3577693936529137e-05 6.375749396257711e-06 3.3245493935191804e-09 0.050075018661031964 2.611094987794065e-05 0.25678884476671177 5.870344345288874e-05']
['59907.00335209097 0.3068407774413766 5.2576293344357946e-05 0.026028472997813447 1.3576409064313323e-05 6.373169444209129e-06 3.324234787727814e-09 0.05005475576502586 2.6108478969833316e-05 0.25678602167635073 5.870195308463089e-05']
['59907.00349237118 0.30687772793227575 5.2576602259872107e-05 0.026036207502431803 1.3576584541756841e-05 6.3750632667358655e-06 3.3242777540394097e-09 0.05006962981236886 2.6108816426455468e-05 0.2568080981199069 5.870237985280613e-05']
['59907.00363265139 0.30687368879957505 5.257792802246625e-05 0.026049774084159864 1.3581163377570007e-05 6.378385095263374e-06 3.325398899198289e-09 0.050095719392615125 2.6117621879942325e-05 0.2567779694069599 5.8707484086777925e-05']
['59907.003772931595 0.30687632139104615 5.25766664723687e-05 0.02605077289154912 1.3576511736386705e-05 6.378629657006754e-06 3.324259927370885e-09 0.050097640176056 2.610867641612828e-05 0.25677868121499015 5.870237509291079e-05']
['59907.0039132118 0.3069527912811887 5.2579803503082286e-05 0.026020943205236215 1.3575844415239607e-05 6.371325746195093e-06 3.3240965312798227e-09 0.05004027539468503 2.6107393106230015e-05 0.25691251588650366 5.87046140539734e-05']
['59907.00405349201 0.3068471534207227 5.257560808163549e-05 0.026008399908374263 1.3574623835113495e-05 6.3682544728131725e-06 3.3237976676482682e-09 0.05001615366995051 2.610504583675672e-05 0.2568309997507722 5.8699812463864864e-05']
['59907.00419377222 0.3067945390037644 5.2572488533653185e-05 0.026034661892520815 1.3575069958585379e-05 6.374684818339826e-06 3.3239069026571603e-09 0.05006665748561696 2.6105903766510348e-05 0.25672788151814746 5.869739996019751e-05']
['59907.00433405243 0.30697845578919003 5.258476389666914e-05 0.026023127364099008 1.3576465475646302e-05 6.371860545702034e-06 3.324248600254722e-09 0.050044475700190404 2.6108587453165968e-05 0.25693398008899965 5.870958808293628e-05']
['59907.004474332636 0.3069132709312353 5.25800055642191e-05 0.02603089260417024 1.3576762953287499e-05 6.37376189391993e-06 3.324321438773269e-09 0.050059408854173544 2.6109159525552883e-05 0.2568538620770618 5.870558062283415e-05']
['59907.004614612844 0.30681997504745395 5.2573594924548935e-05 0.026025111152471067 1.3582633979643522e-05 6.372346283741206e-06 3.325758981643398e-09 0.05004829067782898 2.6120449960852927e-05 0.25677168436962494 5.870486171900909e-05']
['59907.00475489305 0.306902625870438 5.2579987397453194e-05 0.026021965662425414 1.357544395506948e-05 6.371576098680879e-06 3.3239984771019967e-09 0.050042241658510414 2.6106622990518233e-05 0.2568603842119276 5.8704436277724294e-05']
['59907.00489517326 0.3069658612975114 5.2582398408735784e-05 0.026043019368830623 1.3575564353447278e-05 6.376731177826717e-06 3.3240279570973303e-09 0.05008272955544351 2.6106854525860154e-05 0.2568831317420679 5.870669872893079e-05']
['59907.00503545347 0.30691981780254673 5.257611772859967e-05 0.02601959589918023 1.357542165712226e-05 6.370995853243297e-06 3.3239930173658107e-09 0.050037684421500445 2.61065801098505e-05 0.25688213338104626 5.870095127375377e-05']
['59907.005175733684 0.30695343980318535 5.258216021916058e-05 0.02604833559194308 1.357560869534542e-05 6.378032875037374e-06 3.3240388143777536e-09 0.050092953061429 2.6106939798741192e-05 0.2568604867417563 5.870652330847545e-05']
['59907.00531601389 0.3069489155224996 5.259002957518663e-05 0.026042836518500857 1.3576554006698152e-05 6.376686406236212e-06 3.3242702774155202e-09 0.05008237792019396 2.6108757705188755e-05 0.2568665376023056 5.871438017749363e-05']
['59907.0054562941 0.30688946180552046 5.2577491220505077e-05 0.02601357721458828 1.357773256700459e-05 6.369522155699113e-06 3.324558852336292e-09 0.05002611002805439 2.6111024167316522e-05 0.25686335177746605 5.870415799675928e-05']
['59907.00559657431 0.3067616076338319 5.257032938821232e-05 0.02604403718635295 1.3579101538215176e-05 6.376980394272631e-06 3.324894050082623e-09 0.050084686896832604 2.6113656804259955e-05 0.2566769207369993 5.8698914842404135e-05']
['59907.00573685452 0.306866432099105 5.257799085453685e-05 0.026045243470021785 1.3578140838519537e-05 6.377275757362887e-06 3.324658819151257e-09 0.05008700667311882 2.6111809304845265e-05 0.2567794254259862 5.8704954709737785e-05']
['59907.005877134725 0.30691453706597377 5.2578550048980346e-05 0.026044601755623058 1.357654824862167e-05 6.3771186311804085e-06 3.3242688675288516e-09 0.05008577260696742 2.6108746631964755e-05 0.2568287644590064 5.870409334914612e-05']
['59907.00601741493 0.30731364836076547 5.269292209161999e-05 0.026065992780586158 1.35899455103527e-05 6.382356304042992e-06 3.3275492374186812e-09 0.05012690919343492 2.613451059683212e-05 0.25718673916733054 5.8817996248507684e-05']
['59907.00615769514 0.30685332007174687 5.2574707972713666e-05 0.026059011851132123 1.3576561716703496e-05 6.3806469972276304e-06 3.3242721652393077e-09 0.05011348432910024 2.610877253212211e-05 0.25673983574264664 5.870066372325117e-05']
['59907.00629797535 0.3069112438791072 5.25794425361282e-05 0.02602734578334607 1.3575988423275863e-05 6.37289344151004e-06 3.3241317921887692e-09 0.05005258804489629 2.6107670044761275e-05 0.25685865583421086 5.870441391050704e-05']
['59907.00643825556 0.3069257963499403 5.258724626669459e-05 0.026027930256913252 1.3576525537138589e-05 6.373036552059769e-06 3.3242633065368557e-09 0.05005371203252549 2.6108702956035752e-05 0.2568720843174148 5.871186285547831e-05']
['59907.006578535766 0.30708040111335616 5.2608356225439116e-05 0.02602582324489212 1.3576091029690584e-05 6.372520642246973e-06 3.3241569157550706e-09 0.05004966008633101 2.6107867364789586e-05 0.25703074102702517 5.8730399990806666e-05']
['59907.006718815974 0.3068822752764803 5.25787292144143e-05 0.0260288047107579 1.3576758811510427e-05 6.3732506653703555e-06 3.3243204246435857e-09 0.050055393674534425 2.6109151560596976e-05 0.2568268816019459 5.870443391275422e-05']
['59907.00685909618 0.30688561983003265 5.257751288424587e-05 0.026004707945017715 1.3575881315688308e-05 6.367350481708698e-06 3.3241055664933815e-09 0.05000905374041869 2.6107464068631365e-05 0.25687656608961396 5.870259399028222e-05']
['59907.00699937639 0.3067550907985166 5.2569037496492935e-05 0.026041693139736297 1.3576890267562346e-05 6.376406445648203e-06 3.324352612151989e-09 0.0500801791148775 2.610940436069682e-05 0.2566749116836391 5.8695866118305595e-05']
['59907.0071396566 0.3068949840564146 5.2578375539977835e-05 0.0260255362234765 1.3576599978950196e-05 6.372450363974559e-06 3.3242815338942245e-09 0.050049108122070196 2.610884611336576e-05 0.2568458759343444 5.8703981294238924e-05']
['59907.007279936806 0.3068202382314359 5.258080031519752e-05 0.025990843300564705 1.3573479985224318e-05 6.363955671402685e-06 3.323517591703626e-09 0.04998239096262443 2.6102846125431383e-05 0.2568378472688115 5.870348488492505e-05']
['59907.007420217014 0.3069602588966473 5.258416297089742e-05 0.026026925775142873 1.3576306734853266e-05 6.372790600922843e-06 3.3242097319749035e-09 0.05005178033681322 2.610828218241013e-05 0.25690847855983406 5.8708914092037626e-05']
['59907.00756049722 0.3069043358663013 5.257914002393725e-05 0.026024376020116896 1.3575755150112361e-05 6.372166283821217e-06 3.3240746743779047e-09 0.05004687696176327 2.6107221442523775e-05 0.25685745890453804 5.870394345447138e-05']
['59907.00770077743 0.30688100335611823 5.257729334142843e-05 0.026078560227311004 1.357808293867569e-05 6.385433490609613e-06 3.3246446421568687e-09 0.05015107736021347 2.6111697958991714e-05 0.2567299259959048 5.87042804692488e-05']
['59907.00784105764 0.306864944604481 5.2577326705445075e-05 0.026015195228185534 1.357529678872371e-05 6.369918332409871e-06 3.323962442869095e-09 0.05002922159266449 2.610633997831483e-05 0.2568357230118165 5.870192731550189e-05']
['59907.00798133785 0.30683325884587764 5.257384416942909e-05 0.02602235044530391 1.3577218069759747e-05 6.371670314214925e-06 3.324432875752101e-09 0.050042981625584446 2.6110034749537977e-05 0.2567902772202932 5.870045149207537e-05']
['59907.008121618055 0.30682983127912855 5.2574336222842396e-05 0.02602177780971493 1.3575784589681032e-05 6.371530102238654e-06 3.3240818827669453e-09 0.05004188040329795 2.6107278057078907e-05 0.2567879508758306 5.869966607078878e-05']
['59907.00826189826 0.30686124554385863 5.257628824522473e-05 0.026032595534167768 1.3577022310680063e-05 6.374178862730461e-06 3.32438494340566e-09 0.0500626837195534 2.6109658289769355e-05 0.2567985618243052 5.870247304546443e-05']
['59907.00840217847 0.3068316386918512 5.2578600698460846e-05 0.026043197133269184 1.3578356759652725e-05 6.376774704117645e-06 3.32471168825228e-09 0.050083071410133045 2.6112224537793703e-05 0.25674856728171813 5.8705685599610735e-05']
['59907.00854245868 0.30691980749081416 5.258595850966033e-05 0.0260021972215045 1.3574644721288554e-05 6.366735721619674e-06 3.3238027817067346e-09 0.050004225425970196 2.610508600247799e-05 0.25691558206484394 5.8709101062582195e-05']
['59907.00868273889 0.3069150852504365 5.258749208322071e-05 0.026017499459050235 1.3579858140899816e-05 6.370482531997782e-06 3.325079307093726e-09 0.05003365280586584 2.6115111809422723e-05 0.2568814324445706 5.8714933265920105e-05']
['59907.008823019096 0.3068311788085081 5.2574926958508183e-05 0.02603364130435886 1.3577128282896598e-05 6.374434923492385e-06 3.324410891101186e-09 0.050064694816074735 2.610986208249346e-05 0.25676648399243335 5.870134447062776e-05']
['59907.008963299304 0.3068505252601831 5.2574159112874116e-05 0.026025519873773235 1.3575725944280811e-05 6.372446360688262e-06 3.3240675232202768e-09 0.05004907668033315 2.61071652774631e-05 0.25680144857984993 5.86994572824194e-05']
['59907.00910357951 0.30686461695053424 5.257683295573527e-05 0.026011537123839863 1.3574577196654144e-05 6.369022631811472e-06 3.323786248046201e-09 0.05002218677661513 2.610495614741182e-05 0.2568424301739191 5.87008696623277e-05']
['59907.00924385972 0.30681304299582635 5.258321424833754e-05 0.026035866698310015 1.3580564706943796e-05 6.374979819565698e-06 3.325252312445296e-09 0.05006897441982696 2.6116470590276533e-05 0.2567440685759994 5.8711706301038015e-05']
['59907.00938413993 0.3068295574898925 5.257490747719052e-05 0.026032626070765855 1.3576831669026907e-05 6.374186339731278e-06 3.3243382640803383e-09 0.05006274244378049 2.610929167120559e-05 0.256766815046112 5.870107331052158e-05']
['59907.00952442014 0.3069116311621249 5.259290766448015e-05 0.02601223850458613 1.3576018068741566e-05 6.369194367523407e-06 3.324139050992472e-09 0.05002353558574256 2.6107727055272245e-05 0.2568880955763823 5.871649979858412e-05']
['59907.009664700345 0.30686174434889146 5.257419145459593e-05 0.026021657404374468 1.357460758513432e-05 6.371500620538486e-06 3.32379368877979e-09 0.05004164885456629 2.6105014586796772e-05 0.25682009549432516 5.8698529740372376e-05']
['59907.00980498055 0.307013413028221 5.258733749691031e-05 0.02604017140791174 1.3578328262725937e-05 6.376033843891375e-06 3.3247047106726476e-09 0.050077252707522585 2.611216973601142e-05 0.25693616032069844 5.871348629860281e-05']
['59907.00994526076 0.30683561937481785 5.2573532591410155e-05 0.026019858846639696 1.3575374512718243e-05 6.371060236917062e-06 3.32398147388129e-09 0.05003819008969172 2.6106489447535084e-05 0.2567974292851261 5.869859555742647e-05']
['59907.01008554097 0.3069527487560069 5.258182215360726e-05 0.026007465339420083 1.357446218964502e-05 6.368025640092068e-06 3.323758088147751e-09 0.050014356421961705 2.6104734980086577e-05 0.2569383923340452 5.870524005039192e-05']
['59907.01022582118 0.30701364925457997 5.258496731524067e-05 0.02603974290251623 1.3576845909047689e-05 6.375928922734702e-06 3.3243417508029495e-09 0.05007642865868506 2.610931905586094e-05 0.2569372205958949 5.8710095631890026e-05']
['59907.010366101385 0.3068965689118772 5.257950906504439e-05 0.026060261062943863 1.3576708487374186e-05 6.380952871435026e-06 3.3243081025896786e-09 0.05011588665950743 2.6109054783411897e-05 0.2567806822523698 5.8705089346702205e-05']
['59907.01050638159 0.3068717814426299 5.2583681612732715e-05 0.026059100529377294 1.3577349173108173e-05 6.380668710429266e-06 3.3244649768997285e-09 0.050113654864187104 2.6110286871361873e-05 0.25675812657844277 5.870937448529031e-05']
['59907.01064666181 0.3068824046442616 5.2577074485134343e-05 0.0260370801785635 1.3575874959488593e-05 6.3752769447667545e-06 3.324104010153991e-09 0.05007130803569904 2.6107451845170372e-05 0.25681109660856255 5.870219589813702e-05']
['59907.01078694202 0.3068527047820843 5.2582339076999747e-05 0.026023022397612113 1.3576818088420988e-05 6.37183484426319e-06 3.324334938817935e-09 0.05004427384156176 2.6109265554655746e-05 0.2568084309405226 5.870771781130746e-05']
['59907.010927222225 0.3068222576132772 5.2574957540939024e-05 0.026044038007064056 1.3578362599243494e-05 6.37698059522683e-06 3.3247131180980285e-09 0.050084688475123186 2.6112235767775952e-05 0.256737569138154 5.870242769446132e-05']
['59907.01106750243 0.30683845523020314 5.257418709566722e-05 0.02602871843064273 1.357833150700706e-05 6.3732295393598636e-06 3.324705505047074e-09 0.050055227751236026 2.6112175975013576e-05 0.2567832274789671 5.8701711073190176e-05']
['59907.01120778264 0.3068441763672921 5.2576700380580164e-05 0.026022437702690034 1.357601768363126e-05 6.371691679513883e-06 3.3241389566967663e-09 0.05004314942825007 2.6107726314675503e-05 0.25680102693904205 5.870198289863212e-05']
['59907.01134806285 0.30686789924632685 5.257601101318438e-05 0.026036302674219358 1.3577795897323506e-05 6.375086569905761e-06 3.324574359002912e-09 0.05006981283503723 2.611114595639136e-05 0.2567980864112896 5.8702886447043286e-05']
['59907.01148834306 0.30691430531431657 5.257946477119159e-05 0.026052478041693458 1.3577109213950055e-05 6.379047169428578e-06 3.3244062219979524e-09 0.05010091931094896 2.6109825411442416e-05 0.2568133860033676 5.8705392415356375e-05']
['59907.011628623266 0.306987133700784 5.259086521540754e-05 0.026027437622631606 1.3576950775502032e-05 6.3729159287042916e-06 3.3243674277484467e-09 0.05005276465890694 2.6109520722119294e-05 0.25693436904187705 5.8715467948777685e-05']
['59907.011768903474 0.3068978028830449 5.2576934313037974e-05 0.02603993462554502 1.3577019911690797e-05 6.375975866838912e-06 3.3243843560041213e-09 0.05007679735681735 2.610965367632846e-05 0.25682100552622755 5.87030496384585e-05']
['59907.01190918368 0.30695432391365507 5.2586506605928575e-05 0.02604080183745974 1.3577313064881733e-05 6.376188206935737e-06 3.3244561356647684e-09 0.05007846507203797 2.6110217432464875e-05 0.2568758588416171 5.8711873853471606e-05']
['59907.01204946389 0.30688813613403065 5.2579937089397574e-05 0.026026703144147807 1.3578495789791039e-05 6.37273608888692e-06 3.324745730304205e-09 0.05005135220028425 2.6112491903444308e-05 0.2568367839337464 5.870700143707266e-05']
['59907.0121897441 0.3069156529545679 5.2580049026503595e-05 0.026056991077341413 1.3577444670402729e-05 6.3801522031696885e-06 3.324488359771237e-09 0.05010959822565657 2.611047052000525e-05 0.2568060547289113 5.870620262293913e-05']
['59907.01233002431 0.30685897296471176 5.2585968218270064e-05 0.025994548051422928 1.3579616865827153e-05 6.364862793575008e-06 3.3250202299853276e-09 0.04998951548350564 2.6114647818898376e-05 0.25686945748120615 5.871336205803585e-05']
['59907.012470304515 0.30688057721219064 5.257727898281072e-05 0.026054488718194803 1.3578391349369563e-05 6.3795394911272666e-06 3.324720157674457e-09 0.05010478599652847 2.6112291056479933e-05 0.2567757912156622 5.8704531421813014e-05']
['59907.01261058472 0.30694465525751713 5.258090043111854e-05 0.026041264750020193 1.357528916002414e-05 6.376301552816068e-06 3.323960574953332e-09 0.050079355288500375 2.6106325307738735e-05 0.25686529996901675 5.870512167793098e-05']
['59907.01275086493 0.3069460393944631 5.258150860644385e-05 0.026023029627790822 1.357547576404454e-05 6.371836614599623e-06 3.324006265649097e-09 0.050044287745751585 2.6106684161624113e-05 0.2569017516487115 5.8705825990648696e-05']
['59907.01289114514 0.30691037328267756 5.257927180430902e-05 0.02605209539606713 1.3577415192304974e-05 6.378953477208759e-06 3.3244811419482053e-09 0.05010018345397526 2.611041383135572e-05 0.2568101898287023 5.870548129362417e-05']
['59907.01303142535 0.3068290783402253 5.257329866679594e-05 0.026031713170911512 1.3576251685871205e-05 6.373962812770714e-06 3.3241962530247383e-09 0.05006098686713752 2.6108176318983087e-05 0.2567680914730878 5.869913630890353e-05']
['59907.013171705556 0.3068952912328936 5.257817743416728e-05 0.026025175777428335 1.3575671708951376e-05 6.372362107404892e-06 3.3240542434960154e-09 0.05004841495659295 2.610706097875265e-05 0.25684687627630065 5.8703009933453044e-05']
['59907.013311985764 0.3068623278099426 5.2576917062743384e-05 0.026047738145834297 1.3576621524798504e-05 6.377886588112076e-06 3.324286809476165e-09 0.05009180412660442 2.610888754768943e-05 0.2567705236833382 5.8702693437358466e-05']
['59907.01345226597 0.3068787582323849 5.257686923332907e-05 0.02603966820225552 1.3577617370508208e-05 6.375910632095099e-06 3.324530646041175e-09 0.05007628500433754 2.611080263559271e-05 0.2568024732280474 5.87035023883027e-05']
['59907.01359254618 0.3068438961443763 5.257487942690234e-05 0.026071981626579983 1.359147665952807e-05 6.383822695494275e-06 3.3279241450492524e-09 0.05013842620496151 2.613745511447706e-05 0.2567054699394148 5.8713580257165564e-05']
['59907.01373282639 0.30690060180106415 5.258642257242793e-05 0.02602180846385726 1.357591603479428e-05 6.371537608020619e-06 3.3241140675969743e-09 0.05004193935357165 2.610753083614285e-05 0.2568586624474925 5.871060385761764e-05']
['59907.013873106596 0.30692976556690355 5.258059638892743e-05 0.02603776182022854 1.3579074739398533e-05 6.37544384729046e-06 3.324887488291642e-09 0.05007261888505489 2.6113605268074104e-05 0.25685714668184867 5.8708087149149016e-05']
['59907.014013386804 0.3068542774839307 5.257617694538233e-05 0.025991155236059278 1.3574361177826532e-05 6.364032049980973e-06 3.3237333550243313e-09 0.04998299083857554 2.6104540726589487e-05 0.25687128664535513 5.87000973486273e-05']
['59907.01415366701 0.3069139767585307 5.257989250013959e-05 0.026042478524733507 1.3576456470022293e-05 6.37659875011672e-06 3.3242463951938346e-09 0.050081689470641365 2.610857013465826e-05 0.25683228728788937 5.8705217228135736e-05']
['59907.01429394722 0.306949939987595 5.2581830721563895e-05 0.026020532072771003 1.3580098816125644e-05 6.371225078865703e-06 3.325138237327373e-09 0.05003948475532886 2.611557464639547e-05 0.25691045523226613 5.871006865217119e-05']
['59907.01443422743 0.306883657325655 5.2576278296587644e-05 0.026033067899729805 1.3576880532990358e-05 6.374294523213761e-06 3.3243502286054496e-09 0.05006359211486502 2.6109385640366076e-05 0.25682006521079 5.870234286668282e-05']
['59907.01457450764 0.3068476286616627 5.25770861168802e-05 0.026016001547679156 1.35765109677173e-05 6.370115762768519e-06 3.3242597391592924e-09 0.0500307722070753 2.6108674937917887e-05 0.2568168564545874 5.870275028953668e-05']
['59907.014714787845 0.3069170539951346 5.25809061058754e-05 0.026031870120729578 1.3577021113530494e-05 6.37400124252358e-06 3.324384650279088e-09 0.05006128869371073 2.6109655987558643e-05 0.25685576530142384 5.8706607998619214e-05']
['59907.01485506805 0.3068801808857895 5.257658264823851e-05 0.026034728156852607 1.3576444393865934e-05 6.374701043410526e-06 3.3242434383015605e-09 0.050066784917024244 2.6108546911280642e-05 0.25681339596876523 5.87022424170116e-05']
['59907.01499534826 0.30691389809465264 5.258132776692165e-05 0.026027026899574784 1.3575839469064218e-05 6.3728153616200835e-06 3.3240953201901882e-09 0.05005197480687459 2.6107383594354268e-05 0.25686192328777807 5.870597506110604e-05']
['59907.01513562847 0.3070713377167572 5.260759638172968e-05 0.02602183720343535 1.357602635890314e-05 6.371544645014336e-06 3.324141080869693e-09 0.05004199462199106 2.6107742997890656e-05 0.25702934309476616 5.872966406771697e-05']
['59907.01527590868 0.30693131982508215 5.2580025091789975e-05 0.02598801813915636 1.3572400956083034e-05 6.363263920013192e-06 3.3232533873627407e-09 0.04997695795991608 2.6100771069390453e-05 0.25695436186516607 5.870186784992444e-05']
['59907.015416188886 0.30696733899090034 5.2584540874784065e-05 0.026025736013565004 1.3576525041130744e-05 6.372499283328661e-06 3.3242631850874705e-09 0.05004949233377886 2.610870200217451e-05 0.2569178466571215 5.87094392687427e-05']
['59907.015556469094 0.30691074557528575 5.257911816753701e-05 0.026015881103362882 1.3575295458075596e-05 6.370086271524977e-06 3.323962117054903e-09 0.05003054058339016 2.610633741937615e-05 0.25688020499189557 5.8703530734787495e-05']
['59907.0156967493 0.3069338578233897 5.2578930407264955e-05 0.02606877864367642 1.3579753744625319e-05 6.383038433091596e-06 3.3250537452735315e-09 0.05013226662245466 2.6114911047356385e-05 0.25680159120093504 5.870717589684713e-05']
['59907.01583702951 0.3068987930384389 5.25837548603728e-05 0.026000104462396915 1.357465933611896e-05 6.366223301686331e-06 3.3238063602028907e-09 0.05000020088922484 2.6105114107921078e-05 0.25689859214921407 5.8707139751510296e-05']
['59907.015977309726 0.3068777728873171 5.2582506717761405e-05 0.026058808498608175 1.3578282917477204e-05 6.38059720559782e-06 3.3246936077180603e-09 0.050113093266554186 2.611208253361001e-05 0.25676467962076294 5.870912081581093e-05']
['59907.016117589934 0.3068768876380998 5.2579935068284364e-05 0.026029422877907007 1.3586418530951971e-05 6.37340202592026e-06 3.3266856432558977e-09 0.05005658245751348 2.6127727944138408e-05 0.2568203051805863 5.8713778104529354e-05']
['59907.01625787014 0.30688350245442264 5.2576625748105925e-05 0.026024784406181303 1.3575187636861245e-05 6.3722662786840475e-06 3.323935716625312e-09 0.05004766231957943 2.610613007088701e-05 0.25683584013484323 5.870120614037216e-05']
['59907.01639815035 0.3069102216415509 5.257938265403132e-05 0.026032821843072724 1.3577287819564315e-05 6.374234275316445e-06 3.3244499542539116e-09 0.05006311892898601 2.611016888377753e-05 0.2568471027125649 5.870547163100245e-05']
['59907.01653843056 0.30688356248466103 5.2579466880067606e-05 0.026017147969755204 1.3576065987484745e-05 6.370396468522785e-06 3.324150784076847e-09 0.050032976864913856 2.6107819206701433e-05 0.25685058561974716 5.870450205156274e-05']
['59907.01667871077 0.30679036449694486 5.257238258682063e-05 0.02602528307119287 1.3576135655373363e-05 6.372388378686414e-06 3.324167842521229e-09 0.050048621290755525 2.6107953183410314e-05 0.2567417432061893 5.869821658519265e-05']
['59907.016818990975 0.30687784523613576 5.259002054032117e-05 0.026042829275973855 1.3576664587270499e-05 6.376684632876254e-06 3.324297353484288e-09 0.05008236399225742 2.6108970360135578e-05 0.25679548124387835 5.8714466647478296e-05']
['59907.01695927118 0.30694913059295587 5.257876657466109e-05 0.026019641575162573 1.3575572716173675e-05 6.371007037179252e-06 3.3240300047423205e-09 0.05003777225992803 2.6106870608026298e-05 0.2569113583330278 5.870345294322069e-05']
['59907.01709955139 0.30691582971027587 5.259548430514993e-05 0.02602125392935618 1.3575996880082956e-05 6.371401828163755e-06 3.3241338628697716e-09 0.05004087294106958 2.610768630785184e-05 0.2568749567692063 5.8718789613227447e-05']
['59907.0172398316 0.30694400949922335 5.258373590264232e-05 0.02603171357375079 1.3576236933040746e-05 6.373962911407426e-06 3.3241926407387505e-09 0.05006098764182845 2.6108147948155285e-05 0.25688302185739487 5.870847188235783e-05']
['59907.01738011181 0.3068759377759275 5.257617752425049e-05 0.026035050375719775 1.357633132767877e-05 6.374779939911245e-06 3.324215753620663e-09 0.05006740456869188 2.610832947630533e-05 0.2568085332072356 5.870178286138178e-05']
['59907.017520392015 0.3069456207445484 5.2583026970326344e-05 0.02600900379895949 1.3575221635635107e-05 6.36840233769275e-06 3.3239440413528797e-09 0.050017314997999024 2.6106195453144436e-05 0.25692830574654935 5.8706968635757775e-05']
['59907.01766067222 0.30690811332857176 5.2579675940355005e-05 0.02603159559920698 1.3584761715039067e-05 6.373934024896954e-06 3.3262799656523096e-09 0.050060760767705735 2.6124541759690514e-05 0.25684735256086605 5.871212825427605e-05']
['59907.01780095243 0.3069222962214206 5.257966277538206e-05 0.026022292107660744 1.3576266661323685e-05 6.371656030023728e-06 3.324199919820565e-09 0.050042869437809126 2.6108205117930167e-05 0.2568794267836115 5.8704849135764014e-05']
['59907.01794123264 0.306863942188341 5.257479033530942e-05 0.02602765502001569 1.3575149768497967e-05 6.372969159270895e-06 3.323926444414231e-09 0.05005318273079941 2.6106057247111477e-05 0.2568107594575416 5.8699529843016685e-05']
['59907.01808151285 0.30688331851988077 5.25776871671846e-05 0.026028775856905075 1.3575919852367022e-05 6.373243600396041e-06 3.324115002344009e-09 0.050055338186355915 2.6107538177628892e-05 0.25682798033352483 5.8702783047711445e-05']
['59907.018221793056 0.30687490785271204 5.258439066113996e-05 0.026045459718471782 1.3576471372606609e-05 6.377328706608661e-06 3.3242500441476173e-09 0.05008742253552267 2.610859879347425e-05 0.25678748531718937 5.8709258828246064e-05']
['59907.018362073264 0.3068927004003734 5.2577454169336655e-05 0.026036776587400196 1.3578952848553528e-05 6.375202609329341e-06 3.324857642860103e-09 0.050070724206538846 2.611337086260294e-05 0.25682197619383457 5.870516863732304e-05']
['59907.01850235347 0.3068879403647505 5.258901210672331e-05 0.026028961435409906 1.3575432924345053e-05 6.373289039990465e-06 3.3239957761876605e-09 0.05005569506809597 2.610660177758664e-05 0.2568322452966545 5.8712510172318314e-05']
['59907.01864263368 0.3069217648488174 5.2580596791256646e-05 0.0260326878972549 1.3576242730775263e-05 6.374201478179503e-06 3.3241940603358384e-09 0.050062861340874815 2.6108159097644738e-05 0.2568589035079426 5.870566523251941e-05']
['59907.01878291389 0.30689547441067344 5.2576630061635656e-05 0.026011601835745773 1.3574767589694421e-05 6.36903847676486e-06 3.3238328664977246e-09 0.05002231122258803 2.6105322287873887e-05 0.2568731631880854 5.8700850763782425e-05']
['59907.0189231941 0.3067894334116631 5.257532487188872e-05 0.026007060786219366 1.3580711744541824e-05 6.367926583720318e-06 3.325288315153829e-09 0.050013578435037245 2.6116753354888125e-05 0.25677585497662586 5.8704766341283575e-05']
['59907.019063474305 0.30681489203597057 5.257491636617817e-05 0.026014953821581217 1.3576786274045418e-05 6.369859223095452e-06 3.324327148948499e-09 0.050028757349194646 2.6109204373164266e-05 0.2567861346867759 5.870104244313119e-05']
['59907.01920375451 0.3069675921394079 5.258219167670382e-05 0.026023987005087366 1.3575284069722755e-05 6.372071032029083e-06 3.3239593285739053e-09 0.05004612885593725 2.6106315518697605e-05 0.25692146328347065 5.870627386819412e-05']
['59907.01934403472 0.30688584473893904 5.25775560596899e-05 0.026031395166216307 1.3577017151381099e-05 6.37388494812584e-06 3.3243836801319166e-09 0.05006037531964675 2.6109648368040575e-05 0.2568254694192923 5.8703604140738735e-05']
['59907.01948431493 0.3068911070242213 5.2585992562963215e-05 0.026002564128167024 1.3575317772731124e-05 6.36682556009505e-06 3.3239675808821807e-09 0.05000493101570582 2.610638033217524e-05 0.2568861760085155 5.870970710095741e-05']
['59907.01962459514 0.3068806151761692 5.257686633937969e-05 0.02602554126300992 1.3585389562288672e-05 6.372451597923258e-06 3.326433696411204e-09 0.05004911781348062 2.612574915824745e-05 0.2568314973626886 5.871014940492542e-05']
['59907.019764875346 0.3069040764146196 5.257891137661212e-05 0.02602558425590265 1.3575053045213407e-05 6.372462124894637e-06 3.3239027613544623e-09 0.050049200492120485 2.6105871240795015e-05 0.2568548759224991 5.8703138202234125e-05']
['59907.019905155554 0.3069342584351216 5.258045526483589e-05 0.026049306595564887 1.3584546655488941e-05 6.37827062892379e-06 3.326227307513138e-09 0.05009482037608633 2.6124128183632582e-05 0.2568394380590353 5.87126421583314e-05']
['59907.02004543576 0.30679849098060386 5.257362997174191e-05 0.02602448678600372 1.3576486530067772e-05 6.37219340526493e-06 3.3242537555089537e-09 0.05004708997308408 2.6108627942438025e-05 0.25675140100751975 5.8699633912336246e-05']
['59907.02018571597 0.3069015739579611 5.258050318162828e-05 0.026033442884012836 1.3576672281695797e-05 6.374386339524878e-06 3.3242992374932425e-09 0.05006431323848623 2.6108985157107304e-05 0.2568372607194749 5.870594876813824e-05']
['59907.02032599618 0.30683702715845285 5.257666651104478e-05 0.02601734992904474 1.3576212983452426e-05 6.370445919013912e-06 3.3241867765920332e-09 0.05003336524816296 2.6108101891254668e-05 0.2568036619102899 5.870211960208723e-05']
['59907.020466276386 0.3069717474470063 5.259209964784393e-05 0.026009197856027195 1.3574169196915466e-05 6.3684498532951615e-06 3.323686347776677e-09 0.05001768818466769 2.6104171532529747e-05 0.2569540592623386 5.871419518965139e-05']
['59907.020606556594 0.3068472244401976 5.2577422726687376e-05 0.026029025719875972 1.3575328653503385e-05 6.3733047802836015e-06 3.3239702450801656e-09 0.05005581869206918 2.6106401256737283e-05 0.2567914057481284 5.87020405706527e-05']
['59907.0207468368 0.30696272516864725 5.2582568461923915e-05 0.026036788096428485 1.3575928596262041e-05 6.375205427358175e-06 3.3241171433195692e-09 0.05007074633928556 2.6107554992811622e-05 0.2568919788293617 5.8707162542194106e-05']
['59907.02088711701 0.30690855229513025 5.258504846169129e-05 0.02605689603417577 1.3578121735210058e-05 6.380128931493351e-06 3.3246541416341296e-09 0.05010941545033802 2.6111772567711652e-05 0.2567991368447922 5.8711259468234205e-05']
['59907.02102739722 0.30686272918996427 5.257472520086665e-05 0.02604580619575294 1.3577057581426847e-05 6.377413542873222e-06 3.3243935795805786e-09 0.050088088837986426 2.6109726118128553e-05 0.25677464035197783 5.870110329380809e-05']
['59907.02116767743 0.3069610198899311 5.258389921850079e-05 0.02604722780879445 1.357580704458017e-05 6.377761630169715e-06 3.3240873809333982e-09 0.0500908227092201 2.610732123957725e-05 0.25687019718071097 5.87082505217787e-05']
['59907.02130795764 0.30686549517150774 5.2575958631639494e-05 0.02602536852694841 1.3575671119558802e-05 6.3724093028493515e-06 3.3240540991810283e-09 0.05004878562874695 2.610705984530539e-05 0.2568167095427608 5.870102213592387e-05']
['59907.02144823785 0.30696800286967607 5.258102353811968e-05 0.026042932361655474 1.3592583618102237e-05 6.376709873792857e-06 3.3281951880167547e-09 0.05008256223395284 2.6139583880965842e-05 0.2568854406357232 5.8720029647355805e-05']
['59907.02158851806 0.3068702770165999 5.2578352454479926e-05 0.02602074997851997 1.3576823409343608e-05 6.371278433907358e-06 3.324336241665838e-09 0.050039903804846096 2.610927578719925e-05 0.25683037321175384 5.8704151718251954e-05']
['59907.02172879827 0.3069119123569445 5.2576704063096384e-05 0.026023377820663277 1.35763254254977e-05 6.3719218709331625e-06 3.3242143084494437e-09 0.050044957347429385 2.6108318125957118e-05 0.2568669550095151 5.870224940753631e-05']
['59907.021869078475 0.3071305325876593 5.2618569871085186e-05 0.02604483349416127 1.3576419388798493e-05 6.377175373232503e-06 3.324237315716814e-09 0.05008621825800245 2.610849882461249e-05 0.25704431432965685 5.87398298103856e-05']
['59907.02200935868 0.3069014961061537 5.257816934639841e-05 0.026053858832150757 1.3577291439909434e-05 6.37938526116189e-06 3.3244508407090212e-09 0.05010357467721299 2.6110175845979683e-05 0.2567979214289407 5.870438803468213e-05']
['59907.02214963889 0.30696242064698165 5.258154475677851e-05 0.026040702045624087 1.3576138862413352e-05 6.376163772529699e-06 3.3241686277770245e-09 0.05007827316466171 2.610795935079491e-05 0.2568841474823199 5.870642546154433e-05']
['59907.0222899191 0.3068953949291541 5.257697318088986e-05 0.026036823707424307 1.3580565230581616e-05 6.375214146844349e-06 3.3252524406599842e-09 0.050070814821969824 2.611647159727234e-05 0.25682458010718423 5.8706117207282105e-05']
['59907.02243019931 0.3067878306232223 5.257354237553529e-05 0.026029104979724146 1.3575369255084639e-05 6.373324187355333e-06 3.3239801865299407e-09 0.05005597111485413 2.6106479336701232e-05 0.2567318595083682 5.8698599823759116e-05']
['59907.022570479516 0.3069140207631186 5.258386194229979e-05 0.026013160252305826 1.357563293958058e-05 6.369420060917058e-06 3.3240447506698574e-09 0.050025308177511205 2.610698642227035e-05 0.25688871258560736 5.870806824295493e-05']
['59907.022710759724 0.30689565439825617 5.258245399563133e-05 0.02601115359211991 1.3579587531457266e-05 6.368928722628298e-06 3.3250130473546045e-09 0.050021449215615216 2.6114591406648593e-05 0.2568742051826409 5.871018951203351e-05']
['59907.02285103993 0.3068334974153988 5.2573949310760636e-05 0.026039973741867915 1.3577306599224925e-05 6.375985444617596e-06 3.324454552524397e-09 0.05007687258051523 2.6110204998509473e-05 0.25675662483488354 5.8700621386784465e-05']
['59907.02299132014 0.30691723752545363 5.2587606594532704e-05 0.026021347302268287 1.357475191310687e-05 6.3714246908722365e-06 3.323829028026341e-09 0.050041052504362096 2.610529214059014e-05 0.25687618502109155 5.871066892045173e-05']
['59907.02313160035 0.3068652634417002 5.2575924204087084e-05 0.02602622475446488 1.3589533516568836e-05 6.372618953374978e-06 3.327448359192181e-09 0.05005043222012477 2.6133718301093917e-05 0.2568148312215754 5.871285241030997e-05']
['59907.02327188056 0.30695117444747244 5.2581717945566e-05 0.026047992214814963 1.3576676927687573e-05 6.377948797856937e-06 3.324300375081791e-09 0.050092292720798015 2.6108994091706872e-05 0.2568588817266744 5.870704075822458e-05']
['59907.023412160765 0.30691936834915645 5.258202132090111e-05 0.026020595003462536 1.3576801397527763e-05 6.3712404876820564e-06 3.3243308519899944e-09 0.0500396057758895 2.610923345678416e-05 0.25687976257326695 5.8707418934003196e-05']
['59907.02355244097 0.30694735301157683 5.2581210486044796e-05 0.02602642696104632 1.3575125413607955e-05 6.372668464416458e-06 3.3239204810278715e-09 0.050050821078935236 2.6106010410784533e-05 0.2568965319326416 5.870525935336405e-05']
['59907.02369272118 0.3068931250201945 5.257877990450647e-05 0.026009895062462637 1.3575944893924078e-05 6.368620566911401e-06 3.3241211338633753e-09 0.050019028966274304 2.6107586334469383e-05 0.2568740960539202 5.8703783186931876e-05']
['59907.02383300139 0.30695146489561487 5.258323815850963e-05 0.026033673010526844 1.3576542359253533e-05 6.374442686866787e-06 3.324267425494927e-09 0.0500647557894747 2.6108735306256795e-05 0.25688670910614014 5.870828727297981e-05']
['59907.0239732816 0.3069136318331236 5.2578366667055785e-05 0.02605969072153884 1.357968141513906e-05 6.380813221198319e-06 3.325036035126963e-09 0.050114789849113155 2.61147719521905e-05 0.25679884198401043 5.870660912955438e-05']
['59907.024113561805 0.30697307022124076 5.2583361313632253e-05 0.026023483501468568 1.3581300695398825e-05 6.3719477472755504e-06 3.325432521984798e-09 0.050045160579747255 2.611788595269005e-05 0.2569279096414935 5.871246761700381e-05']
['59907.02425384201 0.3067893686330536 5.2569888723612475e-05 0.026047670168817334 1.3576656498733482e-05 6.3778699436839735e-06 3.324295372975598e-09 0.0500916734015718 2.61089548052567e-05 0.25669769523148184 5.869642852368392e-05']
['59907.02439412222 0.30685653775995847 5.2584327320165855e-05 0.026027209634726337 1.357617877674568e-05 6.37286010500877e-06 3.324178400951317e-09 0.05005232622062757 2.610803610912631e-05 0.2568042115393309 5.8708951865876336e-05']
['59907.02453440243 0.3069056631578667 5.258135242404554e-05 0.026009995030280446 1.3575070127174619e-05 6.368645044407331e-06 3.3239069439368693e-09 0.05001922121207778 2.610590409072042e-05 0.2568864419457889 5.870533920467178e-05']
['59907.02467468264 0.30693315127219234 5.2581100136346125e-05 0.026057213600223665 1.357680672058324e-05 6.380206688733783e-06 3.3243321553601354e-09 0.05011002615427628 2.610924369342931e-05 0.25682312511791605 5.870659841782129e-05']
['59907.024814962846 0.30694346418840374 5.2583911980500417e-05 0.026039232487272718 1.3576338204676838e-05 6.37580394564388e-06 3.3242174374794873e-09 0.050075447090909074 2.6108342701301613e-05 0.2568680170974947 5.870871619939942e-05']
['59907.024955243054 0.30682174539933843 5.257420169612936e-05 0.025994672701774073 1.3574388384049796e-05 6.364893314681997e-06 3.3237400165703545e-09 0.049989755195719375 2.6104593046249607e-05 0.2568319902036191 5.869835144274151e-05']
['59907.02509552326 0.30683222412454414 5.257436925672829e-05 0.02602756545298783 1.3576572190859172e-05 6.372947228447476e-06 3.3242747298756933e-09 0.05005301048651506 2.610879267472918e-05 0.2567792136380291 5.870036931463727e-05']
['59907.02523580347 0.30692697071937125 5.257846559436795e-05 0.02604592896369018 1.357861585724442e-05 6.377443603064092e-06 3.3247751292714518e-09 0.05008832493017343 2.611272280239312e-05 0.2568386457891978 5.870578622599953e-05']
['59907.02537608368 0.306950720387725 5.258433211459051e-05 0.026049636537686167 1.3576944065966459e-05 6.378351416492307e-06 3.3243657848934433e-09 0.05009545488016571 2.6109507819166272e-05 0.25685526550755927 5.870961064848463e-05']
['59907.02551636389 0.30683154754722297 5.257620219402334e-05 0.026053242441277158 1.3577197693577751e-05 6.379234335539721e-06 3.3244278865673537e-09 0.05010238931014838 2.61099955645726e-05 0.2567291582370746 5.870254598847332e-05']
['59907.025656644095 0.30690148138159673 5.258051093202615e-05 0.02603896909937833 1.3577077516402216e-05 6.375739454127969e-06 3.3243984607342253e-09 0.05007494057572756 2.6109764454619646e-05 0.2568265408058692 5.8706302300082234e-05']
['59907.0257969243 0.30691131842169084 5.257955238148274e-05 0.026041927019887105 1.3576979991412295e-05 6.376463712082191e-06 3.3243745813738857e-09 0.050080628884398286 2.6109576906562107e-05 0.25683068953729254 5.870536035897206e-05']
['59907.02593720451 0.3069523456801916 5.2513297759056307e-05 0.026028722419614216 1.3553923930134552e-05 6.373230516074525e-06 3.318729218111451e-09 0.05005523542233503 2.6065238327181834e-05 0.25689711025785655 5.862630033171202e-05']
['59907.02607748472 0.3068686923957772 5.251351109334743e-05 0.02607168937002116 1.3555875365842947e-05 6.383751135377371e-06 3.3192070344793236e-09 0.05013786417311763 2.6068991088159517e-05 0.2567308282226596 5.862815998908429e-05']
['59907.02621776493 0.30689518205569705 5.250740500508409e-05 0.026023438282557362 1.355224003869314e-05 6.3719366752551815e-06 3.3183169109629423e-09 0.050045073620302624 2.6062000074409888e-05 0.2568501084353944 5.861958229334691e-05']
['59907.026358045136 0.3068994818997171 5.250882459402057e-05 0.026033881124926342 1.3553322081737366e-05 6.374493644459724e-06 3.318581853269291e-09 0.05006515600947374 2.6064080926418012e-05 0.25683432589024335 5.862177901415554e-05']
['59907.026498325344 0.3069604599792949 5.2514665129298046e-05 0.02604116027361128 1.3553759640301694e-05 6.37627597137466e-06 3.3186889911283754e-09 0.05007915437232938 2.6064922385195567e-05 0.2568813056069655 5.8627384664409015e-05']
['59907.02663860556 0.3068883208041709 5.250912989197342e-05 0.026034744306854297 1.355361818584464e-05 6.374704997799142e-06 3.318654355472895e-09 0.050066815974719805 2.6064650357393542e-05 0.2568215048294511 5.8622305654633814e-05']
['59907.02677888577 0.30688243165434037 5.251167281862514e-05 0.026043265301001654 1.3553869089084137e-05 6.376791395243155e-06 3.318715790074131e-09 0.05008320250192626 2.606513286362334e-05 0.2567992291524141 5.862479793917137e-05']
['59907.026919165975 0.3069030281158457 5.25063725596747e-05 0.026040715132939228 1.3554217189129445e-05 6.376166977008001e-06 3.3188010236785948e-09 0.05007829833257544 2.6065802286787398e-05 0.25682472978327026 5.862034807325227e-05']
['59907.02705944618 0.3068749162443399 5.2512902574691033e-05 0.02603466042576812 1.3553535137266625e-05 6.374684459199916e-06 3.318634020716421e-09 0.050066654664938696 2.6064490648589665e-05 0.2568082615794012 5.8625613937846404e-05']
['59907.02719972639 0.306973507536155 5.251212736675317e-05 0.026035383628315582 1.3553343517855136e-05 6.374861538061893e-06 3.3185871019832968e-09 0.05006804543906843 2.606412214972142e-05 0.25690546209708653 5.8624755726720996e-05']
['59907.0273400066 0.3068427237108392 5.251511314758909e-05 0.02601937708156156 1.3553413248993328e-05 6.370942274926917e-06 3.3186041759145745e-09 0.05003726361838762 2.6064256248064092e-05 0.2568054600924516 5.862748982063647e-05']
['59907.02748028681 0.3068748254316706 5.2506503404878304e-05 0.026015988412204767 1.355306334867756e-05 6.370112546498244e-06 3.3185185015071224e-09 0.05003074694654763 2.6063583362841463e-05 0.256844078485123 5.861947865273354e-05']
['59907.027620567016 0.3068550940321132 5.250510184468307e-05 0.02604474644453731 1.3553695695576553e-05 6.377154058804891e-06 3.318673334022082e-09 0.050086050854879445 2.6064799414570297e-05 0.25676904317723376 5.861876396037642e-05']
['59907.027760847224 0.3068203825881267 5.2506217679820026e-05 0.026024516585524002 1.3553833103418726e-05 6.372200701789476e-06 3.3187069788486996e-09 0.050047147279853856 2.606506366042063e-05 0.25677323530827284 5.86198809164811e-05']
['59907.02790112743 0.30693377668675204 5.251660163120346e-05 0.02607564504528212 1.3557230519905494e-05 6.384719697332829e-06 3.319538849045024e-09 0.05014547124092716 2.6071597153664412e-05 0.25678830544582487 5.863208699196613e-05']
['59907.02804140764 0.3068837762554262 5.251496934788726e-05 0.0260674160574087 1.3558117597442061e-05 6.382704798722524e-06 3.3197560533140248e-09 0.0501296462642475 2.6073303072003965e-05 0.2567541299911787 5.8631383564556197e-05']
['59907.02818168785 0.3069159045960609 5.250937190091445e-05 0.026049965424351382 1.3554855792160615e-05 6.378431945628439e-06 3.318957388031032e-09 0.05009608735452189 2.6067030369539646e-05 0.256819817241539 5.862358066269107e-05']
['59907.02832196806 0.30693346048039505 5.251301884552291e-05 0.02601371221709717 1.3553307847999209e-05 6.369555211570835e-06 3.318578368085004e-09 0.05002636964826379 2.6064053553844634e-05 0.25690709083213126 5.862552375823968e-05']
['59907.028462248265 0.30693417851112265 5.2512223622661426e-05 0.026013029156881824 1.3558016360350445e-05 6.369387961709755e-06 3.3197312650316324e-09 0.05002505607092659 2.607310838528932e-05 0.25690912244019604 5.8628837705240626e-05']
['59907.02860252847 0.30687406113852145 5.2512542705392597e-05 0.026011192564444577 1.3552266573127448e-05 6.368938265148474e-06 3.3183234080189147e-09 0.05002152416239342 2.606205110216817e-05 0.25685253697612803 5.8624207022677125e-05']
['59907.02874280868 0.30684468280183014 5.25071092894116e-05 0.02604272339658779 1.355400230562219e-05 6.376658707910618e-06 3.3187484086441816e-09 0.05008216037805345 2.6065389049273444e-05 0.2567625224237767 5.8620824219898154e-05']
['59907.02888308889 0.3068998956565122 5.250880265082402e-05 0.026047720936958098 1.355980702508122e-05 6.377882374454057e-06 3.3201697160213602e-09 0.05009177103261173 2.6076551971310038e-05 0.25680812462390046 5.862730523003438e-05']
['59907.0290233691 0.30697185653056425 5.2512430601423585e-05 0.026023854973240848 1.3552113143394905e-05 6.3720387035352075e-06 3.31828584017222e-09 0.0500458749485401 2.6061756044990204e-05 0.2569259815820242 5.862397543512305e-05']
['59907.029163649306 0.30691942844454706 5.250691580373943e-05 0.02604597804171988 1.3553217255703957e-05 6.377455620004128e-06 3.3185561862210113e-09 0.05008841931099977 2.6063879337892226e-05 0.2568310091335473 5.86199796431318e-05']
['59907.029303929514 0.3069026769200265 5.2509067765555755e-05 0.02602925060925138 1.3553508607906536e-05 6.3733598452924396e-06 3.31862752490289e-09 0.05005625117163727 2.6064439630589494e-05 0.25684642574838923 5.86221563136701e-05']
['59907.02944420972 0.306959144374113 5.2513093975912904e-05 0.026037256022176665 1.3555315729123593e-05 6.375320000736364e-06 3.3190700053251375e-09 0.05007164619649359 2.6067914863699218e-05 0.2568874981776194 5.8627307837424456e-05']
['59907.02958448993 0.30698320334428186 5.251289647032018e-05 0.02600776223557504 1.3551243253651569e-05 6.368098336231524e-06 3.318072844398994e-09 0.05001492737610585 2.6060083180099172e-05 0.256968275968176 5.862364907659923e-05']
['59907.02972477014 0.30681071504861085 5.250100658850081e-05 0.0260289005928166 1.3554832775552725e-05 6.37327414245281e-06 3.3189517523280797e-09 0.05005557806310885 2.6066986106832164e-05 0.256755136985502 5.861606825350526e-05']
['59907.02986505035 0.30698173116457467 5.251873237131615e-05 0.026015788567881577 1.3556040290383233e-05 6.370063613864575e-06 3.3192474168728985e-09 0.050030362630541496 2.606930825073699e-05 0.25695136853403316 5.8632977773279386e-05']
['59907.030005330555 0.306902711474917 5.2510258612964584e-05 0.026066728414830785 1.3555040901803274e-05 6.382536426852746e-06 3.3190027128227907e-09 0.05012832387467459 2.6067386349621684e-05 0.2567743876002424 5.862453318109121e-05']
['59907.03014561076 0.30693543274776613 5.251919538177577e-05 0.026076309505546236 1.3554881925250935e-05 6.38488239292594e-06 3.318963786816421e-09 0.05014674904912738 2.606708062548257e-05 0.2567886836986388 5.863240209887828e-05']
['59907.03028589097 0.3068759731508529 5.250659986728177e-05 0.02602116732976486 1.3554368071526907e-05 6.371380623928327e-06 3.3188379678007203e-09 0.05004070640339396 2.6066092445244054e-05 0.25683526674745893 5.862068069364977e-05']
['59907.03042617118 0.30672756301579884 5.249937354101636e-05 0.026022348644343486 1.355295597689407e-05 6.371669873242997e-06 3.318492211122367e-09 0.05004297816219902 2.606337687864244e-05 0.2566845848535998 5.8613000575958595e-05']
['59907.03056645139 0.30698724040105724 5.252442028869549e-05 0.02604818639329259 1.3553888512015856e-05 6.377996343187023e-06 3.3187205458519656e-09 0.05009266614094729 2.606517021541511e-05 0.25689457426011 5.863623303915497e-05']
['59907.030706731595 0.306869611219279 5.250728847254955e-05 0.02603913868215454 1.3554262069177646e-05 6.375780977108119e-06 3.318812012727083e-09 0.05007526669645105 2.60658885945724e-05 0.25679434452282796 5.8621206836469976e-05']
['59907.0308470118 0.30691187710007867 5.251015666079796e-05 0.02605639124801193 1.3554157287267433e-05 6.380005332703844e-06 3.3187863564825338e-09 0.05010844470771525 2.6065687090898912e-05 0.2568034323923634 5.8623686305640984e-05']
['59907.03098729201 0.30691435576053455 5.250949462024228e-05 0.02603642184449885 1.3554277936614576e-05 6.375115749196609e-06 3.318815897928655e-09 0.050070042008651644 2.606591910887419e-05 0.2568443137518829 5.862319646917614e-05']
['59907.03112757222 0.3069533213829392 5.2516955611727685e-05 0.0260415257489005 1.3554237201145555e-05 6.376365459372903e-06 3.3188059236959564e-09 0.050079857209424046 2.606584077143376e-05 0.25687346417351514 5.862984463433205e-05']
['59907.03126785243 0.3069302342524888 5.2510432661010043e-05 0.02604682021314506 1.3554248285816336e-05 6.377661828842971e-06 3.31880863781926e-09 0.05009003887143281 2.606586208810834e-05 0.25684019538105596 5.8624011331900126e-05']
['59907.031408132636 0.3068822958707148 5.252071134402123e-05 0.02603254735811035 1.3554253054022885e-05 6.374167066641728e-06 3.3188098053325555e-09 0.050062591073289135 2.6065871257736318e-05 0.25681970479742566 5.863322236161752e-05']
['59907.031548412844 0.30679778763860743 5.2503292899655134e-05 0.026041927091198312 1.3554669936525996e-05 6.376463729543008e-06 3.3189118805803377e-09 0.05008062902153522 2.6066672954857686e-05 0.2567171586170722 5.8617976800999256e-05']
['59907.03168869305 0.30693946416476936 5.251179594863758e-05 0.026069170947418285 1.355530751207383e-05 6.383134490137306e-06 3.3190679933496184e-09 0.050133021052727475 2.6067899061680443e-05 0.25680644311204187 5.862613815732118e-05']
['59907.03182897326 0.3068252108823311 5.250482986884429e-05 0.026063548026975313 1.356422393190964e-05 6.381757696932519e-06 3.3212512122596983e-09 0.0501222077441833 2.608504602290316e-05 0.2567030031381478 5.862752583533829e-05']
['59907.031969253476 0.3068977467336551 5.250732217686516e-05 0.026059776494124855 1.3562588536716383e-05 6.38083422293839e-06 3.3208507795998277e-09 0.05011495479639396 2.608190103214689e-05 0.25678279193726117 5.862835869812339e-05']
['59907.032109533684 0.30685937036987876 5.2511172361095326e-05 0.026025704513054054 1.3555437600384475e-05 6.372491570310157e-06 3.3190998459614302e-09 0.05004943175587319 2.606814923150861e-05 0.2568099386140056 5.8625690845335584e-05']
['59907.03224981389 0.30688709365831823 5.2516773907586057e-05 0.026047251596497532 1.3553606080150072e-05 6.3777674546782236e-06 3.3186513913480795e-09 0.050090868454802956 2.606462707721168e-05 0.2567962252035153 5.8629142295744256e-05']
['59907.0323900941 0.3068767568373283 5.250691168994236e-05 0.026028300944114527 1.3553198236987339e-05 6.373127316214267e-06 3.3185515294167635e-09 0.05005442489252794 2.6063842763437193e-05 0.25682233194480036 5.861995969644284e-05']
['59907.03253037431 0.3067910513806306 5.2503016366898954e-05 0.026029978400382136 1.3554672794168807e-05 6.373538047686283e-06 3.318912580284921e-09 0.05005765076996565 2.606667845032463e-05 0.25673340061066496 5.8617731558424174e-05']
['59907.03267065452 0.3069105829976625 5.251183979287772e-05 0.026019544990692416 1.355191758635581e-05 6.370983388108711e-06 3.3182379572961765e-09 0.05003758652056234 2.6061379973761175e-05 0.25687299647710016 5.86232790329031e-05']
['59907.032810934725 0.3068521725079951 5.250635787615091e-05 0.026045813618480636 1.3554920896570266e-05 6.377415360355998e-06 3.3189733290904367e-09 0.05008810311246276 2.6067155570327436e-05 0.25676406939553237 5.862093667748825e-05']
['59907.03295121493 0.3068567398695251 5.250517520276779e-05 0.02602485482476831 1.3553749756287286e-05 6.372283520939751e-06 3.318686570990298e-09 0.05004779773993906 2.6064903377475554e-05 0.25680894212958605 5.861887589463379e-05']
['59907.03309149514 0.30691917411907654 5.250825181918518e-05 0.026042402782183546 1.3553130346200356e-05 6.376580204268676e-06 3.3185349061023964e-09 0.05008154381189144 2.6063712204231457e-05 0.2568376303071851 5.8621102027955495e-05']
['59907.03323177535 0.30682923212298197 5.251135479976901e-05 0.02605287620603087 1.3555829217421139e-05 6.3791446614631345e-06 3.3191957348647903e-09 0.05010168501159783 2.60689023411945e-05 0.2567275471113841 5.8626189132349035e-05']
['59907.03337205556 0.3068817365724039 5.250702989421585e-05 0.02606131553293797 1.3555128885985307e-05 6.381211062376417e-06 3.319024256080459e-09 0.050117914486419175 2.6067555549971748e-05 0.25676382208598475 5.862171645954202e-05']
['59907.033512335765 0.306865139701176 5.250769100475562e-05 0.026019775532449635 1.3553263200588595e-05 6.371039837124481e-06 3.3185674359987034e-09 0.05003802987009545 2.606396769343961e-05 0.2568271098310806 5.862071328954944e-05']
['59907.03365261597 0.3068820815678678 5.250928541074364e-05 0.02602165430678316 1.355323119596721e-05 6.371499862081611e-06 3.3185595995468647e-09 0.05004164289765992 2.606390614609079e-05 0.25684043867020784 5.8622114069173285e-05']
['59907.03379289618 0.30685956082826 5.250765336036555e-05 0.0260492003460704 1.3554270621041528e-05 6.378244613335716e-06 3.3188141066830975e-09 0.05009461605013539 2.606590504046448e-05 0.2567649447781246 5.8621540981032046e-05']
['59907.03393317639 0.3068988585039637 5.250969908622861e-05 0.02602811794732393 1.3552761795738589e-05 6.373082508762278e-06 3.3184446651365977e-09 0.05005407297562295 2.606300345334344e-05 0.2568447855283408 5.862208327188031e-05']
['59907.0340734566 0.3068947037271895 5.2510094875246165e-05 0.025992392673311694 1.3553329264567045e-05 6.364335041143262e-06 3.318583612012135e-09 0.04998537052559941 2.6064094739552012e-05 0.2569093332015901 5.8622922977276525e-05']
['59907.034213736806 0.30680159956267833 5.25025015127916e-05 0.02602012741286091 1.3552197362909547e-05 6.37112599636576e-06 3.3183064616369282e-09 0.05003870656319406 2.6061918005595287e-05 0.2567628929994843 5.8615153631386625e-05']
['59907.034354017014 0.3068674975202684 5.2504658319531305e-05 0.026039138490944462 1.3553601813851295e-05 6.375780930289612e-06 3.3186503467287886e-09 0.050075266328739355 2.6064618872790955e-05 0.256792231191529 5.861828641503075e-05']
['59907.03449429722 0.30688436471167146 5.250653527285625e-05 0.02603730786583239 1.3553810696376152e-05 6.375332694850328e-06 3.318701492400106e-09 0.05007174589583152 2.606502056995414e-05 0.25681261881583994 5.862014622697414e-05']
['59907.03463457743 0.30692323829490914 5.2510508925434615e-05 0.026016498331917694 1.3553174053272479e-05 6.3702374022565395e-06 3.318545607943283e-09 0.05003172756138018 2.6063796256293232e-05 0.25689151073352895 5.862316114726084e-05']
['59907.03477485764 0.3069447335828809 5.252006836793665e-05 0.026060664914724016 1.355428509649945e-05 6.381051756061315e-06 3.3188176510533773e-09 0.05011666329754619 2.606593287788356e-05 0.2568280702853347 5.863267381048787e-05']
['59907.03491513785 0.3068647833285099 5.250763343113979e-05 0.026006264763743743 1.3551683972721596e-05 6.3677316746252284e-06 3.3181807561197783e-09 0.05001204762258412 2.6060930716772302e-05 0.2568527357059258 5.8619311479779044e-05']
['59907.035055418055 0.3070190439167762 5.252835681560543e-05 0.0260434915325976 1.3555122622238226e-05 6.3768467888997374e-06 3.3190227223784434e-09 0.050083637562687695 2.6067543504304282e-05 0.2569354063540885 5.864081423459567e-05']
['59907.03519569826 0.3068339460835203 5.250297670981733e-05 0.02602490082350771 1.3553599859475952e-05 6.372294783903984e-06 3.3186498681926397e-09 0.05004788619905329 2.606461511437683e-05 0.256786059884467 5.8616778523322336e-05']
['59907.03533597847 0.3067625578419836 5.250491613658186e-05 0.02602399070013626 1.3553878446318278e-05 6.372071936775693e-06 3.3187180812280807e-09 0.050046135961800506 2.6065150858304383e-05 0.25671642188018307 5.861875389135852e-05']
['59907.03547625868 0.3069254631842858 5.251069433427508e-05 0.02605385943975539 1.3555142411094105e-05 6.379385409936169e-06 3.319027567754184e-09 0.05010357584568345 2.606758155979636e-05 0.25682188733860234 5.8625010258799136e-05']
['59907.03561653889 0.3067307155273924 5.249730079873458e-05 0.026025571464588428 1.3553175656399637e-05 6.3724589928932715e-06 3.3185460004749934e-09 0.05004917589343928 2.6063799339230075e-05 0.2566815396339531 5.8611331900482085e-05']
['59907.035756819096 0.3067300550725076 5.2497726963403756e-05 0.026026926030887656 1.355224766207223e-05 6.372790663542915e-06 3.3183187775759655e-09 0.05005178082863011 2.6062014734754292e-05 0.2566782742438775 5.8610920043611666e-05']
['59907.035897099304 0.30668439114637525 5.2501509801713415e-05 0.02602658202749668 1.355294875506598e-05 6.372706433019663e-06 3.3184904428306154e-09 0.05005111928364747 2.6063362990511504e-05 0.2566332718627278 5.861490784633696e-05']
['59907.03603737951 0.30665634102466016 5.249507414711441e-05 0.02600313241631358 1.355745564614421e-05 6.366964707583703e-06 3.319593972050734e-09 0.05000602387752612 2.6072030088738867e-05 0.25665031714713404 5.861299823980296e-05']
['59907.03617765972 0.3065848040901445 5.248922200004475e-05 0.025993690249703515 1.355080850248786e-05 6.364652757599874e-06 3.317966393942503e-09 0.049987865864814456 2.6059247120168962e-05 0.25659693822533003 5.8602071521747555e-05']
['59907.03631793993 0.3066499419426458 5.249266794376961e-05 0.02600231983895838 1.3551536764893009e-05 6.366765744964127e-06 3.318144711729653e-09 0.05000446122876612 2.6060647624794247e-05 0.25664548071387966 5.86057807940356e-05']
['59907.03645822014 0.3065721692086534 5.2488191718331785e-05 0.02599884322046771 1.3551680466616979e-05 6.365914481859458e-06 3.318179897636885e-09 0.04999777542397637 2.6060923974263424e-05 0.256574393784677 5.860189440839512e-05']
['59907.036598500345 0.30651925469808583 5.248673479152297e-05 0.02603741954892272 1.3554739708861537e-05 6.375360040874767e-06 3.3189289645989416e-09 0.05007196067100523 2.6066807132426034e-05 0.2564472940270806 5.860320608255801e-05']
['59907.03673878055 0.30640538037294346 5.24790296204707e-05 0.02600270610140376 1.3552322920728633e-05 6.3668603227756855e-06 3.318337204940853e-09 0.05000520404116108 2.606215946293968e-05 0.25640017633178236 5.859423782060773e-05']
['59907.03687906076 0.3063450986651428 5.247708024591961e-05 0.026046565365954108 1.35540530474881e-05 6.3775994285503975e-06 3.318760832980768e-09 0.05008954878068098 2.606548662978481e-05 0.2562555498844618 5.859397191165809e-05']
['59907.03701934097 0.30636407346219485 5.247631730937857e-05 0.02594170595834576 1.3548381314331554e-05 6.351924208472618e-06 3.317372087799595e-09 0.04988789607374185 2.6054579450637607e-05 0.256476177388453 5.8588437329426805e-05']
['59907.03715962118 0.3063877855139426 5.2497021164878886e-05 0.025984634640218517 1.3550910624272542e-05 6.362435457581032e-06 3.3179913988453176e-09 0.04997045123118946 2.605944350821643e-05 0.2564173342827531 5.8609144569287694e-05']
['59907.037299901385 0.306300979704087 5.246902766696883e-05 0.025953734983366394 1.3549659294826336e-05 6.354869560461249e-06 3.3176850061271638e-09 0.04991102881416614 2.6057037105435266e-05 0.25638995088992084 5.85830013487801e-05']
['59907.0374401816 0.3063938166534522 5.247477559491637e-05 0.026010238309670315 1.3555168301775597e-05 6.368704612280331e-06 3.3190339071848596e-09 0.0500196890570583 2.6067631349568457e-05 0.25637412759639394 5.859286200480256e-05']
['59907.03758046181 0.30627310590033385 5.246808277011893e-05 0.02596692610757026 1.3549554925631732e-05 6.3580994568027635e-06 3.3176594509375825e-09 0.049936396360712045 2.605683639544564e-05 0.2563367095396218 5.858206579245112e-05']
['59907.03772074202 0.30619535408482573 5.246889124282211e-05 0.02595217392363843 1.3548877982614989e-05 6.354487329119454e-06 3.317493698895573e-09 0.04990802677622776 2.6055534581951904e-05 0.256287327308598 5.858221087158103e-05']
['59907.037861022225 0.30609565919788845 5.2459130023281435e-05 0.026006313414213254 1.3551340132386172e-05 6.367743586875546e-06 3.3180965655212903e-09 0.05001214118117934 2.6060269485358024e-05 0.2560835180167091 5.857557484522905e-05']
['59907.03800130243 0.3060936971917676 5.245863641262802e-05 0.02593909748627704 1.3549183398168266e-05 6.3512855142823816e-06 3.317568481041729e-09 0.049882879781302 2.605612191955436e-05 0.2562108174104656 5.857328762976331e-05']
['59907.03814158264 0.30605103107659437 5.246142796145584e-05 0.025958680986740743 1.354962291008079e-05 6.356080607977521e-06 3.317676097185461e-09 0.04992054035911682 2.6056967134770753e-05 0.25613049071747757 5.857616375299379e-05']
['59907.03828186285 0.30590128642025216 5.244608669410239e-05 0.02594239694443002 1.3548295780257188e-05 6.352093399012492e-06 3.317351144459998e-09 0.04988922489313466 2.6054414962033056e-05 0.25601206152711753 5.856128882238774e-05']
['59907.03842214306 0.3059650070617471 5.245655568647416e-05 0.025945390996710123 1.3548501867856975e-05 6.3528265039667285e-06 3.317401605783407e-09 0.049894982685981006 2.6054811284340338e-05 0.2560700243757661 5.8570841086250015e-05']
['59907.038562423266 0.30590920536427557 5.2446561127918286e-05 0.025967893548366032 1.3560108236857115e-05 6.358336338317834e-06 3.320243468856824e-09 0.049938256823780836 2.6077131224725223e-05 0.25597094854049474 5.85718238324197e-05']
['59907.038702703474 0.30586011578516054 5.244288336946159e-05 0.025923110936258195 1.3550798761931456e-05 6.347371147423174e-06 3.3179640089306567e-09 0.049852136415881154 2.6059228388329725e-05 0.2560079793692794 5.856056181678998e-05']
['59907.03884298368 0.30588522937513485 5.244636016426535e-05 0.0259436189304126 1.3548197324341513e-05 6.352392606873287e-06 3.317327037158988e-09 0.04989157486617808 2.605422562373368e-05 0.2559936545089568 5.856144949821734e-05']
['59907.03898326389 0.3058233955494436 5.244058629018271e-05 0.02594165250037386 1.3547975460047453e-05 6.351911119087271e-06 3.3172727128526878e-09 0.04988779326994973 2.6053798961629718e-05 0.25593560227949386 5.855608875933498e-05']
['59907.0391235441 0.3056857907848566 5.243295964912089e-05 0.025913854991583617 1.3546294630524102e-05 6.345104794580183e-06 3.3168611554263247e-09 0.04983433652227619 2.6050566597161736e-05 0.2558514542625804 5.8547820434235625e-05']
['59907.03926382431 0.3056309027690344 5.2449229192637015e-05 0.025945159598150483 1.354928580008899e-05 6.352769845159665e-06 3.317593554536906e-09 0.04989453768875093 2.6056318846324983e-05 0.25573636508028347 5.85649502238593e-05']
['59907.039404104515 0.3057040720390676 5.24336262884536e-05 0.025947666247075993 1.3548344041627408e-05 6.3533836075705745e-06 3.3173629614378915e-09 0.04989935816745383 2.60545077723604e-05 0.25580471387161374 5.855017114421786e-05']
['59907.03954438472 0.3055527833422944 5.242312579284804e-05 0.025922074683896387 1.3549538322984312e-05 6.347117417137524e-06 3.317655385716959e-09 0.04985014362287767 2.6056804467277525e-05 0.25570263971941676 5.8541790004566e-05']
['59907.03968466493 0.305633377346706 5.243251207122706e-05 0.02591778184714558 1.3546781698759318e-05 6.3460662999240206e-06 3.3169804159144136e-09 0.04984188816758766 2.6051503266844846e-05 0.2557914891791183 5.8547836378142945e-05']
['59907.03982494514 0.3055633554611463 5.242791829181077e-05 0.02588619208840017 1.3544821076005803e-05 6.338331428761848e-06 3.316500350064013e-09 0.049781138631538796 2.6047732838472702e-05 0.25578221682960756 5.854204474082909e-05']
['59907.03996522535 0.30544312082296315 5.2416449938310054e-05 0.02591929215931768 1.3547362632194758e-05 6.346436105536023e-06 3.3171226596495787e-09 0.049844792614072465 2.605262044652838e-05 0.25559832820889067 5.853394960419323e-05']
['59907.040105505555 0.3054287842740501 5.241591060717795e-05 0.0259000093509184 1.3565416455451504e-05 6.341714637423039e-06 3.321543206131146e-09 0.049807710290227694 2.6087339337406742e-05 0.25562107398382244 5.854892790209467e-05']
['59907.04024578576 0.3053494518313987 5.241261932411748e-05 0.025929833129707307 1.3546400973689692e-05 6.349017101755245e-06 3.316887193950121e-09 0.04986506371097559 2.605077110324941e-05 0.2554843881204231 5.852969621900277e-05']
['59907.04038606597 0.30540873353522413 5.241454535894756e-05 0.025906138336765798 1.3545721187506358e-05 6.343215342644199e-06 3.316720745748085e-09 0.04981949680147269 2.604946382212761e-05 0.25558923673375145 5.8530839141477425e-05']
['59907.04052634618 0.305307491016886 5.2409084868624124e-05 0.02592574011297317 1.3547272485625088e-05 6.348014911223867e-06 3.31710058692317e-09 0.04985719252494841 2.6052447087740555e-05 0.25545029849193757 5.852727719641644e-05']
['59907.04066662639 0.3054023807227373 5.241402537365576e-05 0.025899236861034736 1.354661244392569e-05 6.341525490371541e-06 3.3169389732322377e-09 0.049806224732759106 2.6051177776780173e-05 0.2555961559899782 5.8531136324418265e-05']
['59907.040806906596 0.3053372568846039 5.2410387528895334e-05 0.025886811400968227 1.3545849203391858e-05 6.338483069771886e-06 3.316752090918811e-09 0.049782329617246594 2.6049710006522804e-05 0.2555549272673573 5.852722539428058e-05']
['59907.040947186804 0.30541747142231657 5.2434833804008395e-05 0.025900931412161782 1.3546514743551374e-05 6.3419404075841435e-06 3.3169150509283694e-09 0.04980948348492651 2.605098989144495e-05 0.25560798793739004 5.85496871928292e-05']
['59907.04108746701 0.3052792020557639 5.2407188175406404e-05 0.02587198966473056 1.354620007316539e-05 6.334853911945072e-06 3.3168380027016406e-09 0.04975382627832801 2.605038475608729e-05 0.2555253757774359 5.8524660771273524e-05']
['59907.04122774722 0.30527729059953884 5.240584291502389e-05 0.02587976678264786 1.354443035109229e-05 6.336758168498221e-06 3.3164046796003593e-09 0.04976878227432281 2.604698144440825e-05 0.25550850832521604 5.85219413040913e-05']
['59907.04136802743 0.30521451766811125 5.240753109954013e-05 0.025913841474807627 1.3554322140009845e-05 6.345101484946777e-06 3.3188267212961292e-09 0.04983431052847621 2.6066004115403548e-05 0.25538020713963505 5.853192194429891e-05']
['59907.04150830764 0.30514067571236164 5.239965121805634e-05 0.025867575233665396 1.3545056899504705e-05 6.333773021906673e-06 3.316558092334086e-09 0.04974533698781807 2.604818634520136e-05 0.25539533872454356 5.851693310186623e-05']
['59907.041648587845 0.3052128934715795 5.2402259467686104e-05 0.02585726013906637 1.3546854118423393e-05 6.331247332223757e-06 3.316998148141359e-09 0.04972550026743533 2.6051642535429605e-05 0.25548739320414415 5.85208072066039e-05']
['59907.04178886805 0.3052612208289814 5.2405131695343186e-05 0.025902884905478984 1.3554296436525511e-05 6.342418727765266e-06 3.318820427701381e-09 0.0498132402028442 2.6065954685625983e-05 0.25544798062613716 5.852975159420523e-05']
['59907.04192914826 0.3051682888295766 5.2399054417269455e-05 0.025876331801096414 1.3545093243115662e-05 6.335917100354618e-06 3.3165669912038297e-09 0.04976217654057003 2.604825623676089e-05 0.25540611228900656 5.8516429802235184e-05']
['59907.04206942847 0.30514201188700674 5.239929001548233e-05 0.025896638807106364 1.354563860753797e-05 6.340889347102126e-06 3.31670052573244e-09 0.049801228475204545 2.6049305014496097e-05 0.2553407834118022 5.8517107634134463e-05']
['59907.04220970868 0.30516380441675345 5.240036970279417e-05 0.02588889081319145 1.3545216656989138e-05 6.338992221670427e-06 3.316597209554614e-09 0.04978632848690664 2.6048493571132958e-05 0.25537747592984683 5.851771323552266e-05']
['59907.042349988886 0.30516450791041566 5.2400208725695764e-05 0.025866777691915862 1.3543083235517127e-05 6.333577740811657e-06 3.316074833288508e-09 0.049743803253684354 2.6044390837532938e-05 0.2554207046567313 5.8515742912438976e-05']
['59907.042490269094 0.30520120563548825 5.240315159229682e-05 0.02588376872354392 1.3545145217953022e-05 6.3377380587683284e-06 3.3165797174381105e-09 0.049776478314507544 2.60483561883712e-05 0.2554247273209807 5.8520143172428213e-05']
['59907.0426305493 0.3051719725549892 5.239843129881336e-05 0.025898643800685392 1.3544919873170665e-05 6.341380277315926e-06 3.3165245409211686e-09 0.04980508423208729 2.604792283302051e-05 0.2553668883229019 5.85157234125278e-05']
['59907.04277082952 0.30508204842918196 5.239653357807326e-05 0.025889444906250753 1.3553235233953925e-05 6.3391278934386134e-06 3.318560588263089e-09 0.04978739405048222 2.606391391144986e-05 0.25529465437869975 5.852114437860582e-05']
['59907.042911109726 0.30513836231494434 5.2401087595969786e-05 0.025876128215147794 1.3544852473751572e-05 6.3358672515698995e-06 3.316508037920076e-09 0.049761785029130375 2.6047793218753024e-05 0.255376577285814 5.8518044335122946e-05']
['59907.043051389934 0.30512921062083215 5.239741884680982e-05 0.025877613856434438 1.3547831188279074e-05 6.3362310164228705e-06 3.31723738736794e-09 0.049764642031604696 2.6053521515921298e-05 0.25536456858922746 5.851730927843996e-05']
['59907.04319167014 0.30512144779511524 5.2397474972959645e-05 0.025906346823779004 1.3545418527882857e-05 6.3432663914730015e-06 3.316646638401694e-09 0.049819897738036543 2.6048881784390113e-05 0.2553015500570787 5.851529394747208e-05']
['59907.04333195035 0.3051805678996054 5.240124029575521e-05 0.025878988239676045 1.354547392718851e-05 6.336567539325338e-06 3.316660203129907e-09 0.04976728507630009 2.6048988321516368e-05 0.25541328282330533 5.851871305068128e-05']
['59907.04347223056 0.30520588957442996 5.2400399669682725e-05 0.02588870828542953 1.3546575044260328e-05 6.338947529061872e-06 3.3169298157836032e-09 0.049785977471979874 2.6051105854346784e-05 0.2554199121024501 5.8518902944064724e-05']
['59907.043612510766 0.30508312758952927 5.239590344501758e-05 0.025893657219157203 1.3544521017712719e-05 6.340159294086169e-06 3.316426879663151e-09 0.049795494652225394 2.604715580329369e-05 0.2552876329373039 5.8513118386056485e-05']
['59907.043752790974 0.30509838448991017 5.239641614450391e-05 0.02590034169626583 1.3544720954036926e-05 6.341796013430511e-06 3.3164758348236148e-09 0.049808349415895826 2.604754029622486e-05 0.2552900350740143 5.851374864313077e-05']
['59907.04389307118 0.30515503054757886 5.2411010808624676e-05 0.025892321315387146 1.3544780373964558e-05 6.339832193026939e-06 3.316490384016231e-09 0.04979292560651375 2.604765456531646e-05 0.2553621049410651 5.8526868721432757e-05']
['59907.04403335139 0.3051771395058145 5.2400876769799056e-05 0.025890639237157204 1.3552484740930973e-05 6.339420329850073e-06 3.3183768272256143e-09 0.049789690840686934 2.6062470655636493e-05 0.2553874486651275 5.852439032505661e-05']
['59907.0441736316 0.3051797241915618 5.240103924979469e-05 0.02586879366074952 1.3543435462572152e-05 6.334071358357804e-06 3.3161610774068125e-09 0.049747680116826 2.6045068197254137e-05 0.2554320440747358 5.851678811980492e-05']
['59907.04431391181 0.30512138321998095 5.239857266047329e-05 0.0258614178967251 1.3545124523233877e-05 6.3322653748138575e-06 3.3165746502583443e-09 0.049733495955240584 2.604831639083438e-05 0.2553878872647404 5.8516025186711976e-05']
['59907.044454192015 0.30511707115390746 5.239983550916281e-05 0.02588743188644057 1.3544838961666094e-05 6.338634997971948e-06 3.31650472943516e-09 0.04978352285853956 2.604776723397326e-05 0.2553335482953679 5.8516911566337564e-05']
['59907.04459447222 0.3050898269322419 5.2396041904288556e-05 0.02586920052348946 1.3543910201757185e-05 6.3341709802289145e-06 3.316277319080624e-09 0.04974846254517204 2.6045981157225357e-05 0.2553413643870699 5.851271948626641e-05']
['59907.04473475243 0.3050327441889472 5.239278779761416e-05 0.025896360737857376 1.3556015898555078e-05 6.34082126080136e-06 3.3192414444420956e-09 0.049800693726648804 2.6069261343375154e-05 0.2552320504622984 5.8520172591979095e-05']
['59907.04487503264 0.3050833109755474 5.239711696561282e-05 0.02588048971652486 1.354382649436859e-05 6.336935181575226e-06 3.3162568230119038e-09 0.04977017253177858 2.604582018147806e-05 0.25531313844376885 5.8513610512717475e-05']
['59907.04501531285 0.3050839960393903 5.2396596625901865e-05 0.025867508805807852 1.3543845669851402e-05 6.333756756796078e-06 3.3162615182009434e-09 0.049745209241938176 2.6045857057406547e-05 0.25533878679745214 5.851316097966615e-05']
['59907.045155593056 0.3051972317269298 5.240066704168395e-05 0.025897668786827574 1.3549865900847769e-05 6.3411415415081494e-06 3.3177355943880614e-09 0.04980320920543765 2.6057434424707248e-05 0.2553940225214922 5.8521959939934865e-05']
['59907.045295873264 0.3050902405001156 5.239587973611912e-05 0.025902564743151668 1.3545456987700712e-05 6.34234033481606e-06 3.316656055432651e-09 0.04981262450606091 2.6048955745578296e-05 0.2552776159940547 5.851389842385273e-05']
['59907.04543615347 0.30513823381015426 5.239784296531622e-05 0.02589191953176316 1.3545372912801863e-05 6.3397338147964605e-06 3.3166354693776633e-09 0.04979215294569839 2.6048794063080506e-05 0.25534608086445587 5.8515584416108475e-05']
['59907.04557643368 0.3051528627458857 5.239898224715708e-05 0.025846143840349355 1.3542696231944974e-05 6.328525464701143e-06 3.3159800740092738e-09 0.04970412276990261 2.6043646599894183e-05 0.2554487399759831 5.85143133665436e-05']
['59907.04571671389 0.3051804879362575 5.239959802011538e-05 0.025868504923777784 1.3543828539190163e-05 6.334000660025027e-06 3.3162573236941517e-09 0.04974712485341882 2.604582411382724e-05 0.2554333630828387 5.8515833980539865e-05']
['59907.0458569941 0.3052275929717492 5.2404323620777096e-05 0.02590544337988973 1.3550019870794733e-05 6.343045179841026e-06 3.3177732945082876e-09 0.04981816034594179 2.6057730520759103e-05 0.2554094326258074 5.852536590268904e-05']
['59907.045997274305 0.3051022148166588 5.2397602280630174e-05 0.025889456106097244 1.3547376278019999e-05 6.339130635763122e-06 3.3171260008811786e-09 0.04978741558864855 2.6052646688500002e-05 0.25531479922801026 5.851708403735537e-05']
['59907.04613755451 0.3050952805835479 5.240764094879506e-05 0.02588645603081862 1.3544671993957825e-05 6.33839605605506e-06 3.3164638467642253e-09 0.04978164621311274 2.604744614222659e-05 0.25531363437043514 5.8523758255515466e-05']
['59907.04627783472 0.3051804485964292 5.240131828906749e-05 0.025904769032424474 1.3546865667925464e-05 6.342880063329554e-06 3.3170009760803507e-09 0.04981686352389322 2.6051664746010507e-05 0.255363585072536 5.851997432048895e-05']
['59907.04641811493 0.3050898006107935 5.2396273594650954e-05 0.02588137388138311 1.3544382293576459e-05 6.3371516726639935e-06 3.316392912536979e-09 0.04977187284881368 2.6046889026108577e-05 0.2553179277619798 5.8513331083984034e-05']
['59907.04655839514 0.305127194180033 5.239709453988267e-05 0.025877276323514706 1.3543054102846529e-05 6.336148370218822e-06 3.316067700044614e-09 0.04976399292983598 2.6044334813166405e-05 0.255363201250197 5.851292927278307e-05']
['59907.046698675345 0.3051131359457837 5.2397006401725395e-05 0.02586188900103017 1.3544783664398522e-05 6.3323807264736484e-06 3.3164911896913546e-09 0.04973440192505803 2.6047660893074082e-05 0.2553787340207257 5.8514330875974584e-05']
['59907.04683895555 0.3051357623690024 0.0006662609038782585 0.025875313483406725 1.3545187621067237e-05 6.3356677614408455e-06 3.316590100000002e-09 0.04976021823732062 2.604843773282161e-05 0.2553755441316818 0.0006667699101976593']
['59907.04697923576 0.30519683086440286 5.2401744336536385e-05 0.025903038585009353 1.354565349319825e-05 6.342456356775897e-06 3.3167041705423092e-09 0.049813535740402606 2.6049333640765868e-05 0.25538329512400026 5.851931811495807e-05']
['59907.04711951597 0.30499410321994314 5.2389510919701555e-05 0.02586415134352119 1.3544448248997947e-05 6.332934669535821e-06 3.3164090619698306e-09 0.0497387525836946 2.604701586345759e-05 0.25525535063624855 5.8507331931961654e-05']
['59907.04725979618 0.305103175005481 5.239950014506711e-05 0.025869679108005455 1.3544187816345434e-05 6.334288163446465e-06 3.316345294056e-09 0.0497493829000105 2.6046515031433528e-05 0.2553537921054705 5.851605387186991e-05']
['59907.047400076386 0.3055596053278743 5.2551169002441096e-05 0.02586222796522408 1.3546453298953355e-05 6.332463723130558e-06 3.3169000059875986e-09 0.049735053779277075 2.605087172875645e-05 0.25582455154859723 5.865384285237625e-05']
['59907.047540356594 0.305169301962786 5.239796982339574e-05 0.025896634789805056 1.3556940404138057e-05 6.340888363450802e-06 3.319467813108937e-09 0.04980122074962511 2.6071039238727032e-05 0.2553680812131609 5.8525604043023214e-05']
['59907.0476806368 0.3051092108170759 5.239762348566219e-05 0.0258621278433215 1.3545656252814037e-05 6.332439207906393e-06 3.316704846244607e-09 0.04973486123715674 2.6049338947719305e-05 0.25537434957991917 5.8515630446560033e-05']
['59907.04782091701 0.3051295144384861 5.239729116583049e-05 0.025882648676661124 1.3543693911452476e-05 6.3374638110792645e-06 3.3162243595865668e-09 0.04977432437819448 2.6045565214331687e-05 0.25535519006029167 5.851365301235963e-05']
['59907.04796119722 0.30506566188347933 5.239359944696998e-05 0.0258902656140199 1.3544513123587746e-05 6.339328846820603e-06 3.316424946756981e-09 0.04978897233465366 2.604714062228413e-05 0.25527668954882565 5.85110485088635e-05']
['59907.048101477434 0.3051961840450406 5.240183359784994e-05 0.025865065442370692 1.3544053820849346e-05 6.333158490074856e-06 3.3163124847551466e-09 0.04974051046609749 2.6046257347787202e-05 0.2554556735789431 5.851802872828094e-05']
['59907.04824175764 0.30514027450260095 5.2400781890621476e-05 0.025894720460564527 1.3545628056398513e-05 6.340419632741054e-06 3.3166979422462866e-09 0.049797539347239475 2.6049284723843295e-05 0.2553427351553615 5.8518434508899324e-05']
['59907.04838203785 0.3051059825208201 5.2396591055037193e-05 0.025868002079901663 1.3544527377574053e-05 6.333877536811969e-06 3.316428436899103e-09 0.04974615784596474 2.6047168033796258e-05 0.25535982467485535 5.8513739555506286e-05']
['59907.04852231806 0.30519103910505285 5.2408779060794456e-05 0.025856135175313356 1.3543290666701726e-05 6.330971880620539e-06 3.3161256235937086e-09 0.04972333687560261 2.604478974365717e-05 0.25546770222945026 5.8523595202571734e-05']
['59907.04866259827 0.30508518379053173 5.2395115023780345e-05 0.025902496450877457 1.3545088336011311e-05 6.342323613196035e-06 3.3165657896808856e-09 0.04981249317476434 2.6048246800021753e-05 0.2552726906157674 5.8512898062820444e-05']
['59907.048802878475 0.3050700145502858 5.239285149636013e-05 0.0258623911714842 1.3543482394288752e-05 6.332503684796776e-06 3.31617256881402e-09 0.04973536763746962 2.6045158450555294e-05 0.2553346469128162 5.850949637993971e-05']
['59907.04894315868 0.30508070213410765 5.239553102245869e-05 0.025900929245526772 1.3549404860456038e-05 6.341939877075417e-06 3.3176227069152783e-09 0.049809479318320714 2.6056547808569305e-05 0.25527122281578696 5.851696638433753e-05']
['59907.04908343889 0.30508982575337307 5.239433844278466e-05 0.025864823826651142 1.3543199905813981e-05 6.333099329557786e-06 3.3161034004492104e-09 0.04974004582048296 2.604461520348843e-05 0.2553497799328901 5.8510586067436064e-05']
['59907.0492237191 0.30517392180115865 5.240009238106287e-05 0.025874381003407547 1.3543987921631646e-05 6.335439440208225e-06 3.316296349084004e-09 0.049758425006552975 2.6046130618522398e-05 0.2554154967946057 5.851641309701965e-05']
['59907.04936399931 0.3051810342773781 5.240474735456302e-05 0.025857220321187493 1.3544551221086451e-05 6.331237582666455e-06 3.316434275072732e-09 0.04972542369459134 2.6047213886704714e-05 0.25545561058278676 5.8521063699793796e-05']
['59907.049504279516 0.3050715573696273 5.239283520142315e-05 0.025871634968116567 1.3544094569150189e-05 6.334767063145972e-06 3.316322462129765e-09 0.049753144169454935 2.6046335709904213e-05 0.2553184132001724 5.8510005848201007e-05']
['59907.049644559724 0.30502103217292326 5.2393142534642913e-05 0.025888383467411156 1.3544234711120261e-05 6.338867996149211e-06 3.316356776417875e-09 0.04978535282194453 2.6046605213692812e-05 0.25523567935097874 5.851040102249666e-05']
['59907.04978483993 0.3050893292511324 5.2401405412601556e-05 0.025881531943635454 1.3544503012392389e-05 6.3371903748005724e-06 3.3164224709927934e-09 0.049772176814683565 2.604712117767767e-05 0.25531715243644887 5.851802979305141e-05']
['59907.04992512014 0.3050259051755304 5.23906163958266e-05 0.02589951684015806 1.3544682335045177e-05 6.341594044312217e-06 3.3164663788183314e-09 0.04980676315415011 2.6047466028933034e-05 0.2552191420213803 5.85085222242288e-05']
['59907.05006540035 0.3051299184720836 5.240470428575848e-05 0.02589099696630947 1.3546916867369544e-05 6.339507921177567e-06 3.3170135124566723e-09 0.049790378781364365 2.6051763206479892e-05 0.2553395396907192 5.85230501379097e-05']
['59907.050205680556 0.3050636244681298 5.239255926307637e-05 0.025882006939698717 1.354453736516698e-05 6.337306679371984e-06 3.3164308823987705e-09 0.049773090268651385 2.604718724070573e-05 0.2552905341994784 5.851013783343322e-05']
['59907.050345960764 0.3051278107487074 5.242301542252446e-05 0.02587937816028129 1.354751576818544e-05 6.336663012851089e-06 3.317160155572475e-09 0.049768034923617865 2.6052914938818157e-05 0.2553597758250895 5.853996005122938e-05']
['59907.05048624097 0.30512707613765766 5.239704601482783e-05 0.025901211247852683 1.3545541432732146e-05 6.342008926404851e-06 3.316676732115993e-09 0.04981002163048593 2.6049118139869514e-05 0.25531705450717174 5.85150150554955e-05']
['59907.05062652118 0.30513415632698426 5.239734395340351e-05 0.025904981370457665 1.3550092915911487e-05 6.342932055095075e-06 3.3177911798796724e-09 0.049817271866264744 2.605787099213748e-05 0.25531688446071954 5.851917885628738e-05']
['59907.05076680139 0.30510052559833023 5.240546088632457e-05 0.025861596633275828 1.3543068268086824e-05 6.332309139130103e-06 3.316071168456942e-09 0.0497338396793766 2.6044362054013126e-05 0.2553666859189536 5.852043340157875e-05']
['59907.0509070816 0.30503390485756693 5.2402727269094845e-05 0.025880318583547612 1.3544697964904991e-05 6.336893279022526e-06 3.3164702058482533e-09 0.049769843429899256 2.6047496086355754e-05 0.25526406142766767 5.851938035905588e-05']
['59907.051047361805 0.30525831250413255 5.242116786034223e-05 0.02588629166173602 1.354790128405225e-05 6.338355809667387e-06 3.3172545505814642e-09 0.04978133011872312 2.60536563154851e-05 0.25547698238540945 5.853863550893199e-05']
['59907.05118764201 0.3051581881014335 5.2399931888059114e-05 0.025867404989812763 1.3544080250884357e-05 6.3337313370594775e-06 3.3163189562485592e-09 0.04974500959579378 2.6046308174777612e-05 0.2554131785056397 5.851634841143731e-05']
['59907.05132792222 0.3051562233152416 5.2399382891768724e-05 0.02590391716115468 1.354979155048667e-05 6.3426714794472985e-06 3.317717389422693e-09 0.04981522530991284 2.6057291443243597e-05 0.2553409980053288 5.8520746447702804e-05']
['59907.05146820243 0.30503790443798645 5.23938808949707e-05 0.02587233190441323 1.3547048756153888e-05 6.334937710617717e-06 3.3170458059212365e-09 0.04975448443156391 2.6052016838757477e-05 0.25528342000642257 5.851347141131928e-05']
['59907.05160848264 0.30516909565340805 5.239876274364854e-05 0.02589204664098173 1.3546045104752051e-05 6.339764937966381e-06 3.3168000581031696e-09 0.04979239738650333 2.605008673990779e-05 0.25537669826690473 5.851698348532578e-05']
['59907.051748762846 0.30512362632442697 5.2397422947973926e-05 0.025885211075802494 1.354452757618367e-05 6.3380912241400695e-06 3.3164284855294143e-09 0.049779252068850956 2.604716841573783e-05 0.255344374255576 5.8514484651808014e-05']
['59907.051889043054 0.30503658952700546 5.239270542678867e-05 0.025876478190408968 1.3544248569563524e-05 6.3359529443280164e-06 3.316360169709796e-09 0.049762458058478794 2.604663186454524e-05 0.2552741314685267 5.851002147859283e-05']
['59907.05202932326 0.30513101592445924 5.239920264563779e-05 0.025870108253422345 1.354363117574893e-05 6.334393241314778e-06 3.3162089985137547e-09 0.04975020817965836 2.6045444568747943e-05 0.2553808077448009 5.85153109936394e-05']
['59907.05216960347 0.3051306930045982 5.239835065842632e-05 0.025879547828018892 1.3545011763183655e-05 6.336704556634355e-06 3.3165470405362274e-09 0.049768361207728644 2.6048099544583956e-05 0.25536233179686957 5.8515729864780475e-05']
['59907.05230988368 0.30512405581866825 5.240183742966402e-05 0.02587018186205671 1.3544168575105787e-05 6.334411264665567e-06 3.316340582766152e-09 0.04975034973472444 2.6046478029049593e-05 0.25537370608394383 5.8518130384716666e-05']
['59907.05245016389 0.3051265211234657 5.2396107758942195e-05 0.025864092722253124 1.354395373492448e-05 6.332920315898001e-06 3.31628797834026e-09 0.04973863985048678 2.604606487485477e-05 0.25538788127297896 5.851281572229989e-05']
['59907.052590444095 0.3050924634823929 5.239519528081816e-05 0.025876073256678317 1.354446393987299e-05 6.335853794782081e-06 3.316412903939561e-09 0.049761679339765996 2.6047046038217292e-05 0.2553307841426269 5.851243539481228e-05']
['59907.0527307243 0.30505417715315886 5.239410932218667e-05 0.0258597730957472 1.3543339989536775e-05 6.331862639112265e-06 3.3161377004752556e-09 0.049730332876436925 2.6044884595263034e-05 0.25532384427672195 5.851050081178436e-05']
['59907.05287100451 0.30511321580174255 5.239922489972392e-05 0.0258803993109743 1.3546959166298201e-05 6.336913045436373e-06 3.317023869508339e-09 0.04976999867495058 2.6051844550573466e-05 0.255343217126792 5.851817986386019e-05']
['59907.05301128472 0.30508668315058785 5.240131723441872e-05 0.025869634975565214 1.354338182915025e-05 6.3342773574525955e-06 3.3161479450618733e-09 0.04974929802993311 2.6044965056058175e-05 0.25533738512065474 5.851699114508093e-05']
['59907.05315156493 0.30504015830854136 5.239433618060802e-05 0.025885022537313784 1.3544602727888054e-05 6.338045059782467e-06 3.316446886706698e-09 0.0497788894948342 2.604731293824626e-05 0.25526126881370714 5.851178492500037e-05']
['59907.053291845135 0.30510019266075566 5.2395728661943306e-05 0.025866812841323604 1.3543016210718273e-05 6.333586347276255e-06 3.316058422014589e-09 0.04974387084869924 2.604426194368899e-05 0.2553563218120564 5.851167372591109e-05']
['59907.05343212535 0.3050708347563579 5.239542619707703e-05 0.025864955433276243 1.3550794305634032e-05 6.3331315539346e-06 3.317962917789483e-09 0.04974029891014663 2.6059219818526987e-05 0.25533053584621124 5.8518062373284846e-05']
['59907.05357240556 0.3050069637989295 5.239630838469833e-05 0.02586537895893861 1.3545003675737705e-05 6.333235255784895e-06 3.316545060294689e-09 0.049741113382574254 2.604808399180328e-05 0.25526585041635524 5.851389417897639e-05']
['59907.05371268577 0.3050383187862622 5.2392496431104614e-05 0.025920182780803103 1.3547738249523555e-05 6.346654177554221e-06 3.317214630964331e-09 0.04984650534769828 2.6053342787545296e-05 0.2551918134385639 5.851282212206696e-05']
['59907.053852965975 0.3050562012634527 5.239189065131518e-05 0.025879508858270374 1.3549342694378097e-05 6.3366950147449584e-06 3.317607485317437e-09 0.04976828626590457 2.6056428258419422e-05 0.2552879149975481 5.851365361695956e-05']
['59907.05399324618 0.3050220906084377 5.239169057604901e-05 0.025836346339944798 1.354290847816931e-05 6.326126509902174e-06 3.316032043295052e-09 0.04968528142297077 2.6044054765710213e-05 0.255336809185467 5.850796552654839e-05']
['59907.05413352639 0.30502526001819324 5.238999282743723e-05 0.025856818832641952 1.354275139324657e-05 6.331139276687043e-06 3.315993580461299e-09 0.04972465160123453 2.6043752679320327e-05 0.25530060841695873 5.8506310788499806e-05']
['59907.0542738066 0.30500684778933207 5.2398531046163744e-05 0.02586839058331009 1.3544744872683934e-05 6.333972663331752e-06 3.3164816913942352e-09 0.04974690496790402 2.6047586293622954e-05 0.25525994282142805 5.8515662924720596e-05']
['59907.05441408681 0.30503622909080963 5.239250746649749e-05 0.025871137910043217 1.354348511595763e-05 6.334645356608469e-06 3.3161732352248746e-09 0.049752188288544656 2.604516368453391e-05 0.25528404080226497 5.850919064541193e-05']
['59907.054554367016 0.30504379455563246 5.239984220092158e-05 0.02585904519573872 1.354412108065567e-05 6.3316844100593015e-06 3.3163289535715284e-09 0.04972893306872831 2.60463866935686e-05 0.25531486148690413 5.8516303048572626e-05']
['59907.054694647224 0.30507687807466205 5.239262885722912e-05 0.025881477821835322 1.3545731737183634e-05 6.337177122874388e-06 3.3167233288762187e-09 0.0497720727342987 2.604948410996853e-05 0.25530480534036337 5.851122269246183e-05']
['59907.05483492743 0.305084284347909 5.2396317852638196e-05 0.025889317374815788 1.3549565568043555e-05 6.339096666887422e-06 3.317662056772118e-09 0.04978714879772267 2.6056856861622223e-05 0.25529713555018635 5.85178085203279e-05']
['59907.05497520764 0.3051021570891804 5.2395505155162704e-05 0.025885530807724502 1.3544521437207458e-05 6.3381695117029185e-06 3.316426982378015e-09 0.04977986693793174 2.6047156610014345e-05 0.2553222901512487 5.8512762094531956e-05']
['59907.05511548785 0.30665907912039414 5.4081618064576054e-05 0.025872393180009452 1.3544016824153798e-05 6.334952714177763e-06 3.316303425975186e-09 0.04975460226924895 2.6046186200295767e-05 0.2569044768511452 6.0026870883489805e-05']
['59907.05525576806 0.305141614636979 5.240638797816595e-05 0.025875977595849177 1.3544472912964063e-05 6.335830371868515e-06 3.316415101034636e-09 0.04976149537663303 2.604706329416166e-05 0.25538011926034593 5.852246583294419e-05']
['59907.055396048265 0.3050807535147273 5.2403450121990055e-05 0.02589399204350718 1.3548067013603986e-05 6.340241277086733e-06 3.3172951300851183e-09 0.04979613854520613 2.6053975026161514e-05 0.25528461496952115 5.852291174703927e-05']
['59907.05553632847 0.3050337674423093 5.238968601064189e-05 0.025860984478539066 1.3542776811493296e-05 6.33215925074196e-06 3.315999804214547e-09 0.049732662458728975 2.6043801560564032e-05 0.25530110498358033 5.850605780617665e-05']
['59907.05567660868 0.30507013554620954 5.2393951599312944e-05 0.025937010918297726 1.354804857891964e-05 6.350774610270066e-06 3.3172906162833676e-09 0.04987886715057255 2.6053939574845464e-05 0.255191268395637 5.851439080739751e-05']
['59907.05581688889 0.3050889587293291 5.2393402205475974e-05 0.02587448235779205 1.3543895055947479e-05 6.335464257210222e-06 3.3162736105721905e-09 0.04975861991883087 2.604595203066823e-05 0.25533033881049827 5.851034277671466e-05']
['59907.0559571691 0.30496182577001013 5.2387430163075704e-05 0.025882391684662297 1.354468027380096e-05 6.33740088562242e-06 3.3164658741149376e-09 0.049773830162812116 2.604746206500185e-05 0.255187995607198 5.8505667410250475e-05']
['59907.056097449306 0.30500995868044106 5.239079454358959e-05 0.025864874685885275 1.3544345257258538e-05 6.333111782632424e-06 3.316383844055331e-09 0.049740143626702454 2.6046817802420267e-05 0.2552698150537386 5.8508393163212866e-05']
['59907.056237729514 0.3049798196439135 5.238938427500316e-05 0.02587729508559177 1.354550460144725e-05 6.33615296418391e-06 3.316667713837452e-09 0.049764029010753406 2.6049047310475484e-05 0.25521579063316013 5.8508122944573585e-05']
['59907.05637800972 0.3050891197927158 5.240435665748928e-05 0.025869156073501282 1.354311189083295e-05 6.334160096482239e-06 3.3160818496502914e-09 0.049748377064425545 2.6044445943909522e-05 0.25534074272829027 5.851948189458419e-05']
['59907.05651828993 0.3051228388284769 5.2397792895028856e-05 0.02587984130162967 1.3545707055107044e-05 6.336776414751004e-06 3.3167172853769953e-09 0.049768925580057057 2.6049436644436626e-05 0.25535391324841983 5.8515825635146376e-05']
['59907.05665857014 0.3050527401767351 5.239255082553095e-05 0.02587579828577238 1.3547094579423914e-05 6.335786467122256e-06 3.317057025921134e-09 0.049761150549562275 2.6052104960430606e-05 0.25529158962717285 5.8512319684619724e-05']
['59907.056798850346 0.30504558018587036 5.2391344657730524e-05 0.02588556998132557 1.3545440793180056e-05 6.338179103506378e-06 3.3166520901433993e-09 0.049779942271779946 2.604892460226934e-05 0.2552656379140904 5.8509823687820335e-05']
['59907.056939130554 0.30515071785115766 5.2409531095529967e-05 0.0258679717032708 1.3543510523559402e-05 6.3338700989797285e-06 3.3161794563716654e-09 0.049746099429366926 2.6045212545306546e-05 0.25540461842179074 5.852445682091818e-05']
['59907.05707941076 0.30498237469672757 5.238894026074452e-05 0.025861126228800477 1.3543495441849532e-05 6.33219395882625e-06 3.3161757635583177e-09 0.04973293505538554 2.6045183542018334e-05 0.255249439641342 5.850600522494491e-05']
['59907.05721969097 0.30509236666367734 5.2395856042236434e-05 0.02591270540899679 1.35466947983834e-05 6.3448233149629734e-06 3.316959138030746e-09 0.04983212578653229 2.605133615073731e-05 0.25526024087714505 5.8514936944659494e-05']
['59907.05735997118 0.30508622609102765 5.239487074158659e-05 0.025876017719176178 1.3549954868144213e-05 6.335840196215939e-06 3.317757378364989e-09 0.04976157253687727 2.6057605515661952e-05 0.25532465355415035 5.851684616618895e-05']
['59907.05750025139 0.30500098881076754 5.238926481175609e-05 0.02589108752123065 1.3544859675860053e-05 6.339530093890378e-06 3.3165098013834076e-09 0.04979055292544356 2.6047807068961642e-05 0.255210435885324 5.8507463802647886e-05']
['59907.057640531595 0.30504600492819045 5.239122367577125e-05 0.025906217589139482 1.3546153252429832e-05 6.343234747885773e-06 3.3168265384685585e-09 0.049819649209883625 2.6050294716211216e-05 0.2552263557183068 5.851032535413007e-05']
['59907.0577808118 0.30504665659003666 5.24017078290826e-05 0.025869853180752984 1.3547148847122046e-05 6.334330785812968e-06 3.317070313570992e-09 0.0497497176552942 2.605220932138855e-05 0.2552969389347425 5.852056556399623e-05']
['59907.05792109201 0.30509953204603135 5.239551362988663e-05 0.025902090357457407 1.354547499352288e-05 6.3422241796957924e-06 3.3166604642258854e-09 0.049811712225879635 2.6048990372159386e-05 0.2552878198201517 5.8513586011698924e-05']
['59907.05806137222 0.30502356783575324 5.2393916150857554e-05 0.02585344405227768 1.3542088330280527e-05 6.330312949030391e-06 3.315831227001873e-09 0.04971816163899554 2.6042477558231786e-05 0.2553054061967577 5.850925642147658e-05']
['59907.05820165243 0.30507081380604933 5.2401488246024084e-05 0.025871616850794442 1.3544065468095849e-05 6.334762627051554e-06 3.3163153366272305e-09 0.049753109328450854 2.6046279746338173e-05 0.2553177044775985 5.8517729441791457e-05']
['59907.058341932636 0.3050728463348148 5.239373978904131e-05 0.025881184515373017 1.3544328399607576e-05 6.33710530568467e-06 3.316379716396132e-09 0.049771508683409654 2.6046785383860727e-05 0.25530133765140517 5.851101603898766e-05']
['59907.058482212844 0.3051093722580984 5.2404673731933485e-05 0.025851824644815218 1.3542998138329466e-05 6.329916431026498e-06 3.3160539969222627e-09 0.049715047393875424 2.604422718909513e-05 0.255394324864223 5.8519668478449204e-05']
['59907.05862249305 0.3051058453059491 5.239459945834613e-05 0.025861324174891814 1.3543667621871875e-05 6.332242426670714e-06 3.316217922483944e-09 0.0497333157209458 2.6045514657445915e-05 0.2553725295850033 5.8511220173328756e-05']
['59907.05876277327 0.3050022949661889 5.2390310072048636e-05 0.025873063421068914 1.3549669695952971e-05 6.335116825220342e-06 3.317687552882114e-09 0.0497558911943633 2.605705710760187e-05 0.2552464037718256 5.851251844310092e-05']
['59907.058903053476 0.3050182179988443 5.239189559455552e-05 0.025861299550890424 1.3547387200224538e-05 6.332236397391422e-06 3.3171286752240118e-09 0.049733268367096975 2.6052667692739498e-05 0.25528494963174736 5.85119835409732e-05']
['59907.059043333684 0.3050711014259522 5.239518239770548e-05 0.025871542508649537 1.354385039945045e-05 6.334744424097952e-06 3.316262676261047e-09 0.04975296636278757 2.604586615278933e-05 0.2553181350631646 5.8511898637267304e-05']
['59907.05918361389 0.30511448477956693 5.239576093468528e-05 0.025901983487939303 1.354601623363318e-05 6.342198012292604e-06 3.316792988901199e-09 0.04981150670757559 2.6050031218525347e-05 0.2553029780719913 5.851427082696013e-05']
['59907.0593238941 0.304995602176076 5.2397424585880634e-05 0.025876786141694703 1.354506658455188e-05 6.336028347357795e-06 3.3165604637542886e-09 0.04976305027248982 2.6048204970292077e-05 0.2552325519035862 5.851494753827775e-05']
['59907.05946417431 0.3050960763479025 5.239683252428108e-05 0.02589118396336835 1.3545597871570278e-05 6.339553708110282e-06 3.3166905513776406e-09 0.049790738391092985 2.604922667609669e-05 0.2553053379568095 5.851487220357084e-05']
['59907.05960445452 0.30499620946953343 5.238816218821428e-05 0.02586653388669497 1.3544135828563465e-05 6.333518044186955e-06 3.3163325646521834e-09 0.04974333439749033 2.6046415054929744e-05 0.2552528750720431 5.850585675530541e-05']
['59907.059744734725 0.3050215234413646 5.238867019166258e-05 0.025890864902337316 1.3545770166637916e-05 6.339475584817609e-06 3.3167327384725405e-09 0.04979012481218715 2.6049558012765224e-05 0.25523139862917743 5.850771092011049e-05']
['59907.05988501493 0.30497807426495477 5.238827740431285e-05 0.025888144820911806 1.3544646445816019e-05 6.338809562656867e-06 3.3164575912056784e-09 0.04978489388636886 2.6047397011184652e-05 0.2551931803785859 5.8506397089972203e-05']
['59907.06002529514 0.30505571061250847 5.239511776053504e-05 0.02588643961672986 1.3546552900897035e-05 6.338392037003732e-06 3.316924393897873e-09 0.04978161464755742 2.6051063270955835e-05 0.25527409596495104 5.851415437898491e-05']
['59907.06016557535 0.3050114061779757 5.239221791722655e-05 0.025874263088589845 1.3544994378336116e-05 6.3354105683219155e-06 3.3165427837909644e-09 0.049758198247288166 2.6048066112184837e-05 0.2552532079306875 5.851022343548952e-05']
['59907.06030585556 0.30491185132110904 5.239044598914654e-05 0.02588699770166717 1.3544788421955163e-05 6.338528686198253e-06 3.31649235459698e-09 0.04978268788782149 2.604767004222147e-05 0.25512916343328756 5.85084604614591e-05']
['59907.060446135765 0.30502818690684613 5.239112836516248e-05 0.025867279555976716 1.3542309212470131e-05 6.333700624113265e-06 3.3158853108362058e-09 0.0497447683768783 2.604290233167333e-05 0.25528341852996783 5.8506949102068285e-05']
['59907.06058641597 0.3050040425891239 5.238997397627327e-05 0.025887880138175716 1.3544660659741186e-05 6.338744754094098e-06 3.3164610715386804e-09 0.04978438488110715 2.604742434565613e-05 0.25521965770801675 5.8507928422370844e-05']
['59907.06072669618 0.3050589677984086 5.2400041653582296e-05 0.025911133199929416 1.3549960047968992e-05 6.344438353663518e-06 3.3177586466645546e-09 0.04982910230755657 2.6057615476863446e-05 0.255229865490852 5.8521480583092166e-05']
['59907.06086697639 0.30510546148871825 5.23958832653684e-05 0.02587016159440643 1.354451418922286e-05 6.334406302055218e-06 3.3164252076817435e-09 0.04975031075847391 2.6047142671582424e-05 0.25535515073024434 5.851309447048483e-05']
['59907.0610072566 0.305041441693488 5.239112685067201e-05 0.02587444907128518 1.3545597070096911e-05 6.335456106883904e-06 3.3166903551338743e-09 0.04975855590631766 2.6049225134801756e-05 0.25528288578717034 5.8509762457275395e-05']
['59907.061147536806 0.3049547953344052 5.2386741768122155e-05 0.025876921794390956 1.3546005558985367e-05 6.336061562430337e-06 3.3167903751735605e-09 0.049763311143059534 2.6050010690356477e-05 0.2551914841913457 5.85061857417453e-05']
['59907.061287817014 0.3049805251045423 5.238836699281584e-05 0.02586114378672455 1.354376452355673e-05 6.332198257949952e-06 3.3162416492256963e-09 0.049732968820624134 2.604570100683987e-05 0.2552475562839182 5.8505722259550436e-05']
['59907.06142809722 0.305010450797338 5.2390485499458654e-05 0.025870896645335286 1.3544121410328224e-05 6.3345862820379135e-06 3.316329034293092e-09 0.049751724317952474 2.6046387327554278e-05 0.2552587264793855 5.8507924793877e-05']
['59907.06156837743 0.3051137131522873 5.239659959006362e-05 0.02588973580265775 1.3545674623555595e-05 6.33919912051723e-06 3.3167093443897257e-09 0.04978795346664952 2.6049374276068455e-05 0.25532575968563775 5.851472933181997e-05']
['59907.06170865764 0.30507449305797196 5.239355216231285e-05 0.025902327784411823 1.3545936437971294e-05 6.342282314577975e-06 3.3167734506334663e-09 0.04981216881617659 2.6049877765329416e-05 0.2552623242417954 5.8512224703677104e-05']
['59907.06184893785 0.30505658574698 5.239198267215543e-05 0.025887636483638315 1.3557487276150157e-05 6.338685094364816e-06 3.3196017167765746e-09 0.04978391631468908 2.607209091567338e-05 0.25527266943229093 5.852071234216629e-05']
['59907.061989218055 0.30506104249021904 5.239272869419927e-05 0.025896865648935185 1.3545588575258914e-05 6.340944890176521e-06 3.316688275140862e-09 0.049801664709490746 2.604920879857484e-05 0.25525937778072827 5.851118952008855e-05']
['59907.06212949826 0.3050341913759457 5.239634220168027e-05 0.02586762896254717 1.3544236719803838e-05 6.333786177625322e-06 3.3163572682515986e-09 0.04974544031259072 2.6046609076545843e-05 0.25528875106335497 5.8513267901408326e-05']
['59907.06226977847 0.30506975795723923 5.2391837682749765e-05 0.025894567555010295 1.354494255789437e-05 6.3403821932413896e-06 3.3165300953610305e-09 0.049797245298096725 2.6047966457489175e-05 0.2552725126591425 5.8509838594428536e-05']
['59907.06241005868 0.3050146569889475 5.239072671852996e-05 0.02588032266275978 1.3545190981294378e-05 6.336894277832957e-06 3.3165909227642473e-09 0.049769851274538035 2.6048444194796883e-05 0.25524480571440944 5.850905648756555e-05']
['59907.06255033889 0.30504709210680825 5.2394071800187005e-05 0.025899024227377956 1.3545314584446952e-05 6.341473426221473e-06 3.3166211874607307e-09 0.049805815821880685 2.6048681893167218e-05 0.25524127628492754 5.851215760997511e-05']
['59907.062690619096 0.3049921339386895 5.2407109922590685e-05 0.025866580830883206 1.355022330480371e-05 6.333529538647889e-06 3.3178231060900132e-09 0.049743424674775404 2.6058121740007137e-05 0.25524870926391413 5.852803498371986e-05']
['59907.062830899304 0.30505741069766207 5.239361021319524e-05 0.025895350136681893 1.354484438619341e-05 6.340573811305094e-06 3.3165060576510622e-09 0.0497987502628498 2.6047777665756562e-05 0.25525866043481227 5.8511341742408565e-05']
['59907.06297117951 0.30509684671949244 5.23953620305853e-05 0.025873240850319272 1.35429362114776e-05 6.335160269439178e-06 3.316038833899825e-09 0.049756232404460136 2.6044108098995385e-05 0.2553406143150323 5.851127693862318e-05']
['59907.06311145972 0.30498775565770314 5.239067790763116e-05 0.0258554993738673 1.3543868884680538e-05 6.330816202246747e-06 3.3162672024391125e-09 0.04972211418051404 2.604590170130873e-05 0.2552656414771891 5.8507880896981634e-05']
['59907.06325173993 0.30506468179270574 5.2393604632069636e-05 0.025891950603460296 1.3545867084746083e-05 6.339741422818291e-06 3.316756469235602e-09 0.04979221269896211 2.604974439374247e-05 0.2552724690937436 5.851221230923461e-05']
['59907.063392020136 0.3050879651899173 5.239393525432138e-05 0.025838889802694547 1.3541096264868023e-05 6.326749286316316e-06 3.3155883160568413e-09 0.049690172697489515 2.6040569740130814e-05 0.2553977924924278 5.850842438337096e-05']
['59907.063532300344 0.30507300204547994 5.239636844941959e-05 0.025889398336261898 1.3545006353191817e-05 6.339116490601804e-06 3.3165457158793916e-09 0.049787304492811345 2.6048089140753496e-05 0.2552856975526686 5.8513950256088274e-05']
['59907.06367258055 0.3049881464852032 5.238810824276661e-05 0.025877071087536507 1.3544933290803626e-05 6.336098117418159e-06 3.3165278262790306e-09 0.04976359824526252 2.6047948636160822e-05 0.25522454823994073 5.85064912074541e-05']
['59907.06381286076 0.30508987427288103 5.240249670789307e-05 0.025885137076278212 1.3548050735762015e-05 6.338073105078415e-06 3.31729114439433e-09 0.04977910976207349 2.6053943722619263e-05 0.25531076451080753 5.85220440921381e-05']
['59907.06395314097 0.3050733088627808 5.239546232136589e-05 0.025872009802846666 1.3544308698534768e-05 6.334858842838492e-06 3.3163748925144064e-09 0.04975386500547436 2.604674749718225e-05 0.2553194438573064 5.85125416218749e-05']
['59907.06409342118 0.30503871443587716 5.239251712659259e-05 0.025879966049803277 1.3544952798689157e-05 6.336806959810191e-06 3.3165326028581252e-09 0.04976916548039092 2.6047986151325303e-05 0.25526954895548626 5.8510455761341773e-05']
['59907.06423370139 0.30508651116986085 5.239586472358294e-05 0.02586350679465619 1.3544892621617166e-05 6.3327768493236224e-06 3.3165178682758664e-09 0.049737513066646526 2.6047870426186856e-05 0.2553489981032143 5.8513401831302065e-05']
['59907.0643739816 0.30514996063597916 5.2398708338786886e-05 0.025884479054292267 1.3543923341939442e-05 6.337911985921912e-06 3.3162805365036386e-09 0.049777844335177436 2.604600642680662e-05 0.2553721163008017 5.851511844265981e-05']
['59907.06451426181 0.3050358321368585 5.240027805017799e-05 0.025880065483475573 1.3543633746692556e-05 6.336831306518585e-06 3.3162096280189648e-09 0.04976935669899149 2.60454495128703e-05 0.25526647543786696 5.85162761978532e-05']
['59907.06465454202 0.3049259467677361 5.2384192686060214e-05 0.025885413210193504 1.3545528711664949e-05 6.338140717505451e-06 3.316673617314876e-09 0.049779640788833665 2.604909367627875e-05 0.2551463059789024 5.8503494978726096e-05']
['59907.064794822225 0.3050067026323613 5.239025628394772e-05 0.02589723414381087 1.3545748726497048e-05 6.341035117531859e-06 3.3167274887734638e-09 0.04980237335348245 2.6049516781725093e-05 0.2552043292788788 5.850911277791778e-05']
['59907.06493510243 0.30495341303432083 5.2387993718803816e-05 0.025884280112032573 1.3546332570585265e-05 6.337863274161881e-06 3.316870445192902e-09 0.0497774617539088 2.6050639558817818e-05 0.25517595128041204 5.850758674996664e-05']
['59907.06507538264 0.304955308070335 5.2389604106350694e-05 0.025856741754095434 1.354464218428545e-05 6.33112040371522e-06 3.3164565477539016e-09 0.049724503373260454 2.604738881593356e-05 0.25523080469707454 5.850758141086143e-05']
['59907.06521566285 0.30502148441689264 5.239821995447254e-05 0.025865792383655068 1.3547690746178303e-05 6.333336484380619e-06 3.3172029995917e-09 0.049741908430105904 2.605325143495828e-05 0.25527957598678674 5.851790635976684e-05']
['59907.06535594306 0.3049979879725497 5.2396024798597635e-05 0.025891975249680697 1.3547911544661189e-05 6.3397474575379914e-06 3.3172570629301284e-09 0.04979226009553981 2.6053676047425363e-05 0.25520572787700985 5.8516129829983156e-05']
['59907.065496223266 0.3050700073143607 5.23949359781456e-05 0.025858556188112045 1.354588101310569e-05 6.331564674703924e-06 3.316759879646803e-09 0.04972799266944624 2.6049771179049406e-05 0.25534201464491446 5.8513416364410045e-05']
['59907.065636503474 0.3049584800664024 5.238839878186971e-05 0.025890953364969535 1.3548422920827866e-05 6.339497245225604e-06 3.3173822753065993e-09 0.04979029493263372 2.605465946313051e-05 0.2551681851337687 5.8509739417193644e-05']
['59907.06577678368 0.3049859671634569 5.238769797821118e-05 0.025866184282430024 1.3543168376569829e-05 6.333432442268659e-06 3.3160956803952736e-09 0.0497426620815962 2.6044554570326595e-05 0.25524330508186066 5.8504612828588075e-05']
['59907.06591706389 0.30506192875431865 5.2394664539926336e-05 0.02585295187683058 1.3541974525424895e-05 6.330192438022277e-06 3.3158033614552243e-09 0.04971721514775112 2.6042258702740185e-05 0.2553447136065675 5.8509829179308506e-05']
['59907.0660573441 0.30502630997110575 5.23911238134503e-05 0.025888329558507457 1.354594790664182e-05 6.338854796351518e-06 3.3167762587805506e-09 0.04978524915097589 2.604989982046504e-05 0.2552410608201299 5.8510060118688504e-05']
['59907.06619762431 0.3050511396261113 5.2392767389079435e-05 0.02590152641938539 1.354592037812744e-05 6.342086097339239e-06 3.316769518320336e-09 0.04981062772958729 2.604984688101431e-05 0.255240511896524 5.851150824590387e-05']
['59907.066337904515 0.30510213209831205 5.239632197054393e-05 0.025888089917179048 1.3545476372817266e-05 6.33879611927154e-06 3.3166608019513e-09 0.0497847883022674 2.604899302464859e-05 0.25531734379604465 5.851431101567458e-05']
['59907.06647818472 0.3050289989190883 5.239251793903435e-05 0.02587752850418998 1.3543466812491296e-05 6.336210117605009e-06 3.316168753552347e-09 0.04976447789267304 2.604512848556019e-05 0.2552645210264153 5.8509184354435965e-05']
['59907.06661846493 0.30499421000177135 5.238994317592493e-05 0.02587059676656203 1.3545221282744754e-05 6.334512855593156e-06 3.3165983421882632e-09 0.0497511476280039 2.6048502466816837e-05 0.2552430623737674 5.850838082480497e-05']
['59907.06675874514 0.30510570374119284 5.240660425962719e-05 0.025915109373584422 1.3545278840449816e-05 6.3454119347278035e-06 3.3166124354086843e-09 0.04983674879535466 2.6048613154711187e-05 0.2552689549458382 5.852334933433806e-05']
['59907.06689902535 0.3050609823516364 5.240941440543321e-05 0.025870670638445975 1.3543930754430136e-05 6.3345309434015955e-06 3.3162823514798455e-09 0.04975128968931919 2.6046020681596417e-05 0.25530969266231723 5.852471197422998e-05']
['59907.067039305555 0.30502560795901773 5.2392243267999565e-05 0.025872849411433994 1.354412003613817e-05 6.335064424156855e-06 3.3163286978174925e-09 0.04975547963737307 2.6046384684881098e-05 0.25527012832164464 5.850949760343234e-05']
['59907.06717958576 0.3050726450453314 5.239402557901807e-05 0.025866516883682272 1.3545519149555105e-05 6.333513880935388e-06 3.3166712759963406e-09 0.04974330169938899 2.604907528760597e-05 0.2553293433459424 5.851229135586953e-05']
['59907.06731986597 0.3049827653983857 5.238847586728506e-05 0.025875737864145126 1.3545509705873422e-05 6.335771672659722e-06 3.3166689636753854e-09 0.049761034354125246 2.604905712667966e-05 0.25522173104426044 5.850731390934068e-05']
['59907.06746014618 0.30509277907756926 5.2398516791724136e-05 0.025869416771524555 1.3543064756529275e-05 6.334223929373098e-06 3.3160703086388772e-09 0.04974887840677799 2.6044355301017838e-05 0.25534390067079127 5.851421199177386e-05']
['59907.06760042639 0.30490962116569326 5.238704191757437e-05 0.02587889622193027 1.3543929243241921e-05 6.336545008434427e-06 3.316281981459731e-09 0.049767108119096674 2.6046017775465237e-05 0.2551425130465966 5.850467676035434e-05']
['59907.067740706596 0.3050701531953137 5.239440091796033e-05 0.025876824274542243 1.3544381828601365e-05 6.336037684328841e-06 3.3163927986860795e-09 0.04976312360488893 2.6046888131925704e-05 0.2553070295904248 5.851165378716461e-05']
['59907.067880986804 0.3048959441532768 5.238954007351085e-05 0.0258847324799326 1.3543918513889055e-05 6.3379740381424745e-06 3.3162793543373545e-09 0.04977833169217808 2.604599714209434e-05 0.2551176124610987 5.850690451767198e-05']
['59907.06802126701 0.3050649504848766 5.239389017046885e-05 0.025875742501398877 1.354443832077938e-05 6.335772808108733e-06 3.3164066310081986e-09 0.04976104327192092 2.6046996770729582e-05 0.25530390721295565 5.851124479935074e-05']
['59907.06816154722 0.3051334879386648 5.239866567778109e-05 0.025859608016970688 1.3543118733759128e-05 6.33182221895337e-06 3.3160835251664857e-09 0.049730015417251326 2.604445910338294e-05 0.2554034725214135 5.851439151866539e-05']
['59907.06830182743 0.3050267180290351 5.238992590673261e-05 0.025873984782009897 1.3543716529757474e-05 6.335342423909771e-06 3.3162298977635586e-09 0.049757663042326726 2.6045608711072066e-05 0.2552690549867084 5.850707709023931e-05']
['59907.06844210764 0.30497903180425023 5.23940217941408e-05 0.025880492829432947 1.3544293890911742e-05 6.336935943782471e-06 3.3163712668122526e-09 0.049770178518140286 2.604671902098412e-05 0.2552088532861099 5.851123901886711e-05']
['59907.068582387845 0.3051099020213005 5.239799467048439e-05 0.02589367763738504 1.3544966376692615e-05 6.340164293565999e-06 3.3165359274833064e-09 0.04979553391804816 2.6048012262870415e-05 0.25531436810325236 5.851537223956418e-05']
['59907.06872266805 0.30506567504773807 5.239378261898548e-05 0.025842397060210163 1.3542818650718018e-05 6.3276080515014036e-06 3.316010048705977e-09 0.04969691742348109 2.604388202061157e-05 0.255368757624257 5.850976198745846e-05']
['59907.06886294826 0.30505476736500914 5.239376080305158e-05 0.025855347635333453 1.3543238501600001e-05 6.33077904849641e-06 3.3161128507724834e-09 0.04972182237564126 2.604468942615385e-05 0.25533294498936787 5.851010184910119e-05']
['59907.06900322847 0.30506231078328083 5.239331604352912e-05 0.02589549894967253 1.354671841408069e-05 6.340610248725181e-06 3.3169649204229892e-09 0.04979903644167795 2.605138156553979e-05 0.2552632743416029 5.8512682791942396e-05']
['59907.06914350868 0.3050595126122757 5.239348340203494e-05 0.025886217096018554 1.3544753197630186e-05 6.338337551971202e-06 3.3164837297886152e-09 0.04978118672311261 2.6047602303134975e-05 0.2552783258891631 5.851115012321663e-05']
['59907.069283788886 0.3050792005578148 5.2398087933030475e-05 0.02588888244774965 1.3544403656681674e-05 6.3389901733605595e-06 3.3163981433735865e-09 0.049786312399518556 2.604693010900322e-05 0.2552928881582962 5.8514974042042365e-05']
['59907.069424069094 0.30506881325660173 5.239175935526745e-05 0.025876795944971363 1.3544151001060876e-05 6.336030747726932e-06 3.316336279695202e-09 0.049763069124944936 2.604644423280938e-05 0.2553057441316568 5.850909079376557e-05']
['59907.06956434931 0.30507719716278925 5.240483582697462e-05 0.025872230468310203 1.3544465805169656e-05 6.334912873606633e-06 3.3164133606644603e-09 0.04975428936213501 2.6047049625326265e-05 0.25532290780065425 5.852106981452382e-05']
['59907.06970462952 0.3050878801316795 5.239510592290069e-05 0.025888637236896456 1.3544489127202277e-05 6.338930132561505e-06 3.3164190711518058e-09 0.049785840840185495 2.6047094475388995e-05 0.255302039291494 5.851237694096714e-05']
['59907.069844909725 0.305054170103379 5.239834243305086e-05 0.02587322254483759 1.35445308278987e-05 6.335155787273185e-06 3.316429281724061e-09 0.04975619720161075 2.6047174669035962e-05 0.25529797290176826 5.8515310799572166e-05']
['59907.06998518993 0.30499943671249474 5.238814488399906e-05 0.025867971465614183 1.3543858993124797e-05 6.3338700407886124e-06 3.316264780454511e-09 0.04974609897233497 2.604588267908615e-05 0.2552533377401598 5.850560425223892e-05']
['59907.07012547014 0.30510260146996526 5.240132351903305e-05 0.025897577943459794 1.3545525117636994e-05 6.341119298168104e-06 3.316672737303623e-09 0.04980303450665346 2.6049086764686528e-05 0.2552995669633118 5.851883139486411e-05']
['59907.07026575035 0.30507571301135705 5.2394833755446106e-05 0.025902081819336675 1.3545588489202556e-05 6.34222208910484e-06 3.316688254069639e-09 0.049811695806416686 2.604920863308184e-05 0.25526401720494035 5.8513074390862936e-05']
['59907.07040603056 0.3051169622634422 5.2396844998167606e-05 0.025893097222544896 1.3544557465640474e-05 6.34002217681084e-06 3.316435804075255e-09 0.04979441773566326 2.604722589546245e-05 0.2553225445277789 5.8513992707823754e-05']
['59907.070546310766 0.30501851104264643 5.239341577283509e-05 0.025881740481455258 1.3545595627666238e-05 6.337241436069563e-06 3.3166900019493025e-09 0.04977257784895242 2.6049222360896613e-05 0.25524593319369404 5.851181079023791e-05']
['59907.070686590974 0.3049688065798124 5.2388591830125794e-05 0.025861464364102082 1.3544366703381715e-05 6.332276752525764e-06 3.3163890952191985e-09 0.04973358531558093 2.6046859044964836e-05 0.2552352212642315 5.8506439133242334e-05']
['59907.07082687118 0.30506002514119723 5.236565773754446e-05 0.025866910394038226 1.3538195440540037e-05 6.333610233425093e-06 3.314878038317087e-09 0.049744058450073514 2.6034991231807763e-05 0.2553159666911237 5.8480619684866174e-05']
['59907.07096715139 0.30509785911557663 5.236688837408132e-05 0.025883398897560278 1.3537363585204552e-05 6.3376475054862045e-06 3.31467435541158e-09 0.04977576711069285 2.603339151000876e-05 0.25532209200488376 5.848100949450932e-05']
['59907.0711074316 0.304988162261947 5.236093488124914e-05 0.02586916207065466 1.3535914832902866e-05 6.334161564907785e-06 3.314319622965227e-09 0.04974838859741281 2.6030605447890126e-05 0.2552397736645342 5.847443818988037e-05']
['59907.07124771181 0.30504083279118455 5.236206657857151e-05 0.02585210668675693 1.3534857669788249e-05 6.329985490056009e-06 3.314060772603157e-09 0.049715589782224866 2.602857244190048e-05 0.2553252430089597 5.8474546597147857e-05']
['59907.071387992015 0.30504863625496664 5.2365500566134344e-05 0.025896687330844277 1.3539758622856862e-05 6.340901228321736e-06 3.3152607893827433e-09 0.04980132179008515 2.6037997351647814e-05 0.25524731446488147 5.848181730782855e-05']
['59907.07152827222 0.3050551022883432 5.236332355267292e-05 0.02587911473066483 1.3537579696494159e-05 6.336598511119371e-06 3.3147272710731165e-09 0.049767528328201596 2.6033807108642615e-05 0.2552875739601416 5.847800241160706e-05']
['59907.07166855243 0.3050813042939716 5.236690385938615e-05 0.02590043839078604 1.3538341593945748e-05 6.341819689447221e-06 3.314913824527808e-09 0.04980853536689624 2.6035272296049516e-05 0.2552727689270754 5.8481860635137414e-05']
['59907.07180883264 0.30501405042368346 5.2367190165645304e-05 0.025887498539237875 1.3542182257098365e-05 6.338651318159889e-06 3.3158542253362543e-09 0.04978365103699592 2.604265818672763e-05 0.25523039938668757 5.848540545534065e-05']
['59907.07194911285 0.3050494287510773 5.236238657411422e-05 0.025880120264131085 1.3537176362310416e-05 6.3368447197679855e-06 3.314628513182254e-09 0.049769462046405935 2.603303146598157e-05 0.2552799667046714 5.847681809953209e-05']
['59907.072089393056 0.30499254443803314 5.236101789692345e-05 0.026299671867755038 1.3647002526024283e-05 6.439573506843191e-06 3.3415198621605334e-09 0.05057629205337508 2.6244235626969774e-05 0.25441625238465804 5.856992486631554e-05']
['59907.072229673264 0.3050835302808335 5.237902954990192e-05 0.02587240598530337 1.353743602950661e-05 6.334955849602109e-06 3.314692093671228e-09 0.04975462689481418 2.603353082597425e-05 0.2553289033860193 5.849194358077401e-05']
['59907.07236995347 0.3049759067769221 5.236147703843189e-05 0.02587796845198778 1.3539859061599131e-05 6.33631784047689e-06 3.3152853821862972e-09 0.04976532394613035 2.6038190503075253e-05 0.25521058283079173 5.847830061074508e-05']
['59907.07251023368 0.3050811923825214 5.236646987389798e-05 0.025857425958085177 1.3535718431173166e-05 6.33128793363376e-06 3.314271533263514e-09 0.04972581915016381 2.603022775225609e-05 0.2553553732323576 5.847922643031616e-05']
['59907.07265051389 0.3050979054522068 5.236832825173524e-05 0.02584537827991513 1.3535724969479766e-05 6.328338014351386e-06 3.3142731341924604e-09 0.04970265053829833 2.603024032592263e-05 0.25539525491390846 5.848089615683724e-05']
['59907.0727907941 0.30504867010670267 5.236342090921444e-05 0.025885476390902676 1.3536860377820574e-05 6.338156187539563e-06 3.314551143192256e-09 0.049779762290197455 2.6032423803501103e-05 0.25526890781650524 5.847747376897062e-05']
['59907.072931074305 0.3050361528163772 5.236588962439979e-05 0.025871674614154235 1.3537262926796601e-05 6.334776770627309e-06 3.314649708822058e-09 0.049753220411835074 2.603319793614731e-05 0.25528293240454214 5.8480028992276044e-05']
['59907.07307135451 0.30505133080591484 5.2363851889932355e-05 0.025881785532912517 1.3537280328784758e-05 6.337252467088203e-06 3.3146539697642655e-09 0.04977266448637023 2.6033231401509153e-05 0.2552786663195446 5.8478219209850214e-05']
['59907.07321163472 0.30498542507188814 5.236002184101328e-05 0.025862267901241368 1.3536157882961542e-05 6.332473501614495e-06 3.314379134685623e-09 0.049735130579310324 2.603107285184912e-05 0.2552502944925778 5.847382868437523e-05']
['59907.07335191493 0.3049850259429767 5.2361024183127176e-05 0.02588317628444904 1.353711541095835e-05 6.337592997829204e-06 3.3146135890146087e-09 0.04977533900855585 2.603291425184298e-05 0.25520968693442087 5.847554598248603e-05']
['59907.07349219514 0.3050163561113892 5.236536905855612e-05 0.02587627081873091 1.353674818213384e-05 6.335902168593215e-06 3.3145236716566602e-09 0.04976205926679021 2.603220804256508e-05 0.255254296844599 5.847912219083129e-05']
['59907.073632475345 0.305093321494612 5.2366572564913104e-05 0.02588182179936591 1.3536258885060616e-05 6.337261347065627e-06 3.314403865429208e-09 0.04977273422954983 2.6031267086655034e-05 0.2553205872650622 5.8479781021589674e-05']
['59907.07377275555 0.30501821779946825 5.236353697550453e-05 0.025896353573240147 1.3547941110012492e-05 6.340819506517902e-06 3.3172643021175194e-09 0.04980067994853875 2.6053732903870178e-05 0.2552175378509295 5.84870669704956e-05']
['59907.07391303576 0.30498774611257984 5.2360402044318024e-05 0.025897766273193994 1.3538197811728845e-05 6.34116541141138e-06 3.3148786189115793e-09 0.04980339667921922 2.6034995791786243e-05 0.2551843494333606 5.847591562447698e-05']
['59907.07405331597 0.30493584498812853 5.235787613769823e-05 0.025853972958684114 1.3535250142447219e-05 6.330442453751956e-06 3.3141568710088547e-09 0.04971917876670023 2.6029327197013886e-05 0.2552166662214283 5.847113020952953e-05']
['59907.07419359618 0.3049295051802079 5.236552480412716e-05 0.025875262288428763 1.3536797466102499e-05 6.33565522615807e-06 3.3145357390216253e-09 0.049760119785439934 2.6032302819427886e-05 0.25516938539476797 5.847930384412976e-05']
['59907.074333876386 0.3050302342983571 5.2363607151437714e-05 0.025894303646501932 1.3537513069596948e-05 6.34031757425119e-06 3.3147109572269102e-09 0.04979673778173449 2.6033678979994132e-05 0.2552334965166226 5.847819931515921e-05']
['59907.074474156594 0.30495680098340644 5.2358556719655154e-05 0.02588642123636384 1.3537473535057043e-05 6.338387536502029e-06 3.31470127704622e-09 0.0497815793006997 2.6033602952032777e-05 0.25517522168270673 5.847364316022592e-05']
['59907.0746144368 0.3049157298037787 5.2358062426388985e-05 0.02586352609442927 1.3537141788616134e-05 6.332781574945601e-06 3.3146200476832606e-09 0.04973755018159475 2.6032964978107953e-05 0.2551781796221839 5.847291652207063e-05']
['59907.07475471701 0.30508631910882045 5.23689400046321e-05 0.025888252383206384 1.3537047634087658e-05 6.338835899688978e-06 3.3145969935930734e-09 0.04978510073693535 2.6032783911707036e-05 0.2553012183718851 5.8482576169337725e-05']
['59907.074894997226 0.3049873060057924 5.236661166459565e-05 0.025871964894121673 1.3537903502876504e-05 6.334847846768383e-06 3.3148065562828936e-09 0.049753778642541685 2.603442981322405e-05 0.25523352736325067 5.848122393495415e-05']
['59907.075035277434 0.30493554807647716 5.235746536856528e-05 0.025877308299970016 1.3538196108764435e-05 6.336156199774091e-06 3.3148782019343427e-09 0.04976405442301927 2.6034992516854685e-05 0.25517149365345787 5.8473284627881066e-05']
['59907.07517555764 0.3049004047497036 5.236008994632872e-05 0.025863232040368275 1.3539194094236794e-05 6.332709574703534e-06 3.3151225624282808e-09 0.04973698469301592 2.6036911719686143e-05 0.2551634200566877 5.8476489216490784e-05']
['59907.07531583785 0.3050359291906275 5.236286833645378e-05 0.025873736106213206 1.3536997361054153e-05 6.335281534706278e-06 3.3145846840518633e-09 0.04975718481964079 2.6032687232796448e-05 0.2552787443709867 5.847709624272906e-05']
['59907.07545611806 0.30507117116981936 5.236766421481382e-05 0.025872949258538065 1.3537221290138079e-05 6.3350888720955716e-06 3.314639513929723e-09 0.04975567165103474 2.6033117865650152e-05 0.2553154995187846 5.848158240952723e-05']
['59907.07559639827 0.30499020338406835 5.236025231166379e-05 0.02585122059282378 1.3535710650731939e-05 6.329768526626003e-06 3.3142696281932363e-09 0.049713885755430356 2.6030212789869116e-05 0.255276317628638 5.847365218649301e-05']
['59907.075736678475 0.30527723571186666 5.242297725634178e-05 0.02588793328163924 1.3537994925970658e-05 6.338757766470888e-06 3.31482894157112e-09 0.04978448708007547 2.603460562686665e-05 0.25549274863179117 5.8531779697574584e-05']
['59907.07587695868 0.3050745453121375 5.236451535245837e-05 0.025875474025003297 1.3537213019466534e-05 6.3357070706541786e-06 3.3146374888247093e-09 0.04976052697116019 2.603310196051257e-05 0.25531401834097733 5.8478755679172e-05']
['59907.07601723889 0.30510352745683045 5.237797683746251e-05 0.02588594293030627 1.3537060703783469e-05 6.33827042146607e-06 3.314600193757217e-09 0.049780659481358215 2.6032809045737445e-05 0.2553228679754722 5.849067963699506e-05']
['59907.0761575191 0.3050164483401376 5.236954806341959e-05 0.02586993943184105 1.3537133315311868e-05 6.334351904716065e-06 3.314617972962863e-09 0.04974988352277126 2.6032948683292057e-05 0.2552665648173663 5.848319400916585e-05']
['59907.07629779931 0.30503062029701594 5.236339952666731e-05 0.025840318822984498 1.3535410385478313e-05 6.32709918730543e-06 3.314196107117308e-09 0.049692920813431726 2.6029635356689065e-05 0.2553376994835842 5.84762133417647e-05']
['59907.076438079515 0.3050655920972869 5.236500965005862e-05 0.025866956776536932 1.3537342239053445e-05 6.333621590354234e-06 3.3146691287262495e-09 0.04974414764718641 2.6033350459718164e-05 0.25532144445010047 5.847930892041424e-05']
['59907.07657835972 0.30505165469258333 5.2366088029667e-05 0.025882629343728772 1.353705699193135e-05 6.337459077338113e-06 3.314599284896274e-09 0.04977428719947841 2.603280190756029e-05 0.2552773674931049 5.848003035814113e-05']
['59907.07671863993 0.3049309456310746 5.2363009160322627e-05 0.02587605435249475 1.3536903584190063e-05 6.335849166021682e-06 3.314561722434221e-09 0.04976164298556683 2.6032506892673198e-05 0.25516930264550775 5.847714205945011e-05']
['59907.07685892014 0.3050597864084422 5.236639699886216e-05 0.025873955940593087 1.3536292905496421e-05 6.335335361980462e-06 3.314412195460784e-09 0.04975760757806363 2.6031332510570044e-05 0.2553021788303786 5.847965293089812e-05']
['59907.07699920035 0.30507645984828546 5.2364960975731196e-05 0.025872084598659133 1.3535423647072921e-05 6.334877156874302e-06 3.314199354268593e-09 0.04975400884357526 2.602966085975562e-05 0.2553224510047102 5.8477622920769826e-05']
['59907.077139480556 0.30500432951253087 5.23623555825801e-05 0.025868755818313532 1.3536984230539568e-05 6.334062092495118e-06 3.314581468996015e-09 0.04974760734291064 2.6032661981806862e-05 0.25525672216962025 5.8476625860386046e-05']
['59907.077279760764 0.30535032899676146 5.24541612571189e-05 0.025908944433273032 1.3541906905114869e-05 6.343902425920997e-06 3.3157868043681563e-09 0.049824893140909675 2.6042128663682443e-05 0.2555254358558518 5.856305574783153e-05']
['59907.07742004097 0.30503186388693626 5.2362365864236806e-05 0.025887837515372766 1.353758751523152e-05 6.338734317740594e-06 3.3147291855203472e-09 0.049784302914178395 2.6033822144676004e-05 0.25524756097275786 5.8477151558201044e-05']
['59907.07756032118 0.3049846667279096 5.236147763831434e-05 0.025883676317939218 1.3537242496108672e-05 6.337715432908701e-06 3.314644706291328e-09 0.049776300611421576 2.6033158646362834e-05 0.255208366116488 5.8476060824703205e-05']
['59907.07770060139 0.305056705913525 5.236458035090371e-05 0.025874839820664422 1.3535984668828936e-05 6.335551783338083e-06 3.314336722554211e-09 0.049759307347431586 2.6030739747747955e-05 0.25529739856609346 5.847776233014765e-05']
['59907.0778408816 0.3051014121163922 5.236687087368654e-05 0.02588627753461146 1.3538216874117328e-05 6.3383523505878395e-06 3.3148832864090473e-09 0.04978130295117589 2.6035032450225633e-05 0.2553201091652163 5.84817243229512e-05']
['59907.077981161805 0.30495644204419947 5.236578989705488e-05 0.025881319586175296 1.3537798260421019e-05 6.337138378278286e-06 3.314780787272103e-09 0.0497717684349525 2.6034227423886576e-05 0.25518467360924696 5.848039799027656e-05']
['59907.07812144201 0.3049963970872299 5.236103638750337e-05 0.025877105524378614 1.3536252625622714e-05 6.3361065494083835e-06 3.314402332782311e-09 0.049763664469958876 2.603125504927445e-05 0.25523273261727103 5.8474818264051314e-05']
['59907.07826172222 0.30503039071902105 5.2370837317725194e-05 0.025873823238637614 1.353717018169166e-05 6.335302869407891e-06 3.3146269998345213e-09 0.04975735238199542 2.6033019580176273e-05 0.25527303833702564 5.848438004990289e-05']
['59907.07840200243 0.3050507935065153 5.2362748566382374e-05 0.02586921635812304 1.3535831741968642e-05 6.334174857398462e-06 3.314299277837677e-09 0.04974849299639046 2.6030445657632007e-05 0.25530230051012487 5.847599112936105e-05']
['59907.07854228264 0.3049966993024555 5.237280485566187e-05 0.02583602973349989 1.3535145651276538e-05 6.3260489876241405e-06 3.3141312859529727e-09 0.04968467256442287 2.6029126252454882e-05 0.2553120267380326 5.84844090498953e-05']
['59907.078682562846 0.3050413958879745 5.23637469784037e-05 0.025875463133943608 1.3536989159330723e-05 6.3357044039372785e-06 3.3145826758290546e-09 0.04976050602681464 2.603267146025139e-05 0.2552808898611599 5.847787599576159e-05']
['59907.078822843054 0.30503088871237566 5.237082398896219e-05 0.025879665542552048 1.3536331128177689e-05 6.3367333794802405e-06 3.3144215544279564e-09 0.049768587581830864 2.6031406015726328e-05 0.2552623011305448 5.848364988984913e-05']
['59907.07896312326 0.3050096558625013 5.236039716744317e-05 0.02586669645732887 1.3537998961573719e-05 6.3335578502177036e-06 3.314829929703698e-09 0.049743647033324755 2.603461338764177e-05 0.25526600882917655 5.847574100237095e-05']
['59907.07910340347 0.30504688529306756 5.2372489887846475e-05 0.025895566177710497 1.3537509365550375e-05 6.34062670976296e-06 3.314710050277185e-09 0.04979916572636634 2.6033671856827645e-05 0.2552477195667012 5.8486150218676225e-05']
['59907.07924368368 0.30503806896191077 5.2363495861561406e-05 0.02588306942816549 1.3536102903944811e-05 6.337566833666546e-06 3.314365672866732e-09 0.04977513351570287 2.603096712297079e-05 0.25526293544620793 5.8476892429411336e-05']
['59907.079383963886 0.3049775620297094 5.2360637198190825e-05 0.025870641728996575 1.3538387035129885e-05 6.3345238648142505e-06 3.3149249509725397e-09 0.04975123409422418 2.6035359682942092e-05 0.2552263279354852 5.847628819975436e-05']
['59907.079524244095 0.3051426899185525 5.238202703432967e-05 0.025866016503754655 1.3536039090736882e-05 6.3333913610293816e-06 3.314350047962922e-09 0.04974233943029742 2.6030844405263237e-05 0.25540035048825505 5.849343225248685e-05']
['59907.0796645243 0.30491878438160935 5.2353815516082126e-05 0.025880575860182116 1.3538867210242785e-05 6.336956274173485e-06 3.3150425236537207e-09 0.04977033819265792 2.6036283096620744e-05 0.25514844618895144 5.847059121113229e-05']
['59907.07980480451 0.3050294822768991 5.236323849999633e-05 0.025867025598871076 1.3535824492546854e-05 6.333638441761425e-06 3.3142975027895045e-09 0.049744279997828995 2.603043171643626e-05 0.2552852022790701 5.847642363851904e-05']
['59907.07994508472 0.30495015950292625 5.23606603531363e-05 0.025877488151679628 1.3538665401936042e-05 6.33620023714118e-06 3.314993110131297e-09 0.049764400291691595 2.603589500372316e-05 0.25518575921123465 5.847654727547956e-05']
['59907.08008536493 0.305051756193394 5.23645299377156e-05 0.025901863685034113 1.3546552734588616e-05 6.3421686781009775e-06 3.3169243531766315e-09 0.0498112763173733 2.6051062951131956e-05 0.25524047987602067 5.8486766678298716e-05']
['59907.08022564514 0.3050487562312109 5.236455046260591e-05 0.02582901148111388 1.3534419518186248e-05 6.3243305421486015e-06 3.3139534895365693e-09 0.049671175925219004 2.6027729842665863e-05 0.2553775803059919 5.847639580132825e-05']
['59907.08036592535 0.3050015745617153 5.2362943591902196e-05 0.025885343776491338 1.354560787803299e-05 6.338123716402502e-06 3.316693001497646e-09 0.04977950726248335 2.6049245919294213e-05 0.2552220672992319 5.848453705529862e-05']
['59907.08050620556 0.3051124229989972 5.237545004085735e-05 0.02587868560519547 1.35368032684731e-05 6.336493438135287e-06 3.314537159753876e-09 0.04976670308691437 2.6032313977832887e-05 0.2553457199120828 5.848819657010137e-05']
['59907.08064648577 0.30495831290129366 5.236532452671151e-05 0.025872519692389177 1.3536586824850196e-05 6.334983691209448e-06 3.314484162719282e-09 0.04975484556228688 2.6031897740096534e-05 0.2552034673390068 5.8478944182830944e-05']
['59907.080786765975 0.3050317514059866 5.2364056847650755e-05 0.02589447508709917 1.3537533820776629e-05 6.3403595521258e-06 3.314716038231251e-09 0.04979706747519071 2.6033718886108905e-05 0.2552346839307959 5.847861975615484e-05']
['59907.08092704618 0.3050507425712772 5.236283127257736e-05 0.025905889143301317 1.3539352077077298e-05 6.343154326687801e-06 3.3151612451205728e-09 0.049819017583271764 2.6037215532840956e-05 0.2552317249880054 5.8479079093159634e-05']
['59907.08106732639 0.30503451597153053 5.237274348055444e-05 0.02588677852020125 1.353734152418366e-05 6.338475018792505e-06 3.314668953687696e-09 0.049782266385002404 2.603334908496858e-05 0.25525224958652815 5.848623363031502e-05']
['59907.0812076066 0.305032819639974 5.236310582472126e-05 0.025851327249305944 1.3534444626133901e-05 6.32979464186654e-06 3.313959637311923e-09 0.0497140908640499 2.602777812718058e-05 0.2553187287759241 5.847512364970849e-05']
['59907.08134788681 0.30506591718829335 5.2365284426527406e-05 0.025884738772211778 1.353771352817347e-05 6.337975578830681e-06 3.3147600402628164e-09 0.049778343792714966 2.603406447725668e-05 0.2552875733955784 5.8479872830548045e-05']
['59907.081488167016 0.3050870726707842 5.237229357010043e-05 0.025882303755352387 1.3536886864724615e-05 6.337379355800397e-06 3.3145576286102644e-09 0.04977366106798536 2.603247473985503e-05 0.25531341160279886 5.848544156346923e-05']
['59907.081628447224 0.30507779451963185 5.2373555981739714e-05 0.02603905033558756 1.360946288699974e-05 6.375759345119133e-06 3.3323281404487775e-09 0.050075096799206846 2.617204401346104e-05 0.255002697720425 5.854882794740613e-05']
['59907.08176872743 0.3049922981839695 5.2364385679012865e-05 0.025895176410061768 1.3537084211668298e-05 6.3405312736891875e-06 3.3146059497511737e-09 0.04979841617319571 2.6032854253208265e-05 0.2551938820107738 5.847852929160575e-05']
['59907.08190900764 0.3050482947132481 5.2370007333344674e-05 0.025879747223548844 1.353772778756401e-05 6.336753379379312e-06 3.3147635317281855e-09 0.049768744660670855 2.603409189916156e-05 0.2552795500525773 5.8484114160244955e-05']
['59907.08204928785 0.3049807071517371 5.2358968613996386e-05 0.0258642549482143 1.353568874274114e-05 6.332960037534337e-06 3.3142642639393456e-09 0.04973895182348904 2.6030170659117578e-05 0.25524175532824805 5.8472483946419145e-05']
['59907.08218956806 0.3051144505758555 5.2369027389012526e-05 0.02591738046941327 1.3540081619108039e-05 6.345968021077644e-06 3.315339876228859e-09 0.04984111628733321 2.6038618498284693e-05 0.2552733342885223 5.8485251841557096e-05']
['59907.082329848265 0.3050952071996702 5.236986327596563e-05 0.025873009244398802 1.3535515409761318e-05 6.335103559859037e-06 3.3142218227077464e-09 0.04975578700845924 2.6029837326464076e-05 0.255339420191211 5.848209136808905e-05']
['59907.08247012847 0.3050558313096216 5.2373363889118505e-05 0.025912150344673757 1.3539172444708175e-05 6.344687405377213e-06 3.3151172614598264e-09 0.049831058355141844 2.603687008597726e-05 0.25522477295447976 5.848835652449195e-05']
['59907.08261040868 0.30505031219524403 5.2362987789069274e-05 0.025874901919254997 1.3544861527435993e-05 6.335566988411389e-06 3.3165102547487358e-09 0.04975942676779807 2.6047810629684604e-05 0.25529088542744593 5.848393735717636e-05']
['59907.08275068889 0.3050585361271346 5.2363386885176246e-05 0.02587236468618623 1.3538011279430321e-05 6.3349457373580505e-06 3.314832945777185e-09 0.049754547473435065 2.6034637075827546e-05 0.2553039886536996 5.847842861907886e-05']
['59907.0828909691 0.30495533057811985 5.2360510979341176e-05 0.025881646691945655 1.3536708368842757e-05 6.337218471355619e-06 3.314513923222696e-09 0.04977239748451088 2.6032131478543765e-05 0.25518293309360895 5.847473795865952e-05']
['59907.083031249305 0.30541325471293834 5.244320752998153e-05 0.025875283636242422 1.3536917607574047e-05 6.335660453250483e-06 3.3145651561124976e-09 0.04976016083892774 2.603253386071932e-05 0.2556530938740106 5.8548978088795105e-05']
['59907.08317152951 0.3049966020265775 5.2371870214120155e-05 0.025885830441875493 1.3543753925935471e-05 6.338242878250994e-06 3.3162390543582987e-09 0.04978044315745287 2.6045680626798986e-05 0.25521615886912463 5.849094176911377e-05']
['59907.08331180972 0.30504958681611277 5.237161408237569e-05 0.025908512253878753 1.3539725611984954e-05 6.343796605171918e-06 3.315252706546682e-09 0.049824062026689916 2.6037933869201836e-05 0.25522552478942284 5.8487263243976636e-05']
['59907.08345208993 0.304982778075778 5.2360224749173394e-05 0.025883098673031926 1.353739561211007e-05 6.337573994382012e-06 3.3146821973197725e-09 0.049775189755830625 2.6033453100211677e-05 0.2552075883199474 5.847507003933276e-05']
['59907.08359237014 0.3049887481978426 5.23599990796823e-05 0.025910476221465258 1.3545234618661369e-05 6.344277490017247e-06 3.316601607537571e-09 0.04982783888743319 2.6048528112810328e-05 0.2551609093104094 5.848158103598261e-05']
['59907.083732650346 0.3049993131802021 5.235964074203105e-05 0.02592204945213524 1.3542442055029722e-05 6.347111239045971e-06 3.3159178378362243e-09 0.04985009510026008 2.6043157798134085e-05 0.25514921807994206 5.8478868377671865e-05']
['59907.083872930554 0.3049820030209296 5.235991289216636e-05 0.025857881002259747 1.3535731768461634e-05 6.331399352910234e-06 3.3142747989487253e-09 0.0497266942351149 2.603025340088776e-05 0.2552553087858147 5.847336633194362e-05']
['59907.08401321076 0.30501635364316176 5.2374201166640356e-05 0.02587240887317906 1.3536911068365321e-05 6.334956556709326e-06 3.314563554962663e-09 0.04975463244842127 2.6032521285317928e-05 0.2552617211947405 5.848717049331625e-05']
['59907.08415349097 0.3050317576911236 5.236261475656981e-05 0.025861732841997984 1.3537574499904417e-05 6.332342490347677e-06 3.3147259986685864e-09 0.049734101619226895 2.6033797115200804e-05 0.2552976560718967 5.847736328170398e-05']
['59907.08429377118 0.3049229969039695 5.235718326159621e-05 0.025900947360412926 1.3538017710380537e-05 6.341944312573379e-06 3.3148345204195167e-09 0.049809514154640244 2.60346494430395e-05 0.25511348274932927 5.847287927501371e-05']
['59907.08443405139 0.3050180578346958 5.2362442077983633e-05 0.025871504085765804 1.3537328271869378e-05 6.334735016110454e-06 3.3146657088087336e-09 0.049752892472626556 2.6033323599748807e-05 0.2552651653620693 5.847699785402316e-05']
['59907.084574331595 0.3051313808316237 5.237042478450617e-05 0.02584735565026379 1.3535949381998479e-05 6.328822180913405e-06 3.3143280824411446e-09 0.049706453173584214 2.6030671888458617e-05 0.2554249276580395 5.848296564876141e-05']
['59907.0847146118 0.3051007150635746 5.236711174472795e-05 0.02589621316169742 1.3537528525370488e-05 6.340785126223914e-06 3.314714741631154e-09 0.049800409926341195 2.6033708702635558e-05 0.2553003051372334 5.8481350713697665e-05']
['59907.08485489201 0.30497229193974135 5.236145398471991e-05 0.02588194611153616 1.3537044773344355e-05 6.337291785367753e-06 3.3145962931293234e-09 0.049772973291415695 2.603277841027761e-05 0.2551993186483257 5.847587036678083e-05']
['59907.08499517222 0.30505472846596293 5.23665626962575e-05 0.025874460045353292 1.353695877540962e-05 6.335458793925728e-06 3.314575236211771e-09 0.0497585770102948 2.6032613029633882e-05 0.25529615145566814 5.8480371320398876e-05']
['59907.08513545243 0.30501595893429023 5.236437193690577e-05 0.025880666973514273 1.353812507314384e-05 6.336978583615322e-06 3.314860808595645e-09 0.04977051341060437 2.6034855909891998e-05 0.2552454455236859 5.847940809033076e-05']
['59907.085275732636 0.3049927754671431 5.236185478819075e-05 0.02588817791293111 1.3536734636976227e-05 6.338817665362174e-06 3.3145203550739076e-09 0.04978495752486752 2.6032181994185053e-05 0.2552078179422756 5.8475963747833584e-05']
['59907.085416012844 0.3050664316138275 5.236787966120988e-05 0.025838769990435557 1.3535250822275974e-05 6.326719949834376e-06 3.3141570374674804e-09 0.04968994228929915 2.6029328504376873e-05 0.2553764893245284 5.8480088599451746e-05']
['59907.08555629305 0.3050452013482914 5.2363634893941416e-05 0.02586187738176117 1.35389715378743e-05 6.332377881451961e-06 3.3150680686664232e-09 0.04973437958030995 2.6036483726681347e-05 0.2553108217679814 5.8479472844372855e-05']
['59907.08569657327 0.3050137770968758 5.236260364834608e-05 0.025864584191642316 1.3536598911381062e-05 6.333040654025183e-06 3.314487122151793e-09 0.04973958498392753 2.6031920983425122e-05 0.2552741921129483 5.847651811557418e-05']
['59907.085836853475 0.3051152589795134 5.2370831184067905e-05 0.025876549317576512 1.353806812518073e-05 6.335970360082328e-06 3.314846864672833e-09 0.0497625948414933 2.603474639457833e-05 0.2553526641380201 5.848514323091078e-05']
['59907.08597713368 0.305079068987441 5.237343440740936e-05 0.025878432533527583 1.3537360710039697e-05 6.3364314725862085e-06 3.3146736514166585e-09 0.04976621641062997 2.6033385980845572e-05 0.2553128525768111 5.8486868759191555e-05']
['59907.08611741389 0.30504075176840706 5.2364241157566134e-05 0.02591754098820634 1.3539443806876486e-05 6.3460073247074536e-06 3.31518370550668e-09 0.04984142497731988 2.6037391936300934e-05 0.2551993267910872 5.848042006391791e-05']
['59907.0862576941 0.3050741748864601 5.236639912700205e-05 0.02585284042649967 1.3536072553451107e-05 6.3301651489898564e-06 3.314358241434273e-09 0.049717000820191676 2.6030908756636744e-05 0.25535717406626846 5.847946621015644e-05']
['59907.08639797431 0.3050743195179994 5.237292127636556e-05 0.025902970558321577 1.3538605500982639e-05 6.3424397001857095e-06 3.3149784431577125e-09 0.04981340491984919 2.6035779809581997e-05 0.2552609145981502 5.848747484131472e-05']
['59907.086538254516 0.30501112900640637 5.2362953158501004e-05 0.025847102918837305 1.3536613571709088e-05 6.328760298673713e-06 3.3144907117882125e-09 0.04970596715161021 2.603194917636363e-05 0.2553051618547962 5.847684363404158e-05']
['59907.086678534724 0.3049722958453313 5.235906479993678e-05 0.0258641565236344 1.3536443775732842e-05 6.33293593790601e-06 3.314449136605233e-09 0.049738762545450774 2.6031622645640083e-05 0.2552335332998805 5.8473216469499776e-05']
['59907.08681881493 0.3049074149244043 5.2357279541074906e-05 0.025862184729957976 1.3538002982109944e-05 6.3324531368131484e-06 3.3148309141471043e-09 0.049734970634534574 2.6034621119442204e-05 0.25517244428986974 5.847295287374469e-05']
['59907.08695909514 0.30499487058839336 5.2365049130439054e-05 0.025853722019670768 1.3536680795096494e-05 6.330381010391358e-06 3.314507171687285e-09 0.04971869619167456 2.6032078452108644e-05 0.2552761743967188 5.847877802220251e-05']
['59907.08709937535 0.3050370737356437 5.2364608984669295e-05 0.025881451993745315 1.3537217830398795e-05 6.337170798769472e-06 3.314638666799556e-09 0.04977202306489484 2.603311121230538e-05 0.2552650506707489 5.84788436403249e-05']
['59907.08723965556 0.3051016121961191 5.237256207563723e-05 0.02589095995279385 1.3538982667435777e-05 6.339498858279149e-06 3.3150707937813824e-09 0.04979030760152664 2.6036505129684187e-05 0.25531130459459245 5.848747607594762e-05']
['59907.087379935765 0.30502214544080863 5.2363700381209775e-05 0.025902502686641758 1.3538109435244137e-05 6.342325140046362e-06 3.3148569795971263e-09 0.04981250516661877 2.603482583700796e-05 0.25520964027418985 5.8478793369703224e-05']
['59907.08752021597 0.305051025054841 5.2364043293115114e-05 0.025901434376351826 1.3538462972570847e-05 6.342063560256518e-06 3.3149435445403776e-09 0.049810450723753515 2.60355057164824e-05 0.2552405743310875 5.847940310841264e-05']
['59907.08766049618 0.30506343028962446 5.236597611129812e-05 0.0259154915991429 1.3539264697707931e-05 6.345505524092431e-06 3.3151398499535593e-09 0.049837483844505585 2.6037047495592178e-05 0.25522594644511887 5.8481820221131694e-05']
['59907.08780077639 0.304965194176385 5.236020855902635e-05 0.025894330915784143 1.3536902699323523e-05 6.340324251237434e-06 3.314561505771323e-09 0.04979679022266182 2.603250519100678e-05 0.2551684039537232 5.8474633533392335e-05']
['59907.0879410566 0.30500964700181776 5.236478269827524e-05 0.025859753679754356 1.3536102841296506e-05 6.33185788503344e-06 3.314365657527059e-09 0.04973029553798915 2.603096700249328e-05 0.25527935146382863 5.847804468450087e-05']
['59907.088081336806 0.3049066826058149 5.235636392151389e-05 0.025869216781749672 1.3536677286450524e-05 6.334174961125036e-06 3.314506312582132e-09 0.049748493811057067 2.603207170471255e-05 0.2551581887947578 5.8470997941896776e-05']
['59907.088221617014 0.3050280970878901 5.236271344637991e-05 0.02587770904650822 1.3540046784268389e-05 6.336254324070217e-06 3.31533134678744e-09 0.049764825089438885 2.6038551508208443e-05 0.2552632719984512 5.847956843302898e-05']
['59907.08836189722 0.30499833860416836 5.2362207702357854e-05 0.025897833833508882 1.3538145736203367e-05 6.341181953808412e-06 3.3148658680234347e-09 0.049803526602901695 2.6034895646544938e-05 0.25519481200126665 5.847748786320552e-05']
['59907.08850217743 0.3049824635288634 5.236245675347988e-05 0.02588174884352271 1.3535862588667037e-05 6.337243483553208e-06 3.314306830767719e-09 0.049772593929851366 2.603050497820584e-05 0.25520986959901204 5.847575623008607e-05']
['59907.08864245764 0.304977343141867 5.236062292139189e-05 0.02589531243686266 1.35374692684004e-05 6.340564580362656e-06 3.314700232339304e-09 0.04979867776319743 2.6033594746923846e-05 0.25517866537866957 5.847548963594277e-05']
['59907.08878273785 0.30499394191814505 5.236247259832225e-05 0.025886270550402483 1.35400467504213e-05 6.338350640478021e-06 3.315331338499853e-09 0.04978128952000478 2.6038551443117884e-05 0.2552126523981403 5.8479352748349946e-05']
['59907.088923018055 0.30498832724357783 5.2361493361135164e-05 0.02768679190894928 2.0303266164951494e-05 6.779215062563032e-06 4.971331032403784e-09 0.05324383059413323 3.9044742624906726e-05 0.2517444966494446 6.531629133419479e-05']
['59907.08906329826 0.30502664482217945 5.237514256853554e-05 0.025866763780706483 1.3538205362583228e-05 6.333574334599754e-06 3.3148804677666556e-09 0.049743776501358625 2.6035010312660055e-05 0.2552828683208208 5.848912139068888e-05']
['59907.08920357847 0.30508933285919804 5.23753713888961e-05 0.02588730192095319 1.3547453004161307e-05 6.338603175433874e-06 3.317144787565261e-09 0.049783272924909985 2.6052794238771746e-05 0.25530605993428807 5.84972445143579e-05']
['59907.08934385868 0.30509029023948325 5.236653005560971e-05 0.025887726037487332 1.3538081351174935e-05 6.338707021961344e-06 3.3148501031072254e-09 0.049784088533629485 2.603477182918257e-05 0.2553062017058538 5.8481303117002044e-05']
['59907.08948413889 0.3051031102267508 5.2367329967880177e-05 0.025898697525494115 1.3538097469227606e-05 6.341393432037272e-06 3.314854049673003e-09 0.049805187549027144 2.6034802825437706e-05 0.25529792267772367 5.848203319075236e-05']
['59907.089624419095 0.3049838029303027 5.236164302065106e-05 0.02588312517270129 1.3538430478775703e-05 6.337580482925658e-06 3.3149355883125054e-09 0.049775240716733254 2.6035443228414814e-05 0.25520856221356947 5.847722602793421e-05']
['59907.0897646993 0.30499052371433766 5.236019491879064e-05 0.02590860400681725 1.3537769820082884e-05 6.343819071223771e-06 3.314773823548415e-09 0.04982423847464856 2.6034172730928626e-05 0.2551662852396891 5.84753637159922e-05']
['59907.08990497951 0.3049867781075137 5.235999844352234e-05 0.025895804146803342 1.3536775031196778e-05 6.340684977389774e-06 3.3145302457506357e-09 0.0497996233592372 2.6032259675378423e-05 0.25518715474827647 5.847433608697063e-05']
['59907.09004525972 0.3050971412409198 5.236870024898762e-05 0.025879980205948394 1.3536524341675363e-05 6.336810425995531e-06 3.314468863479075e-09 0.04976919270374692 2.603177758014493e-05 0.2553279485371729 5.8481913526751605e-05']
['59907.09018553993 0.3050876991298559 5.236632569090517e-05 0.025899577440119344 1.3537262651020593e-05 6.341608882440509e-06 3.314649641297266e-09 0.049806879692537206 2.6033197405808835e-05 0.2552808194373187 5.8480419231874235e-05']
['59907.090325820136 0.3050000254462206 5.2371402767157907e-05 0.025865978895566348 1.3536944263975918e-05 6.333382152523121e-06 3.314571683032687e-09 0.04974226710685837 2.6032585123030615e-05 0.25525775833936226 5.848469300584308e-05']
['59907.090466100344 0.3051045917921412 5.236792206345536e-05 0.0258860949650613 1.3537262532304828e-05 6.338307647747277e-06 3.3146496122292646e-09 0.04978095185588712 2.6033197177509285e-05 0.2553236399362541 5.8481848607300476e-05']
['59907.09060638055 0.30497004446206255 5.235938680199145e-05 0.025866761141349035 1.353682118069818e-05 6.333573688343163e-06 3.3145415456295115e-09 0.04974377142567123 2.603234842441958e-05 0.25522627303639134 5.847382791275886e-05']
['59907.09074666076 0.30510983215341153 5.2367762022347846e-05 0.025875290862736655 1.3538080417991783e-05 6.335662222684757e-06 3.3148498746138232e-09 0.04976017473603203 2.6034770034599586e-05 0.25534965741737947 5.848240547364431e-05']
['59907.09088694097 0.30503460844540947 5.236231721146673e-05 0.025878261234719632 1.3536750814584362e-05 6.336389529429238e-06 3.3145243162220648e-09 0.04976588698984545 2.6032213104969927e-05 0.255268721455564 5.847639167131324e-05']
['59907.091027221184 0.30508028255680325 5.236722695017215e-05 0.02586614058443494 1.3536233091229571e-05 6.333421742650319e-06 3.3143975497127277e-09 0.049742578046990275 2.6031217483133792e-05 0.25533770450981297 5.848034492122158e-05']
['59907.09116750139 0.30512023531593074 5.2368598942229937e-05 0.02586676056717615 1.3541223039524822e-05 6.333573547754773e-06 3.3156193573080542e-09 0.049743770321492596 2.6040813537547737e-05 0.25537646499443817 5.8485845508716514e-05']
['59907.0913077816 0.3049625422897223 5.2358528704230626e-05 0.025847068385386463 1.3541994360696972e-05 6.328751843028477e-06 3.315808218196145e-09 0.049705900741127816 2.604229684749418e-05 0.2552566415485945 5.847748928574779e-05']
['59907.09144806181 0.305100342946095 5.236734859830049e-05 0.02587521477022861 1.3538192268763061e-05 6.335643591148161e-06 3.3148772616955733e-09 0.04976002840428579 2.603498513223666e-05 0.2553403145418092 5.848213103206575e-05']
['59907.09158834202 0.30512046881434335 5.236815922077535e-05 0.025930433401469673 1.353957579002619e-05 6.349164080552444e-06 3.315216022076957e-09 0.04986621807974938 2.6037645750050364e-05 0.25525425073459396 5.84840413820522e-05']
['59907.091728622225 0.30502654778791843 5.2361576537022566e-05 0.025876651967103977 1.3537484343791657e-05 6.335995494204946e-06 3.3147039236055163e-09 0.049762792244430726 2.6033623738060882e-05 0.2552637555434877 5.847635643896941e-05']
['59907.09186890243 0.3051171367025991 5.237053495711169e-05 0.02590487889232257 1.3539765324504818e-05 6.342906962938522e-06 3.3152624303064343e-09 0.04981707479292802 2.6038010239432346e-05 0.2553000619096711 5.8486330957949836e-05']
['59907.09200918264 0.3050735200084359 5.23639322468063e-05 0.02588652138137173 1.3537718726986817e-05 6.338412057383615e-06 3.3147613132118043e-09 0.04978177188725333 2.603407447497465e-05 0.2552917481211826 5.8478666487161343e-05']
['59907.09214946285 0.3050376056342885 5.236966688468971e-05 0.025861551775552036 1.3536377792508937e-05 6.33229815554783e-06 3.314432980364855e-09 0.04973375341452315 2.603149575482488e-05 0.25530385221976537 5.8482653674802e-05']
['59907.09228974306 0.30503236551792684 5.236721009641522e-05 0.02593064254791466 1.3539680422843484e-05 6.349215290845597e-06 3.3152416418155453e-09 0.04986662028445127 2.6037846967006703e-05 0.25516574523347557 5.8483281097757784e-05']
['59907.092430023265 0.3050298359118701 5.236319955300008e-05 0.025847876652698075 1.353836411638316e-05 6.328949750317681e-06 3.3149193392312613e-09 0.04970745510134246 2.6035315608429155e-05 0.25532238081052766 5.8478562963344295e-05']
['59907.09257030347 0.3050222753837507 5.2364426285430805e-05 0.025849087020294502 1.3534533068617564e-05 6.329246113372957e-06 3.313981292786468e-09 0.04970978273133558 2.602794820887993e-05 0.2553124926524151 5.8476381797837426e-05']
['59907.09271058368 0.3050500953613656 5.238932814424345e-05 0.025867387792378904 1.3537180657711614e-05 6.333727126203159e-06 3.314629564927382e-09 0.04974497652380559 2.603303972636849e-05 0.25530511883756 5.85009475205308e-05']
['59907.09285086389 0.305063184202432 5.236587006468507e-05 0.025884799788208193 1.3536872667673325e-05 6.337990518826738e-06 3.3145541524088947e-09 0.049778461131169606 2.603244743783332e-05 0.2552847230712624 5.847967738655057e-05']
['59907.0929911441 0.304959823519129 5.235889469449538e-05 0.02595014730861948 1.3547350015649418e-05 6.353991104814822e-06 3.3171195704410318e-09 0.04990412943965285 2.605259618394119e-05 0.25505569407947615 5.8482404375613384e-05']
['59907.093131424306 0.30506628050812357 5.236771571132696e-05 0.025858062730225787 1.3535976466479816e-05 6.331443849685762e-06 3.3143347141782e-09 0.049727043711972674 2.603072397399965e-05 0.2553392367961509 5.8480562919938794e-05']
['59907.093271704514 0.3049786757249083 5.2356938974810596e-05 0.025860401200918086 1.3535871285828394e-05 6.332016433024154e-06 3.314308960300367e-09 0.04973154077099633 2.6030521703516145e-05 0.25524713495391194 5.847082280051535e-05']
['59907.09341198472 0.3051165002812569 5.2369510973641945e-05 0.025840678620475642 1.3535375982568304e-05 6.327187285073473e-06 3.3141876834354855e-09 0.04969361273168393 2.602956919724674e-05 0.255422887549573 5.848165654470349e-05']
['59907.09355226493 0.30488850956893576 5.235501197949821e-05 0.02586998692172284 1.3536328242385569e-05 6.3343635327921166e-06 3.314420847830909e-09 0.049749974849467006 2.6031400466126096e-05 0.25513853471946873 5.846948853548516e-05']
['59907.09369254514 0.30527034154491645 5.2376154566504955e-05 0.025905087537321216 1.3538904728078367e-05 6.342958050450655e-06 3.3150517100367777e-09 0.049817476033310035 2.6036355246304554e-05 0.2554528655116064 5.8490626271960775e-05']
['59907.09383282535 0.3049879481618643 5.236157226817234e-05 0.025881792883543274 1.3543956201096768e-05 6.337254266917772e-06 3.316288582191814e-09 0.049772678622198606 2.6046069617493788e-05 0.2552152695396657 5.8481894573571806e-05']
['59907.093973105555 0.30498273555566047 5.236979634653346e-05 0.02588741659983583 1.3538897161330344e-05 6.338631254989321e-06 3.3150498572900838e-09 0.04978349346122275 2.603634069486605e-05 0.25519924209443773 5.8484926315731366e-05']
['59907.09411338576 0.30502449129511117 5.236442389989753e-05 0.0258397210959448 1.3535233285547582e-05 6.326952831593142e-06 3.3141527435336204e-09 0.04969177133835539 2.60292947798992e-05 0.25533271995675577 5.847697903540373e-05']
['59907.09425366597 0.30511533343886876 5.236651269200771e-05 0.0258917605847112 1.3536830365206691e-05 6.339694896013369e-06 3.314543794490941e-09 0.04979184727829077 2.6032366086935943e-05 0.255323486160578 5.848021661730108e-05']
['59907.09439394618 0.3051675507822344 5.2371171691805884e-05 0.025886229319681466 1.3537063897234174e-05 6.33834054498101e-06 3.3146009756856248e-09 0.04978121023015667 2.6032815186988798e-05 0.2553863405520777 5.848458849075134e-05']
['59907.09453422639 0.3049700675868436 5.2364386139951084e-05 0.025854501156082867 1.3537510241174721e-05 6.330571784870325e-06 3.3147102646770975e-09 0.049720194530928595 2.603367354072062e-05 0.255249873055915 5.847889443071507e-05']
['59907.094674506596 0.3050416951158139 5.237075829981614e-05 0.025867259326182612 1.3537290699431902e-05 6.333695670772143e-06 3.314656509056198e-09 0.049744729473428104 2.603325134506135e-05 0.2552969656423858 5.848441245744801e-05']
['59907.094814786804 0.3050886042073056 5.236993407124787e-05 0.025872087484134207 1.3536876632693998e-05 6.3348778633937195e-06 3.3145551232591093e-09 0.049754014392565785 2.6032455062873072e-05 0.25533458981473983 5.848331994019624e-05']
['59907.09495506701 0.3050705417862387 5.237079037166399e-05 0.025868411430823007 1.3535565459774887e-05 6.333977767923647e-06 3.314234077641687e-09 0.049746945059275016 2.602993357649017e-05 0.2553235967269637 5.848296440972588e-05']
['59907.09509534722 0.3050340400917593 5.2364970668120435e-05 0.025876406913319727 1.3537238905915473e-05 6.335935491864813e-06 3.314643827219029e-09 0.04976232098715332 2.6033151742145145e-05 0.25527171910460594 5.847918555095196e-05']
['59907.09523562743 0.30517081852634753 5.238207327943288e-05 0.025863989802745194 0.0005857570311081279 6.332895115669651e-06 1.4342481069491025e-07 0.04973844192835614 0.001126455829054092 0.2554323765979914 0.0011276730982031067']
['59907.09537590764 0.3050441655819522 5.236226503116596e-05 0.02585433808274942 1.3535475985456097e-05 6.330531855751703e-06 3.3142121695184326e-09 0.049719880928364275 2.6029761510492496e-05 0.2553242846535879 5.8475253599169474e-05']
['59907.095516187845 0.3050836265068141 5.236670811062925e-05 0.025873093325663274 1.3543353231223643e-05 6.335124147472671e-06 3.3161409427520553e-09 0.04975594870319861 2.604491006004547e-05 0.2553276778036155 5.848597659593025e-05']
['59907.09565646805 0.304980785245475 5.2360540952993676e-05 0.02589532683028902 1.355710313261491e-05 6.3405681046472e-06 3.3195076577881262e-09 0.04979870544286351 2.6071352178105595e-05 0.2551820798026115 5.84922358376301e-05']
['59907.09579674826 0.30498356662485493 5.236204740699046e-05 0.0258665118637773 1.353685985858329e-05 6.333512651792788e-06 3.3145510160550556e-09 0.049743292045725584 2.603242280496787e-05 0.25524027457912934 5.847624343054646e-05']
['59907.09593702847 0.30498558351389443 5.2359893918498446e-05 0.025886851081327045 1.3536292631107863e-05 6.338492785656885e-06 3.3144121282757144e-09 0.049782405925628936 2.603133198289974e-05 0.2552031775882655 5.847382949628277e-05']
['59907.09607730868 0.3050817762682996 5.2364987497277074e-05 0.025867849143065433 1.3536478085550043e-05 6.333840089652789e-06 3.3144575374929317e-09 0.0497458637366643 2.6031688626057776e-05 0.2553359125316353 5.847854930069666e-05']
['59907.096217588885 0.3050479472314978 5.236178434247495e-05 0.025878558744781056 1.3537299422144174e-05 6.336462375886e-06 3.314658644845083e-09 0.04976645912457896 2.603326811950803e-05 0.25528148810691886 5.847638419490425e-05']
['59907.0963578691 0.3051173809874646 5.236804352700616e-05 0.02587616510128596 1.3538905546635754e-05 6.3358762832794694e-06 3.3150519104636303e-09 0.04976185596401146 2.6036356820453375e-05 0.25535552502345316 5.848336395359266e-05']
['59907.09649814931 0.305072100986175 5.236957163242419e-05 0.02588655032994085 1.353766585593722e-05 6.338419145549571e-06 3.3147483675365895e-09 0.04978182755757856 2.6033972799879272e-05 0.25529027342859645 5.848367099206805e-05']
['59907.09663842952 0.30513548756085584 5.236953701602019e-05 0.025881248210550666 1.3537989757699418e-05 6.337120901688323e-06 3.3148276761004814e-09 0.049771631174135904 2.6034595687883496e-05 0.25536385638671993 5.848391727563972e-05']
['59907.096778709725 0.3050200955370943 5.236188001629903e-05 0.02588771767733925 1.3537116165710687e-05 6.338704974947664e-06 3.3146137738185553e-09 0.04978407245642164 2.6032915703289783e-05 0.25523602308067267 5.847631297248389e-05']
['59907.09691898993 0.30500551009422844 5.23620487502107e-05 0.025875502890869557 1.3535728232922649e-05 6.335714138570027e-06 3.314273933258716e-09 0.04976058248244146 2.6030246601774326e-05 0.25524492761178696 5.8475275864835605e-05']
['59907.09705927014 0.3050270124048641 5.2363698261457674e-05 0.02587357199362453 1.3545473808871742e-05 6.335241351122107e-06 3.3166601741596015e-09 0.04975686921850872 2.604898809398412e-05 0.2552701431863553 5.848509789970016e-05']
['59907.09719955035 0.30502295915321737 5.236204218979091e-05 0.02586836621787766 1.353599179432436e-05 6.333966697364042e-06 3.3143384672585476e-09 0.049746858111303194 2.603075345062377e-05 0.25527610104191417 5.8475495615621804e-05']
['59907.09733983056 0.30511536212557144 5.236733846239606e-05 0.02588610581817718 1.3536851903903561e-05 6.338310305173492e-06 3.314549068321825e-09 0.04978097272726381 2.603240750750685e-05 0.25533438939830766 5.848097449831051e-05']
['59907.097480110766 0.30504347679142674 5.236543682709187e-05 0.025879266502052026 1.3537352642271308e-05 6.336635672913975e-06 3.3146716759932448e-09 0.0497678201962539 2.603337046590636e-05 0.2552756565951728 5.8479700340436726e-05']
['59907.097620390974 0.3049878228107573 5.236239041135447e-05 0.025855539539592822 1.3540233240244527e-05 6.330826036975609e-06 3.3153770012340117e-09 0.04972219142229389 2.6038910077393326e-05 0.2552656313884634 5.847943884485967e-05']
['59907.09776067118 0.3050318905509497 5.2362992084932534e-05 0.025876118653134703 1.3537100426786495e-05 6.335864910275054e-06 3.3146099200838104e-09 0.04976176664064366 2.6032885436127874e-05 0.255270123910306 5.847729528814808e-05']
['59907.09790095139 0.30509423635996746 5.236745179172222e-05 0.025878149215364056 1.353710090537564e-05 6.336362101068989e-06 3.3146100372681613e-09 0.049765671568007805 2.6032886356491615e-05 0.25532856479195964 5.848128913770932e-05']
['59907.0980412316 0.3051405640332487 5.237007202603364e-05 0.025885518705700397 1.3536670173450035e-05 6.3381665484768295e-06 3.314504570937227e-09 0.049779843664808456 2.6032058025865455e-05 0.2553607203684402 5.848326674420622e-05']
['59907.09818151181 0.30512758529007034 5.236834821641848e-05 0.025866220137426194 1.3538520226031573e-05 6.333441221499236e-06 3.3149575632654292e-09 0.049742731033511914 2.6035615819291486e-05 0.25538485425655844 5.848330690039511e-05']
['59907.098321792015 0.304952830933342 5.2358838077155874e-05 0.0258659061458152 1.3536634026105232e-05 6.333364339473115e-06 3.3144957201239882e-09 0.04974212720349078 2.603198851174083e-05 0.2552107037298512 5.8473176334668486e-05']
['59907.09846207222 0.3050597960792255 5.2371535293757125e-05 0.025860368255669418 1.353638184099177e-05 6.33200836625619e-06 3.3144339716510937e-09 0.049731477414748884 2.6031503540368793e-05 0.25532831866447664 5.848433025689429e-05']
['59907.09860235243 0.3050513328785952 5.2366816212683e-05 0.025864344296876732 1.353633990637987e-05 6.332981914890161e-06 3.3144237038037542e-09 0.049739123647839875 2.6031422896884366e-05 0.2553122092307553 5.848006855578535e-05']
['59907.09874263264 0.3050895816666318 5.236658203398533e-05 0.02588294160252389 1.35399174330917e-05 6.337535535077755e-06 3.315299674665648e-09 0.04977488769716133 2.603830275594558e-05 0.2553146939694705 5.848292164668586e-05']
['59907.09888291285 0.305109464151908 5.237632157523818e-05 0.025871923654701708 1.3535842082750201e-05 6.334837749141402e-06 3.3143018098169086e-09 0.049753699335964824 2.603046554375039e-05 0.25535576481594313 5.848815434066232e-05']
['59907.099023193055 0.305038222206471 5.236331592478377e-05 0.02585823283292741 1.3538604587221854e-05 6.331485499971603e-06 3.31497821941995e-09 0.049727370832552714 2.603577805234972e-05 0.2553108513739183 5.847887305198288e-05']
['59907.09916347326 0.30508734883569333 5.2367620436273885e-05 0.02587418960701731 1.3536497806299878e-05 6.335392576082692e-06 3.314462366192651e-09 0.04975805693657175 2.603172655057669e-05 0.25532929189912157 5.8480923875753274e-05']
['59907.09930375347 0.30507669906223295 5.236728407286499e-05 0.025883060189935664 1.353645490692421e-05 6.33756457165125e-06 3.314451862119277e-09 0.04977511574987628 2.603164405177733e-05 0.25530158331235664 5.848058595129304e-05']
['59907.09944403368 0.30508719189113365 5.2368439652511016e-05 0.02588129461188536 1.353790672979931e-05 6.337132263229527e-06 3.314807346407071e-09 0.04977172040747185 2.6034436018844827e-05 0.2553154714836618 5.84828635623976e-05']
['59907.09958431389 0.30497538041176 5.2363276611314976e-05 0.02586022470557827 1.3536845901933966e-05 6.331973217476825e-06 3.314547598717011e-09 0.0497312013568813 2.603239596525763e-05 0.2552441790548787 5.8477332165250555e-05']
['59907.099724594096 0.30503151974952336 5.236568713244261e-05 0.025858682815881023 1.3537054303613658e-05 6.331595679989102e-06 3.314598626651583e-09 0.049728236184386584 2.6032796737718577e-05 0.25530328356513676 5.8479669072595105e-05']
['59907.099864874304 0.3049981788190873 5.2361782159804185e-05 0.025885863852250224 1.3539122499509465e-05 6.338251058906823e-06 3.315105032190198e-09 0.04978050740817351 2.6036774037518203e-05 0.2552176714109138 5.8477943134412395e-05']
['59907.10000515451 0.3050520103885047 5.236543109677554e-05 0.025884172200907867 1.354439148589671e-05 6.337836851717402e-06 3.316395163311143e-09 0.04977725423251513 2.6046906703647524e-05 0.2552747561559896 5.848572238401151e-05']
['59907.10014543472 0.3051069335727571 5.236655922135906e-05 0.025910872372426945 1.3542030508034775e-05 6.344374489069191e-06 3.3158170690076697e-09 0.049828600716205665 2.6042366361605338e-05 0.25527833285655144 5.848471056948285e-05']
['59907.10028571493 0.3050466770518453 5.2363634557980366e-05 0.025868270024729967 1.3535493610632162e-05 6.333943144110277e-06 3.3142164851090382e-09 0.04974667312448071 2.602979540506185e-05 0.25530000392736457 5.847649504673733e-05']
['59907.10042599514 0.3051208205607263 5.23687491989028e-05 0.025866294542681835 1.3537199549469275e-05 6.3334594399057395e-06 3.314634190645252e-09 0.04974287412054199 2.6033076056671685e-05 0.2553779464401843 5.8482535355694305e-05']
['59907.100566275345 0.3050643607026571 5.2364379279664074e-05 0.02592178681380935 1.3538224931618158e-05 6.347046931064723e-06 3.3148852593184105e-09 0.049849590026556444 2.6035047945419537e-05 0.25521477067610066 5.847950015915668e-05']
['59907.10070655555 0.3050084402320276 5.2364006104567185e-05 0.025855407449283878 1.353851572909347e-05 6.330793694166989e-06 3.314956462173233e-09 0.049721937402469 2.6035607171333597e-05 0.2552865028295586 5.847941497740164e-05']
['59907.10084683576 0.30507901618617106 5.236647635587036e-05 0.02590225823043631 1.3541657483182859e-05 6.342265284025644e-06 3.315725732470626e-09 0.049812035058531365 2.6041649006120886e-05 0.2552669811276397 5.848431694811803e-05']
['59907.10098711597 0.3050410182820033 5.2363226449721164e-05 0.025992892816563487 1.356658459598064e-05 6.364457503098304e-06 3.321829229730281e-09 0.04998633233954517 2.608958576150123e-05 0.2550546859424581 5.85027689039716e-05']
['59907.10112739618 0.3050473717286025 5.2364665794500575e-05 0.02589791794497089 1.3539165229046882e-05 6.341202548816026e-06 3.315115494678038e-09 0.04980368835571325 2.6036856209705545e-05 0.2552436833728893 5.848056177102457e-05']
['59907.101267676386 0.3051117752297656 5.23666511239785e-05 0.025863666283552217 0.0006474779436322741 6.33281590077927e-06 1.5853740811084925e-07 0.04973781977606195 0.0012451498916005272 0.25537395545370367 0.0012462505842336625']
['59907.101407956594 0.30506868623459377 5.237661632211563e-05 0.02587300396924176 1.35375399880799e-05 6.335102268217007e-06 3.314717548318637e-09 0.04975577686392647 2.6033730746307502e-05 0.2553129093706673 5.848987154991321e-05']
['59907.1015482368 0.30506530419481104 5.2366154186051235e-05 0.025908902158014918 1.3538024067234425e-05 6.343892074665152e-06 3.314836076919084e-09 0.049824811842336385 2.6034661667758512e-05 0.25524049235247465 5.848091750641354e-05']
['59907.10168851702 0.3050348020174872 5.237724077502626e-05 0.025900616921079804 1.3539733928702458e-05 6.341863403260674e-06 3.3152547429262223e-09 0.049808878694384245 2.6037949862889347e-05 0.255225923323103 5.8492308761643296e-05']
['59907.101828797226 0.3050291733386486 5.2362339462662554e-05 0.025881176979198013 1.35371628772752e-05 6.337103460423895e-06 3.3146252113206965e-09 0.04977149419076542 2.603300553322154e-05 0.25525767914788317 5.847676436924201e-05']
['59907.101969077434 0.30507228998692515 5.237232019426609e-05 0.02589941776697605 1.3538922183291391e-05 6.3415697858712254e-06 3.3150559840112935e-09 0.0498065726288001 2.6036388814021906e-05 0.25526571735812503 5.848720770395572e-05']
['59907.10210935764 0.30498566187451026 5.237792506752959e-05 0.025870540584868765 1.3536211224016534e-05 6.334499099294396e-06 3.3143921954434256e-09 0.04975103958628609 2.603117543080103e-05 0.2552346222882242 5.84899062120028e-05']
['59907.10224963785 0.305037934024163 5.236399337519837e-05 0.025895936452635694 1.3537009240376379e-05 6.340717372970111e-06 3.3145875927485603e-09 0.049799877793530185 2.6032710077646887e-05 0.25523805623063284 5.847811382205001e-05']
['59907.10238991806 0.3050434917293383 5.23647674671623e-05 0.02585701596707677 1.3536527838668823e-05 6.331187545794358e-06 3.314469719731067e-09 0.04972503070591687 2.6031784305132354e-05 0.25531846102342143 5.8478394865103076e-05']
['59907.102530198266 0.3050419362612684 5.23660396820525e-05 0.025888345718395177 1.3537047162694227e-05 6.3388587531607645e-06 3.31459687817062e-09 0.04978528022768303 2.6032783005181205e-05 0.2552566560335854 5.847997865062152e-05']
['59907.102670478474 0.3051492483550281 5.2368784719902005e-05 0.02588991279187644 1.3537713004332014e-05 6.339242456992659e-06 3.3147599119982666e-09 0.04978829383053162 2.6034063469869258e-05 0.2553609545244965 5.848300670957866e-05']
['59907.10281075868 0.3051038971653504 5.2368368784729714e-05 0.02589028258015881 1.3540967657509055e-05 6.339333001043484e-06 3.3155568260616142e-09 0.049789004961843866 2.6040322418286647e-05 0.25531489220350656 5.8485420754422e-05']
['59907.10295103889 0.3050045393583597 5.236213885056824e-05 0.02587141133879811 1.3536864625451536e-05 6.334712306666815e-06 3.314552183240662e-09 0.0497527141130733 2.6032431972022186e-05 0.2552518252452864 5.84763293939022e-05']
['59907.1030913191 0.3049815892751136 5.236057884202196e-05 0.025856192625130718 1.3536589107928564e-05 6.330985947424252e-06 3.3144847217396016e-09 0.04972344735602061 2.6031902130631857e-05 0.25525814191909296 5.847469662350026e-05']
['59907.10323159931 0.30506590089816693 5.23772369560389e-05 0.025893805098191704 1.3539658403466218e-05 6.340195502823585e-06 3.3152362502882595e-09 0.04979577903498405 2.6037804622050423e-05 0.2552701218631829 5.84922406878478e-05']
['59907.103371879515 0.3050784651407124 5.236559084834872e-05 0.02587731087099622 1.3536807523585315e-05 6.336156829299521e-06 3.3145382016340947e-09 0.049764059367300426 2.603232216074099e-05 0.25531440577341197 5.847937159355656e-05']
['59907.10351215972 0.3050350176200871 5.2363367733985644e-05 0.025882808705463566 1.353801936828862e-05 6.337502994733027e-06 3.314834926364542e-09 0.04977463212589148 2.6034652631324273e-05 0.2552603854941956 5.847841839583496e-05']
['59907.10365243993 0.30503593227387277 5.236508919929397e-05 0.025878001380576977 1.3535823653267687e-05 6.3363259031657206e-06 3.3142972972888456e-09 0.04976538727034035 2.603043010243786e-05 0.2552705450035324 5.847808015118073e-05']
['59907.10379272014 0.3050855749823174 5.236581761067965e-05 0.025890520896859302 1.3538131075631057e-05 6.339391353783338e-06 3.3148622783272014e-09 0.04978946326319097 2.603486745313665e-05 0.2552961117191265 5.848070773628993e-05']
['59907.10393300035 0.30511202343013366 5.2370775207405174e-05 0.025866423249057465 1.3536153342432641e-05 6.333490954145569e-06 3.3143780229200553e-09 0.049743121632802825 2.6031064120062774e-05 0.25536890179733085 5.848345402801876e-05']
['59907.104073280556 0.3051127575522762 5.2367727907065456e-05 0.025858851473301782 1.3546017542318257e-05 6.331636976392491e-06 3.316793309337659e-09 0.049728560525580355 2.6050033735227417e-05 0.25538419702669585 5.8489171508535904e-05']
['59907.104213560764 0.30501094883423835 5.236665324465437e-05 0.025952333092867395 1.3559250977072736e-05 6.35452630230342e-06 3.3200335655765195e-09 0.04990833287089884 2.60754826482168e-05 0.2551026159633395 5.849954843743091e-05']
['59907.10435384097 0.3050069520912303 5.2362446422754745e-05 0.02587669115113926 1.3536268369369573e-05 6.336005088563263e-06 3.3144061876979035e-09 0.04976286759834474 2.6031285325710716e-05 0.25524408449288555 5.8476094355594776e-05']
['59907.10449412118 0.3050615179125621 5.237417959697336e-05 0.025877815370443646 1.3538195646337062e-05 6.336280357885436e-06 3.3148780887072623e-09 0.04976502955854548 2.6034991627571274e-05 0.2552964883540166 5.84882507646085e-05']
['59907.10463440139 0.30504254703891787 5.236433650744134e-05 0.02588216270394176 1.3536689056429288e-05 6.337344818832349e-06 3.3145091945056705e-09 0.049773389815272615 2.6032094339287092e-05 0.25526915722364524 5.8478146974353564e-05']
['59907.1047746816 0.30503823845260325 5.236398444471774e-05 0.025889880753572996 1.3537886057154378e-05 6.339234612293642e-06 3.3148022846322594e-09 0.04978823221840961 2.603439626375842e-05 0.25525000623419364 5.8478856484588e-05']
['59907.104914961805 0.3050758924456911 5.2365715973750574e-05 0.025902648527223952 1.3540786924793143e-05 6.34236084966107e-06 3.3155125729768203e-09 0.04981278562927684 2.6039974855371428e-05 0.2552631068164143 5.848289065967834e-05']
['59907.10505524201 0.3051506253113032 5.23747459114603e-05 0.025843345200225014 1.3534885767417963e-05 6.327840207147721e-06 3.3140676524134003e-09 0.04969874076966349 2.6028626475803778e-05 0.2554518845416397 5.8485924849547694e-05']
['59907.10519552222 0.30507756982269285 5.237608408952446e-05 0.02585405443752062 1.3535601182711308e-05 6.330462404151321e-06 3.3142428245369377e-09 0.049719335456770423 2.6030002274444823e-05 0.2553582343659224 5.848773549181521e-05']
['59907.10533580243 0.30510192301941874 5.237243141623119e-05 0.02588758170567016 1.3537043587605685e-05 6.338671681773424e-06 3.3145960027967536e-09 0.049783810972442624 2.6032776130010938e-05 0.25531811204697613 5.8485699153580326e-05']
['59907.10547608264 0.30510824725919716 5.236758923043347e-05 0.025886756098056542 1.3537728828679755e-05 6.338469528646098e-06 3.3147637866492886e-09 0.04978222326549335 2.6034093901307223e-05 0.2553260239937038 5.8481949754342946e-05']
['59907.105616362845 0.3051643004518412 5.2369931498956595e-05 0.025885011828863807 1.3537094251777157e-05 6.338042437778242e-06 3.314608408109565e-09 0.04977886890166117 2.603287356110992e-05 0.25538543155018 5.848350392250914e-05']
['59907.10575664305 0.3050697229613336 5.236528894258115e-05 0.025862182620417312 1.3534960142037377e-05 6.3324526202841885e-06 3.3140858633185082e-09 0.04973496657772561 2.6028769503918033e-05 0.25533475638360803 5.847751985103425e-05']
['59907.10589692326 0.30507838031952245 5.236466577430075e-05 0.025877855849677903 1.3537726172790054e-05 6.336290269378089e-06 3.314763136344713e-09 0.04976510740322674 2.6034088793827033e-05 0.2553132729162957 5.8479329689892086e-05']
['59907.10603720347 0.30503969719837404 5.236320613012393e-05 0.02600178297854791 1.3552046532742059e-05 6.366634292674778e-06 3.318269530303508e-09 0.05000342880489983 2.6061627947580886e-05 0.2550362683934742 5.849028814687082e-05']
['59907.10617748368 0.3051034905042709 5.2387588006854984e-05 0.025903747464046264 1.3538187329832126e-05 6.342629928472479e-06 3.31487605237977e-09 0.04981489896931974 2.603497563429255e-05 0.25528859153495115 5.850025071274638e-05']
['59907.106317763886 0.30511890327392216 5.2368355446529764e-05 0.025854593903568937 1.3535618165359905e-05 6.3305944944408905e-06 3.314246982802278e-09 0.04972037289147873 2.6030034933384435e-05 0.2553985303824434 5.848082908789253e-05']
['59907.106458044094 0.30512187802372287 5.236812027516473e-05 0.025856024192139358 1.353595045658898e-05 6.330944705973245e-06 3.314328345558668e-09 0.049723123446421845 2.603067395497881e-05 0.25539875457730105 5.84809029316796e-05']
['59907.1065983243 0.3051686271499307 5.237296800949464e-05 0.02586456181263066 1.3536109667934658e-05 6.333035174440065e-06 3.3143673290550693e-09 0.049739541947366656 2.6030980130643577e-05 0.255429085202564 5.8485380264520034e-05']
['59907.10673860451 0.3050339553618794 5.2363934705588604e-05 0.02589057622026371 1.3537512432513292e-05 6.339404899926845e-06 3.3147108012345826e-09 0.049789569654353286 2.6033677754833257e-05 0.2552443857075261 5.847849207438276e-05']
['59907.10687888472 0.30508946502573087 5.2367993250387843e-05 0.025857988823203632 1.3541057455297465e-05 6.3314257532736e-06 3.3155788133876207e-09 0.04972690158308391 2.6040495106341282e-05 0.25536256344264696 5.848516138693687e-05']
['59907.107019164934 0.30513249584536506 5.236881594339544e-05 0.02588447130083115 1.3537127058981915e-05 6.337910087457816e-06 3.3146164410769587e-09 0.0497778294246753 2.6032936651888297e-05 0.25535466642068977 5.848253306786957e-05']
['59907.10715944514 0.30497299347299206 5.23614823985603e-05 0.025880628529386687 1.3536653585829865e-05 6.3369691704261866e-06 3.314500509396082e-09 0.049770439479589784 2.6032026126595896e-05 0.2552025539934023 5.84755609056511e-05']
['59907.10729972535 0.30517123051181044 5.237324746369805e-05 0.025898139093145874 1.3536851208310792e-05 6.34125669777788e-06 3.3145488980033216e-09 0.04980411364066515 2.603240616982845e-05 0.25536711687114527 5.848626523282775e-05']
['59907.10744000556 0.3051158922107103 5.23761461664546e-05 0.025892663309396727 1.3538067456294419e-05 6.339915931545604e-06 3.3148467008935058e-09 0.0497935832873014 2.60347451082585e-05 0.2553223089234089 5.848990203532407e-05']
['59907.10758028577 0.3051337301911317 5.23693211250305e-05 0.025862376865747175 1.3537933283131117e-05 6.3325001819832965e-06 3.3148138480901674e-09 0.049735340126436885 2.6034487082944455e-05 0.25539839006469484 5.848367560925499e-05']
['59907.107720565975 0.30506207106152083 5.236514342186603e-05 0.02586395529577107 1.3542252585834283e-05 6.332886666507338e-06 3.3158714455915816e-09 0.049738375568790516 2.60427934342967e-05 0.2553236954927303 5.848363305621536e-05']
['59907.10786084618 0.30518779026002774 5.237494668202243e-05 0.025839222902578285 1.353769976166787e-05 6.3268308470748395e-06 3.314756669482177e-09 0.04969081327418901 2.6034038003207445e-05 0.25549697698583873 5.848851318589952e-05']
['59907.10800112639 0.3050574215350818 5.236461719469797e-05 0.025882335636925415 1.3538489085407205e-05 6.337387162123383e-06 3.314949938366508e-09 0.04977372237870272 2.6035555933475396e-05 0.2552836991563791 5.8479939352844614e-05']
['59907.1081414066 0.30509126281557175 5.23680399751871e-05 0.025886645645623527 1.3537410675216821e-05 6.338442483952728e-06 3.3146858855780764e-09 0.049782010856968324 2.6033482067724656e-05 0.25530925195860343 5.8482081011309227e-05']
['59907.10828168681 0.3050800900648737 5.2365595319014345e-05 0.025868014847053034 1.3539997712125978e-05 6.333880662896969e-06 3.3153193312889283e-09 0.04974618239817892 2.6038457138703807e-05 0.2553339076666948 5.848210686422722e-05']
['59907.108421967016 0.3051301791508282 5.236845717148682e-05 0.0258815657994695 1.3537698794960516e-05 6.3371986645287894e-06 3.314756432780248e-09 0.04977224192205673 2.6034036144154843e-05 0.2553579372287714 5.848270124128169e-05']
['59907.108562247224 0.3050772479438022 5.236760879108689e-05 0.025856550114032283 1.3537543936657974e-05 6.331073479925458e-06 3.3147185151428198e-09 0.04972413483467747 2.6033738339726875e-05 0.25535311310912473 5.8481808987391e-05']
['59907.10870252743 0.3050797537487077 5.2364996954627734e-05 0.025876924567397853 1.3537795917554135e-05 6.336062241411499e-06 3.3147802136123407e-09 0.04976331647576511 2.6034222918373337e-05 0.2553164372729426 5.84796859518049e-05']
['59907.10884280764 0.3050802280424297 5.2369604303557654e-05 0.025876998211950032 1.3545720834963954e-05 6.3360802735569006e-06 3.316720659426753e-09 0.049763458099903915 2.6049463144161454e-05 0.2553167699425258 5.849059740685019e-05']
['59907.10898308785 0.30506854034649994 5.2370378860640615e-05 0.025857503336517654 1.3536739344487116e-05 6.331306880033787e-06 3.3145215077256427e-09 0.049725967954841646 2.603219104709061e-05 0.2553425723916583 5.848360071609184e-05']
['59907.109123368056 0.30512377213449987 5.2367668260539734e-05 0.025898825082497978 1.3544500068491891e-05 6.341424664849104e-06 3.3164217501676916e-09 0.04980543285095765 2.604711551633056e-05 0.2553183392835422 5.848781843911609e-05']
['59907.109263648264 0.30512817519209573 5.237172301742959e-05 0.025860901495974392 1.3540578181865723e-05 6.332138932149101e-06 3.31546146148646e-09 0.049732502876873835 2.6039573426664854e-05 0.25539567231522187 5.8488090719881036e-05']
['59907.10940392847 0.305155840969804 5.23775240710352e-05 0.025892324548138758 1.3538544190385984e-05 6.339832984578321e-06 3.3149634310276793e-09 0.04979293182334377 2.603566190458843e-05 0.25536290914646026 5.849154399246022e-05']
['59907.10954420868 0.3051851403298306 5.237157205063012e-05 0.025900953875988272 1.3544458044106754e-05 6.341945907936492e-06 3.316411460339038e-09 0.04980952668459284 2.60470347002053e-05 0.25537561364523775 5.849127777479341e-05']
['59907.10968448889 0.30515676065285524 5.237108226996679e-05 0.025889613324750822 1.3538187853351247e-05 6.339169131341373e-06 3.314876180565395e-09 0.04978771793221312 2.6034976641060093e-05 0.2553690427206421 5.848547056174016e-05']
['59907.1098247691 0.30517213776334706 5.237270377586855e-05 0.025869930573758138 1.35368313043826e-05 6.3343497357811695e-06 3.3145440244516926e-09 0.049749866487996425 2.6032367893043463e-05 0.25542227127535067 5.848576133482094e-05']
['59907.109965049305 0.30499986476489394 5.2361581010434346e-05 0.025892640648719375 1.3536951709787998e-05 6.339910382993582e-06 3.3145735061677605e-09 0.049793539709075726 2.60325994419e-05 0.2552063250558182 5.8475904436055466e-05']
['59907.11010532951 0.3051996114046757 5.238047241663598e-05 0.025873437257678173 1.353757638018761e-05 6.3352083605192225e-06 3.314726459062993e-09 0.04975661011091957 2.603380073113002e-05 0.25544300129375613 5.849335578591938e-05']
['59907.11024560972 0.30515452591831305 5.237008908384366e-05 0.025870988621906205 1.3537270864237274e-05 6.3346088028470065e-06 3.3146516523342404e-09 0.049751901195973475 2.60332132004563e-05 0.25540262472233954 5.8483796219039454e-05']
['59907.11038588993 0.3051158349745209 5.23755388563549e-05 0.0258669427440354 1.3536323337845043e-05 6.3336181544434914e-06 3.3144196469357273e-09 0.04974412066160654 2.6031391034317392e-05 0.25537171431291433 5.848786531986855e-05']
['59907.11052617014 0.3050861722860096 5.2372373865269424e-05 0.025868835440532336 1.3536912618515186e-05 6.3340815882946605e-06 3.3145639345226837e-09 0.049747760462562185 2.603252426637536e-05 0.2553384118234474 5.848553551061132e-05']
['59907.110666450346 0.30508021180598954 5.236752766396209e-05 0.025889669370526853 1.3537246356644261e-05 6.339182854360288e-06 3.314645651557977e-09 0.049787825712551644 2.6033166070469737e-05 0.2552923860934379 5.848148159279561e-05']
['59907.110806730554 0.3050725079669525 5.236625337885814e-05 0.025875888681626404 1.353659256607375e-05 6.335808600886876e-06 3.314485568479448e-09 0.04976132438774309 2.603190878091106e-05 0.2553111835792094 5.84797808453182e-05']
['59907.11094701076 0.30512549787906085 5.2370497492863056e-05 0.025862610751492918 1.3536617187975762e-05 6.332557449787225e-06 3.3144915972446997e-09 0.049735789906717155 2.6031956130722622e-05 0.25538970797234367 5.848360238256398e-05']
['59907.11108729097 0.30509121933057 5.236638198933515e-05 0.025868595188023594 1.3537151056951308e-05 6.334022761564882e-06 3.3146223170699636e-09 0.049747298438506914 2.603298280182944e-05 0.2553439208920631 5.848037411143427e-05']
['59907.11122757118 0.30502566974966194 5.23688189603685e-05 0.025887904886866285 1.354086665705914e-05 6.338750813904005e-06 3.315532095721832e-09 0.04978443247474286 2.6040128186652195e-05 0.2552412372749191 5.84857373663112e-05']
['59907.11136785139 0.3051145648555276 5.236923833773884e-05 0.025902811576380004 1.3537439705833705e-05 6.342400772859766e-06 3.3146929938337354e-09 0.04981309918534617 2.603353789583405e-05 0.25530146567018147 5.8483178944451395e-05']
['59907.111508131595 0.3051336976055258 5.237075827573354e-05 0.025870074471421235 1.3537401466836477e-05 6.334384969664833e-06 3.314683630871539e-09 0.04975014321427161 2.603346435930092e-05 0.25538355439125415 5.848450725553139e-05']
['59907.1116484118 0.30507250202328223 5.237616816173056e-05 0.02590022052116714 1.3544388732706934e-05 6.341766343252148e-06 3.316394489182278e-09 0.049808116386859884 2.60469014090518e-05 0.25526438563642234 5.849533369696033e-05']
['59907.11178869201 0.305104900701758 5.236990950936839e-05 0.02589204219088747 1.3537473054257442e-05 6.339763848344075e-06 3.3147011593206307e-09 0.049792388828629755 2.603360202741816e-05 0.25531251187312826 5.848380849894631e-05']
['59907.11192897222 0.3050374002687668 5.2364633651945735e-05 0.025855485840493846 1.3536601570685575e-05 6.33081288854939e-06 3.314487773292498e-09 0.049722088154795854 2.603192609747226e-05 0.25531531211397096 5.847833815907173e-05']
['59907.11206925243 0.3050331409047119 5.236722835098239e-05 0.02589851026472425 1.3539572646445039e-05 6.3413475805339314e-06 3.315215252359297e-09 0.049804827432162024 2.6037639704702e-05 0.2552283134725499 5.848320516657588e-05']
['59907.112209532635 0.3051392771111191 5.237458396740903e-05 0.025846090386112713 1.353548365331396e-05 6.328512376230388e-06 3.314214047022251e-09 0.049704019973293684 2.6029776256373004e-05 0.25543525713782544 5.848629153670131e-05']
['59907.11234981284 0.3050904882524029 5.236816291724858e-05 0.02589367279862063 1.3536530370586629e-05 6.340163108776347e-06 3.3144703396806585e-09 0.04979552461273199 2.603178917420506e-05 0.2552949636396709 5.848143752454918e-05']
['59907.11249009306 0.3051534796066361 5.237252506793919e-05 0.025877239408414646 1.354013850112852e-05 6.3361393314178226e-06 3.3153538040053703e-09 0.04976392193925894 2.6038727886785615e-05 0.25538955766737714 5.848843246278691e-05']
['59907.11263037327 0.3050622918729702 5.237367771451304e-05 0.025885016392448522 1.3545615401879861e-05 6.338043555189112e-06 3.3166948437398313e-09 0.04977887767778562 2.6049260388230503e-05 0.2552834141951846 5.8494154273034105e-05']
['59907.112770653475 0.30512279553313304 5.236895257899772e-05 0.02588430074469395 1.354179106396625e-05 6.337868326146569e-06 3.315758440227516e-09 0.04977750143210375 2.6041905892242788e-05 0.2553452941010293 5.848664853384695e-05']
['59907.11291093368 0.3051129620503459 5.2378399829575914e-05 0.02590610689025109 1.3539679744541347e-05 6.343207642846877e-06 3.315241475730717e-09 0.049819436327405944 2.6037845662579515e-05 0.25529352572293995 5.849330026127119e-05']
['59907.11305121389 0.3051498265523623 5.2369492050373956e-05 0.02587242994591655 1.3537866394128142e-05 6.334961716448304e-06 3.31479747006638e-09 0.04975467297291645 2.603435845024643e-05 0.2553951535794458 5.8483771403100355e-05']
['59907.1131914941 0.30514150760444714 5.23705982005126e-05 0.02590015721122365 1.3537230089933019e-05 6.341750841574528e-06 3.3146416685925892e-09 0.04980799463696856 2.603313478833273e-05 0.2553335129674786 5.8484217211030816e-05']
['59907.11333177431 0.3051686827736151 5.237271300528939e-05 0.025882312202236357 1.3536910245693571e-05 6.337381424051686e-06 3.314563353528393e-09 0.049773677311992996 2.603251970325687e-05 0.2553950054616221 5.8485837171360264e-05']
['59907.113472054516 0.3051358722980049 5.2370009297715614e-05 0.025856327149550294 1.3536389130847481e-05 6.331018886234009e-06 3.314435756599664e-09 0.049723706056827494 2.6031517559322082e-05 0.25541216624117735 5.848297000225034e-05']
['59907.113612334724 0.30519535031894474 6.003790698635484e-05 0.025905153048056004 1.3537739752778491e-05 6.342974091000297e-06 3.3147664614559236e-09 0.04981760201549232 2.603411490918941e-05 0.2553777483034524 6.543947901998513e-05']
['59907.11375261493 0.30516998899868963 5.237768954508374e-05 0.025925465130810822 1.354136957876681e-05 6.347947580807867e-06 3.315655237992238e-09 0.049856663713097736 2.6041095343782328e-05 0.2553133252855919 5.849411088977365e-05']
['59907.11389289514 0.3051589672198378 5.237334775445224e-05 0.02587964675833066 1.3538061910157361e-05 6.336728780093032e-06 3.3148453429010013e-09 0.0497685514583282 2.603473444261031e-05 0.2553904157615096 5.848739139768525e-05']
['59907.11403317535 0.3051822688455418 5.2372807825061394e-05 0.025890060952536202 1.3538161521322076e-05 6.339278734687079e-06 3.3148697330690804e-09 0.04978857875487732 2.6034926002542456e-05 0.2553936900906645 5.8486993181720956e-05']
['59907.11417345556 0.30513902530382697 5.236992586544866e-05 0.02587092521755379 1.3536520754783376e-05 6.334593278053006e-06 3.31446798521509e-09 0.04975177926452653 2.6031770682275727e-05 0.25538724603930046 5.848300795963883e-05']
['59907.114313735765 0.305182480136885 5.237387885258931e-05 0.02598308709975964 1.35636413277229e-05 6.362056536483086e-06 3.321108559434797e-09 0.04996747519184547 2.608392563023635e-05 0.2552150049450395 5.850978005726395e-05']
['59907.11445401597 0.30523718334170796 5.2387337204884565e-05 0.025897823172500736 1.353681420452535e-05 6.341179343420497e-06 3.3145398374873733e-09 0.04980350610096296 2.6032335008702597e-05 0.255433677240745 5.849885097524229e-05']
['59907.11459429618 0.3051535075856944 5.237197815778075e-05 0.02589500897957595 1.3537642797335927e-05 6.340490277705429e-06 3.3147427215513944e-09 0.04979809419149221 2.6033928456415245e-05 0.25535541339420215 5.848580620144354e-05']
['59907.11473457639 0.3051168872374893 5.236965177605708e-05 0.02590641810250682 1.3536970212073462e-05 6.343283844337416e-06 3.314578036521899e-09 0.04982003481251312 2.6032635023218197e-05 0.2552968524249762 5.848314725968127e-05']
['59907.1148748566 0.30524656485274926 5.237865233467859e-05 0.025867250828006456 1.3538113646980962e-05 6.33369358996177e-06 3.3148580108567183e-09 0.04974471313078165 2.6034833936501853e-05 0.2555018517219676 5.849218579005541e-05']
['59907.115015136806 0.30516608394153877 5.237927781245772e-05 0.02588568581122004 1.3538378438114267e-05 6.338207464891398e-06 3.314922845960953e-09 0.049780165021577005 2.6035343150219747e-05 0.25538591891996176 5.849297254460847e-05']
['59907.115155417014 0.30506273740904893 5.236744872611931e-05 0.0258924059200642 1.3538779979346735e-05 6.339852908800111e-06 3.3150211648409564e-09 0.04979308830781577 2.603611534489757e-05 0.2552696491012332 5.848272384504287e-05']
['59907.11529569722 0.30518311063342224 5.2373362051561855e-05 0.025881971660643356 1.353724607491764e-05 6.337298041162679e-06 3.3146455825761553e-09 0.049773022424314146 2.6033165528687775e-05 0.2554100882091081 5.84867058401141e-05']
['59907.11543597743 0.305175061641669 5.2372012186640294e-05 0.02588918204982761 1.3541986905573163e-05 6.3390635320554335e-06 3.3158063927810596e-09 0.04978688855736079 2.604228251071762e-05 0.2553881730843082 5.8489555809953186e-05']
['59907.11557625764 0.3051858715378425 5.237282652918407e-05 0.02588365287582689 1.3536119994931218e-05 6.3377096930193875e-06 3.314369857658992e-09 0.049776255530436325 2.6030999990252343e-05 0.2554096160074062 5.848526240984582e-05']
['59907.115716537846 0.30518148051419497 5.246381078640968e-05 0.02591157365212718 1.3568752235971075e-05 6.344546200039625e-06 3.3223599845292374e-09 0.04982994933101381 2.6093754299944377e-05 0.25535153118318116 5.8594670881387006e-05']
['59907.115856818054 0.30515508689831505 5.246216705300511e-05 0.025900729546379394 1.3570543886875521e-05 6.341890979988592e-06 3.3227986769872954e-09 0.049809095281498836 2.6097199782452928e-05 0.2553459916168162 5.859473362327604e-05']
['59907.11599709826 0.30521501822501407 5.2472161400734136e-05 0.025869680092355938 1.3567515671608588e-05 6.334288404468381e-06 3.322057207097328e-09 0.04974938479299219 2.6091376291554978e-05 0.2554656334320219 5.8601089058585e-05']
['59907.11613737847 0.30518881783961654 5.246796600799364e-05 0.025910457966116615 1.3567939724365645e-05 6.3442730201265174e-06 3.3221610380087394e-09 0.049827803780993496 2.6092191777626244e-05 0.25536101405862305 5.859769559271424e-05']
['59907.11627765868 0.30519696104358895 5.246820777190867e-05 0.02591817246677141 1.3568229331394211e-05 6.346161944607589e-06 3.3222319493782015e-09 0.049842639359175794 2.6092748714219638e-05 0.2553543216844132 5.859816005865362e-05']
['59907.11641793889 0.30519831760457106 5.246367385040787e-05 0.02588519911979157 1.35684355948983e-05 6.338088296665857e-06 3.32228245377244e-09 0.049779229076522255 2.6093145374804424e-05 0.2554190885280488 5.85942771047877e-05']
['59907.116558219095 0.30521420017819095 5.247332464873803e-05 0.02589238137612316 1.356812463376818e-05 6.339846899123896e-06 3.3222063137709507e-09 0.049793041107929155 2.6092547372631115e-05 0.2554211590702618 5.8602652056753006e-05']
['59907.1166984993 0.30525050890549843 5.246618395528375e-05 0.025880621074333227 1.3567392263735207e-05 6.3369673450283266e-06 3.3220269902156894e-09 0.049770425142948514 2.6091138968721555e-05 0.25548008376254994 5.8595631164062174e-05']
['59907.11683877951 0.30531139564264165 5.247546659681818e-05 0.025910070932829404 1.357057760936148e-05 6.34417825357144e-06 3.3228069340647314e-09 0.0498270594862104 2.609726463338746e-05 0.25548433615643124 5.86066704044756e-05']
['59907.11697905972 0.3053282018335174 5.2473143679796485e-05 0.025876389302666298 1.3567247367978061e-05 6.33593117983013e-06 3.321991511944947e-09 0.049762287120512116 2.6090860323034736e-05 0.25556591471300527 5.860173888236316e-05']
['59907.11711933993 0.30531867682384733 5.247124344701942e-05 0.02588789055964737 1.356718479433941e-05 6.338747305830603e-06 3.3219761905543334e-09 0.049784404922398794 2.609073998911425e-05 0.25553427190144856 5.859998380593585e-05']
['59907.117259620136 0.30533097663717046 5.247304237170753e-05 0.025877303061362045 1.3566594465408862e-05 6.336154917081239e-06 3.3218316462968766e-09 0.04976404434877316 2.608960474117089e-05 0.2555669322883973 5.860108916473772e-05']
['59907.117399900344 0.3054450459410759 5.2476973040997986e-05 0.025917864529110782 1.3569259207524133e-05 6.3460865449139685e-06 3.322484118419508e-09 0.04984204717136689 2.6094729245238717e-05 0.25560299876970904 5.8606890328082975e-05']
['59907.11754018055 0.30546708322246263 5.248710694517843e-05 0.025939798495833263 1.3568745968557556e-05 6.35145715910704e-06 3.3223584499294804e-09 0.04988422787660243 2.609374224722607e-05 0.2555828553458602 5.861552507603483e-05']
['59907.11768046076 0.3055188696540934 5.248486001236448e-05 0.025933861784841514 1.3569451999433508e-05 6.35000353310697e-06 3.322531324243147e-09 0.04987281112469522 2.6095099998910594e-05 0.2556460585293982 5.861411753554462e-05']
['59907.117820740976 0.3055813484588937 5.248759639311534e-05 0.025936774028330112 1.357063456025695e-05 6.35071660687112e-06 3.322820878705543e-09 0.049878411592942526 2.609737415434029e-05 0.25570293686595114 5.86175802373162e-05']
['59907.117961021184 0.3055022155970925 5.248594115403594e-05 0.025934907023351248 1.3570205499276987e-05 6.350259463684715e-06 3.3227158215119297e-09 0.0498748211987524 2.6096549037071133e-05 0.2556273943983401 5.861573074243109e-05']
['59907.11810130139 0.3055651266898034 5.2496424106333826e-05 0.02591556948213419 1.3569545317017153e-05 6.345524594035579e-06 3.322554173404246e-09 0.04983763361948883 2.609527945580222e-05 0.25572749307031456 5.86245524829698e-05']
['59907.1182415816 0.3055677157700032 5.249337646515172e-05 0.02592069547259944 1.3569997407263604e-05 6.3467797120675585e-06 3.3226648694003174e-09 0.049847491293460465 2.6096148860122317e-05 0.25572022447654275 5.8622210449980544e-05']
['59907.11838186181 0.30565624324696544 5.249313588383654e-05 0.025922914335960574 1.3571199218480114e-05 6.347323009101359e-06 3.3229591373938113e-09 0.04985175833838572 2.6098460035538685e-05 0.2558044849085797 5.862302389970631e-05']
['59907.11852214202 0.30566952321267216 5.249333532193789e-05 0.02593220722262151 1.3572795683379757e-05 6.34959840732856e-06 3.3233500378249665e-09 0.04986962927427214 2.610153016034569e-05 0.2557998939384 5.862456933686462e-05']
['59907.118662422225 0.30572988676788826 5.2496951942811396e-05 0.025982560196123973 1.357670630054534e-05 6.361927522147471e-06 3.3243075671364163e-09 0.049966461915623026 2.610905057797181e-05 0.2557634248522652 5.8631156268394866e-05']
['59907.11880270243 0.30590918566209824 5.2510910759159736e-05 0.025946552974824857 1.3571637962446318e-05 6.353111018675536e-06 3.3230665655030003e-09 0.04989721725927858 2.6099303773935228e-05 0.25601196840281965 5.86393162156636e-05']
['59907.11894298264 0.3057654870181676 5.250046314201073e-05 0.025986087416174558 1.357295768069948e-05 6.362791175234277e-06 3.3233897034775843e-09 0.049973245031104924 2.610184169365285e-05 0.25579224198706263 5.863109047191721e-05']
['59907.11908326285 0.305957808732506 5.251643363731243e-05 0.025965567142363845 1.3572100955826008e-05 6.3577667090641625e-06 3.3231799311722258e-09 0.04993378296608432 2.6100194145819248e-05 0.2560240257664217 5.864465820884028e-05']
['59907.11922354306 0.3059813140975596 5.2513089164496306e-05 0.02594748071626283 1.3571922564302943e-05 6.3533381796536345e-06 3.3231362513373002e-09 0.04989900137742852 2.609985108519797e-05 0.25608231272013104 5.864151055581574e-05']
['59907.119363823265 0.3060093038456227 5.251656356456891e-05 0.025962671904907544 1.3573105228524755e-05 6.357057799290939e-06 3.3234258311171763e-09 0.049928215201745285 2.6102125439470685e-05 0.2560810886438774 5.864563411788868e-05']
['59907.11950410347 0.3060094745545564 5.251605783524552e-05 0.025965437471479298 1.3572372689750133e-05 6.357734958660699e-06 3.3232464662448877e-09 0.04993353359899865 2.610071671105795e-05 0.25607594095555775 5.864455425174406e-05']
['59907.11964438368 0.30602560944018375 5.252331461846574e-05 0.025963388697099174 1.3571455756293747e-05 6.357233308553197e-06 3.323021951641703e-09 0.04992959364826765 2.609895337748798e-05 0.2560960157919161 5.8650268080466845e-05']
['59907.11978466389 0.30605665736110593 5.2518264488001454e-05 0.02597055591376044 1.357229783855827e-05 6.3589882284914295e-06 3.3232281386492243e-09 0.04994337675723162 2.6100572766458215e-05 0.2561132806038743 5.864646624962884e-05']
['59907.1199249441 0.30617946814647146 5.252600883898147e-05 0.025963553625723758 1.358104298707055e-05 6.3572736919468275e-06 3.3253694211319966e-09 0.04992991081869954 2.611739035975106e-05 0.25624955732777194 5.866088717157607e-05']
['59907.120065224306 0.30620308395813695 5.2527833318741526e-05 0.0259663870541129 1.3584501298140203e-05 6.357967467537641e-06 3.3262162015958193e-09 0.04993535971944789 2.6124040957961932e-05 0.25626772423868904 5.866548209240904e-05']
['59907.120205504514 0.3062475206694571 5.2528043673787876e-05 0.025973592090326153 1.3572956112122124e-05 6.359731647735327e-06 3.3233893194055226e-09 0.049949215558319535 2.610183867715793e-05 0.25629830511113755 5.865578705058644e-05']
['59907.12034578472 0.30632119377680883 5.2533168527179835e-05 0.025973780633750172 1.3573478627441273e-05 6.359777813301357e-06 3.323517259245344e-09 0.04994957814182725 2.6102843514310143e-05 0.25637161563498156 5.866082368188876e-05']
['59907.12048606493 0.30638426362726245 5.2538001369038594e-05 0.025998329493748293 1.3574294574085518e-05 6.365788693941314e-06 3.323717046848007e-09 0.04999678748797749 2.6104412642472152e-05 0.256387476139285 5.86658499236273e-05']
['59907.12062634514 0.3063940731201158 5.255610425258385e-05 0.026010542875134983 1.3577158082112315e-05 6.368779186279096e-06 3.324418187551158e-09 0.05002027475987497 2.610991938867753e-05 0.2563737983602408 5.8684512306840385e-05']
['59907.12076662535 0.3064164012632624 5.2540517882737076e-05 0.026011444865011682 1.3579044541146457e-05 6.369000041890627e-06 3.3248800941361177e-09 0.0500220093557917 2.6113547194512417e-05 0.2563943919074707 5.867216858499642e-05']
['59907.120906905555 0.30649080513208343 5.255313336010632e-05 0.025999191267955014 1.3575724730818775e-05 6.365999702594896e-06 3.324067226099536e-09 0.049998444746067336 2.610716294388226e-05 0.2564923603860161 5.8680625277373614e-05']
['59907.12104718576 0.3065518929741981 5.2550019377070346e-05 0.02602206498667055 1.3576256537715577e-05 6.371600418595621e-06 3.324197441017069e-09 0.05004243266667413 2.6108185649453033e-05 0.256509460307524 5.867829150918399e-05']
['59907.12118746597 0.3065312605849737 5.254590633771709e-05 0.026045716398266146 1.3590381748528363e-05 6.3773915556210675e-06 3.3276560519756382e-09 0.05008791615051182 2.61353495164007e-05 0.2564433444344619 5.8686700087810044e-05']
['59907.12132774618 0.30652069757566425 5.255967746252859e-05 0.02599416371454709 1.3573341198502869e-05 6.364768687246389e-06 3.323483609253235e-09 0.04998877637412902 2.6102579227890134e-05 0.25653192120153523 5.8684447150103724e-05']
['59907.12146802639 0.30658339261356954 5.256152872964116e-05 0.026000218331457513 1.3576122022297057e-05 6.366251182953807e-06 3.324164504411254e-09 0.050000419868187526 2.610792696595588e-05 0.256582972745382 5.868848398839911e-05']
['59907.121608306596 0.3066371390410787 5.255425546269343e-05 0.026016240519835067 1.3576071236853297e-05 6.370174275999095e-06 3.3241520694044675e-09 0.050031231768913595 2.610782930164096e-05 0.2566059072721651 5.868192667322422e-05']
['59907.121748586804 0.3066912304379653 5.255656216857009e-05 0.026001113531045464 1.3574640612494837e-05 6.366470375937617e-06 3.3238017756531494e-09 0.05000214140585667 2.610507810095161e-05 0.25668908903210863 5.868276859211362e-05']
['59907.12188886701 0.3066787168076573 5.2556052366812244e-05 0.026023113471580026 1.3576524708862836e-05 6.371857144066545e-06 3.324263103730424e-09 0.05004444898380774 2.6108701363197762e-05 0.25663426782384957 5.868392392517525e-05']
['59907.12202914722 0.30683992203448585 5.2567117811507464e-05 0.026021552452432165 1.3575952163213087e-05 6.37147492266094e-06 3.3241229137761116e-09 0.05004144702390801 2.6107600313871325e-05 0.25679847501057784 5.8693344334411206e-05']
['59907.12216942743 0.30677651553810337 5.256233353411499e-05 0.026029342939670748 1.3575882158692882e-05 6.373382452742655e-06 3.32410577290622e-09 0.050056428730136056 2.6107465689794004e-05 0.2567200868079673 5.868899957654177e-05']
['59907.122309707636 0.3067223085870583 5.256142887498274e-05 0.02601294660112794 1.3595140689632791e-05 6.3693677476231236e-06 3.3288212965920275e-09 0.050024897309861434 2.614450132621691e-05 0.25669741127719686 5.870467404710146e-05']
['59907.122449987844 0.3068072865305511 5.2565849055455516e-05 0.026046376502444825 1.3581749804887263e-05 6.3775531846102865e-06 3.3255424881310663e-09 0.050089185581624666 2.61187496247832e-05 0.25671810094892644 5.8697168320823165e-05']
['59907.12259026805 0.3068764473207489 5.257077707582791e-05 0.02601858964798013 1.3575064152193726e-05 6.370749468854854e-06 3.3239054809403402e-09 0.05003574932303871 2.6105892600372554e-05 0.2568406979977102 5.8695862126887444e-05']
['59907.12273054826 0.306859730524223 5.2569876418020674e-05 0.0260405124477151 1.3575980482319917e-05 6.37611734876906e-06 3.324129847815859e-09 0.050077908553298266 2.610765477369215e-05 0.25678182197092475 5.869583924255838e-05']
['59907.12287082847 0.3068129577348171 5.256533858635953e-05 0.026038696802646945 1.3577631867766743e-05 6.375672781249834e-06 3.3245341957494166e-09 0.050074416928167206 2.6110830514936048e-05 0.2567385408066499 5.869318777233294e-05']
['59907.12301110868 0.30691929490758474 5.2577535115816955e-05 0.026017736689827903 1.3575446971944787e-05 6.37054061884535e-06 3.3239992157952548e-09 0.05003410901889981 2.6106628792201515e-05 0.2568851858886849 5.8702242425215496e-05']
['59907.12315138889 0.30688762769380196 5.256721671062907e-05 0.02602140080688661 1.3575397074803552e-05 6.371437791679136e-06 3.32398699829268e-09 0.05004115539785887 2.610653283616068e-05 0.2568464722959431 5.8692958090624266e-05']
['59907.1232916691 0.3069382959756377 5.2578583517303294e-05 0.026031512489658355 1.3576278275217461e-05 6.373913675211598e-06 3.324202763526108e-09 0.050060600941650685 2.6108227452341275e-05 0.25687769503398705 5.8703892421109725e-05']
['59907.12343194931 0.3069166380513078 5.2570279672710995e-05 0.026057275407296375 1.3579832568617484e-05 6.380221822427844e-06 3.3250730456242813e-09 0.05011014501403149 2.6115062631956702e-05 0.2568064930372763 5.869949574858435e-05']
['59907.12357222952 0.3069215032698111 5.25711582415922e-05 0.02601751632276199 1.3575394589125575e-05 6.3704866611409895e-06 3.3239863896650846e-09 0.05003368523608076 2.6106528056010723e-05 0.25688781803373034 5.869648614697308e-05']
['59907.123712509725 0.30688213212323007 5.2575848265609045e-05 0.026031468216442255 1.357499660942703e-05 6.37390283474823e-06 3.323888942840048e-09 0.05006051580085049 2.61057627104366e-05 0.2568216163223796 5.870034640052789e-05']
['59907.12385278993 0.306914640250526 5.2577831310345006e-05 0.02605709724195565 1.3578798036622803e-05 6.3801781979745156e-06 3.3248197365769887e-09 0.05010980238837626 2.6113073147351547e-05 0.25680483786214975 5.8705373983120386e-05']
['59907.12399307014 0.30682151098814936 5.2564542378012234e-05 0.026028068689569424 1.3575996598428394e-05 6.373070447815946e-06 3.3241337939055935e-09 0.050053978249171974 2.610768576620845e-05 0.2567675327389774 5.869107573964655e-05']
['59907.12413335035 0.3069438285527098 5.2571979266274565e-05 0.026019743019056876 1.3575246108644248e-05 6.371031876098059e-06 3.3239500336611525e-09 0.05003796734434015 2.6106242516623557e-05 0.25690586120836967 5.86970944963238e-05']
['59907.12427363056 0.30681158738221814 5.256499160641298e-05 0.026019509963009096 1.3581338000064765e-05 6.370974811448795e-06 3.325441656172467e-09 0.05003751915963288 2.611795769243224e-05 0.25677406822258525 5.869604804930182e-05']
['59907.124413910766 0.3067939984154162 5.257873529523324e-05 0.026036876843523404 1.357656725069334e-05 6.375227157417931e-06 3.3242735202575213e-09 0.05007091700677578 2.6108783174410274e-05 0.2567230814086404 5.870427551801125e-05']
['59907.124554190974 0.3068642479337955 5.256937267865853e-05 0.02604183031608407 1.3576734709288176e-05 6.376440033792547e-06 3.324314523123877e-09 0.050080442915546294 2.610910521016957e-05 0.2567838050182492 5.8696033245044706e-05']
['59907.12469447118 0.30684651091165205 5.256937343351124e-05 0.02602831839824928 1.3576197919021709e-05 6.3731315899247645e-06 3.324183088009551e-09 0.0500544584581717 2.6108072921195596e-05 0.25679205245348036 5.869557474674239e-05']
['59907.12483475139 0.3069365819104851 5.257346687176628e-05 0.02600392405169088 1.357515850585824e-05 6.367158542481278e-06 3.3239285837897346e-09 0.05000754625325169 2.610607404972739e-05 0.2569290356572334 5.869835194625618e-05']
['59907.1249750316 0.3070239930745537 5.257814493737801e-05 0.026030287670497188 1.3578667884449939e-05 6.373613773636377e-06 3.3247878683282724e-09 0.0500582455201869 2.611282285471142e-05 0.2569657475543668 5.870554354145329e-05']
['59907.12511531181 0.3069171190618936 5.257281038917806e-05 0.026008961351955507 1.3574856256322684e-05 6.368391944384284e-06 3.3238545768549174e-09 0.050017233369145216 2.6105492800620547e-05 0.2568998856927484 5.8697505454488605e-05']
['59907.125255592015 0.30692853583413027 5.258040571659703e-05 0.026066563958764846 1.3577981371419591e-05 6.382496159166876e-06 3.324619773032462e-09 0.050128007613009326 2.611150263734537e-05 0.2568005282211209 5.8706981146215004e-05']
['59907.12539587222 0.30682690582307004 5.2566662784106757e-05 0.02601886408698139 1.3576033596048657e-05 6.3708166662758195e-06 3.3241428529119745e-09 0.05003627709034883 2.610775691547819e-05 0.2567906287327212 5.869300646086971e-05']
['59907.12553615243 0.30696370553645447 5.257296674693831e-05 0.02602155145356782 1.3575654294807619e-05 6.371474678085251e-06 3.3240499795774636e-09 0.050041445103015045 2.6107027490014655e-05 0.2569222604334394 5.8698328059145455e-05']
['59907.12567643264 0.30688306139919475 5.257041946865756e-05 0.026031896091512206 1.3575780368238155e-05 6.37400760156732e-06 3.32408084913079e-09 0.050061338637523475 2.610726993891953e-05 0.25682172276167126 5.869615444621752e-05']
['59907.12581671285 0.30689536817931423 5.257128408528951e-05 0.026030591777683666 1.3579066805634712e-05 6.373688235424005e-06 3.3248855456797505e-09 0.05005883034169936 2.6113590010835987e-05 0.25683653783761484 5.8699740149597314e-05']
['59907.125956993055 0.3068639093088883 5.256923200835065e-05 0.026031493285605854 1.357502186353201e-05 6.373908973027162e-06 3.3238951264025726e-09 0.05006056401078049 2.6105811276023098e-05 0.2568033452981078 5.8694442124677646e-05']
['59907.12609727326 0.3068816339007324 5.257363531827439e-05 0.026043982303573875 1.3576599012594303e-05 6.376966956017892e-06 3.324281297278352e-09 0.05008458135302669 2.6108844254989047e-05 0.25679705254770574 5.869973491345751e-05']
['59907.12623755347 0.30693256354100484 5.257058490929568e-05 0.02606595067836174 1.3578646113000228e-05 6.382345995155098e-06 3.3247825375069805e-09 0.05012682822761873 2.61127809865389e-05 0.25680573531338613 5.869875406306691e-05']
['59907.12637783368 0.307001694777495 5.257604515152717e-05 0.026040963987324323 1.3577467477100062e-05 6.376227909939537e-06 3.3244939440768003e-09 0.050078776898700626 2.6110514379038582e-05 0.2569229178787944 5.8702636098504166e-05']
['59907.12651811389 0.30697144670469134 5.257382344448257e-05 0.02603882818698886 1.3576042663165522e-05 6.375704951199773e-06 3.3241450730296186e-09 0.0500746695903632 2.6107774352241392e-05 0.2568967771143281 5.8699427537235644e-05']
['59907.126658394096 0.3068877092698702 5.2571347282627963e-05 0.02602645576422664 1.3575563647530598e-05 6.372675516983419e-06 3.3240277842509777e-09 0.05005087646966662 2.6106853168328073e-05 0.2568368328002036 5.869680006153075e-05']
['59907.126798674304 0.3068858697961233 5.25681412265977e-05 0.02603481983437733 1.3575013185531342e-05 6.374723490997034e-06 3.323893001561492e-09 0.0500669612199564 2.6105794587560274e-05 0.2568189085761669 5.8693457753547044e-05']
['59907.12693895451 0.3069017140650526 5.2569831098160484e-05 0.026032631018735833 1.3575634632595581e-05 6.374187551260325e-06 3.3240451652109437e-09 0.05006275195910737 2.6106989678068427e-05 0.25683896210594526 5.869550282381004e-05']
['59907.12707923472 0.3068687556092814 5.256870560651662e-05 0.026064839302224155 1.3578188512335625e-05 6.382073870530589e-06 3.3246704922643132e-09 0.050124690965815684 2.611190098526082e-05 0.2567440646434657 5.8696679481966246e-05']
['59907.12721951493 0.3069715384733642 5.257382790562165e-05 0.026039715887866174 1.3575594728013927e-05 6.375922308096099e-06 3.32403539442414e-09 0.05007637670743496 2.6106912938488323e-05 0.25689516176592925 5.869904840649234e-05']
['59907.12735979514 0.3070117112650519 5.2576776294585674e-05 0.02606273961852238 1.3577269830016946e-05 6.381559755084332e-06 3.3244455494456226e-09 0.050120653112543045 2.611013428849413e-05 0.25689105815250884 5.8703121876899384e-05']
['59907.127500075345 0.3069130997208408 5.2580118263701175e-05 0.0260355922980209 1.3575720167825847e-05 6.374912631623546e-06 3.3240661088335673e-09 0.05006844672696327 2.6107154168895863e-05 0.25684465299387754 5.870478971449688e-05']
['59907.12764035555 0.3068417115393406 5.2568288446986107e-05 0.026023475106422535 1.357585785744718e-05 6.371945691716975e-06 3.3240998226548715e-09 0.05004514443542796 2.6107418956629198e-05 0.25679656710391263 5.8694312116443575e-05']
['59907.12778063576 0.30693943276806196 5.2574012108905426e-05 0.026067090206760762 1.3582370804978244e-05 6.382625012966633e-06 3.325694542337436e-09 0.05012901962838608 2.6119943855727396e-05 0.2568104131396759 5.870501014609985e-05']
['59907.12792091597 0.30680120411894657 5.2565111866484496e-05 0.02779830913860652 1.525892181862186e-05 6.806520475393592e-06 3.736204359517604e-09 0.05345828680501254 2.9344080420426658e-05 0.25334291731393405 6.0201046845187806e-05']
['59907.12806119618 0.3068991037553407 5.2575145440708987e-05 0.026025680475761398 1.3576072132926738e-05 6.3724856846887036e-06 3.324152288811417e-09 0.05004938553031039 2.610783102485911e-05 0.2568497182250303 5.870063678474279e-05']
['59907.128201476386 0.30680297065070117 5.256339677776294e-05 0.02605564765332636 1.3576069453836262e-05 6.379823260750205e-06 3.3241516328260447e-09 0.05010701471793531 2.6107825872762043e-05 0.25669595593276584 5.8690112051511735e-05']
['59907.128341756594 0.3068717896125857 5.256722645955987e-05 0.026024538443381016 1.3574937856811174e-05 6.3722060537679205e-06 3.323874557041228e-09 0.05004718931419427 2.6105649724636873e-05 0.25682460029839144 5.869257402087665e-05']
['59907.12848203681 0.3069982321414916 5.2576668856304373e-05 0.026008800275138282 1.3574283406192742e-05 6.368352504120162e-06 3.323714312347485e-09 0.050016923606035164 2.6104391165755277e-05 0.2569813085354564 5.8700471430477016e-05']
['59907.12862231702 0.3068714892926555 5.257006981180486e-05 0.026029940966059283 1.357727446706284e-05 6.373528881751632e-06 3.3244466848437386e-09 0.05005757878088324 2.6110143205890077e-05 0.25681391051177227 5.8697119335195016e-05']
['59907.128762597225 0.3068482103603441 5.2566606177896315e-05 0.026058808917963517 1.3577304211313211e-05 6.380597308278551e-06 3.3244539678352387e-09 0.050113094073006764 2.611020040637156e-05 0.25673511628733736 5.869404271578958e-05']
['59907.12890287743 0.30686111654956716 5.2567612663210644e-05 0.02600477844460944 1.3574913107280241e-05 6.367367743798711e-06 3.3238684970255557e-09 0.05000918931655662 2.6105602129385084e-05 0.25685192723301054 5.869289874973887e-05']
['59907.12904315764 0.30682709696541344 5.256588138278211e-05 0.026010700437819462 1.3573971779837866e-05 6.368817766094606e-06 3.323638009463214e-09 0.05002057776503743 2.610379188430359e-05 0.256806519200376 5.8690542988523734e-05']
['59907.12918343785 0.3069002352688894 5.257098140974626e-05 0.02603317875770924 1.3576462090230448e-05 6.374321667206696e-06 3.3242477713229254e-09 0.050063805303287 2.6108580942750863e-05 0.25683642996560235 5.869724086554717e-05']
['59907.12932371806 0.30695849722819746 5.257457150770229e-05 0.026045904755995514 1.3583335469133877e-05 6.3774376757190654e-06 3.325930743981732e-09 0.05008827837691445 2.612179897910361e-05 0.256870218851283 5.870633655001136e-05']
['59907.129463998266 0.30680618782513513 5.256317099489091e-05 0.02603736647229189 1.3577963426519737e-05 6.375347044862215e-06 3.324615379156285e-09 0.05007185860056133 2.6111468127922576e-05 0.2567343292245738 5.8691530162653434e-05']
['59907.129604278474 0.30682420318576 5.256713164775908e-05 0.026062525657510053 1.3577390973827165e-05 6.381507365926269e-06 3.324475211962886e-09 0.050120241649057796 2.6110367257359932e-05 0.25670396153670216 5.86945875527467e-05']
['59907.12974455868 0.3069896589115545 5.2577315751196045e-05 0.0260449385322589 1.3576270380942614e-05 6.3772010922055044e-06 3.3242008305832404e-09 0.050086420254344045 2.6108212271043494e-05 0.25690323865721043 5.870275018762608e-05']
['59907.12988483889 0.3069285625128868 5.257095931720024e-05 0.026053306810047454 1.3584980659382164e-05 6.379250096475065e-06 3.326333574997642e-09 0.0501025130962451 2.6124962806504163e-05 0.2568260494166417 5.870450958122339e-05']
['59907.1300251191 0.3068250180536438 5.256631256277725e-05 0.026033842166121483 1.3575619634861614e-05 6.374484105249923e-06 3.3240414929594114e-09 0.05006508108869516 2.610696083627234e-05 0.25675993696494864 5.8692338687040334e-05']
['59907.13016539931 0.30679996246488483 5.2566331906720686e-05 0.02602659833952297 1.3575313844511912e-05 6.372710427080609e-06 3.3239666190429424e-09 0.05005115065292879 2.6106372777907525e-05 0.256748811811956 5.8692094439937925e-05']
['59907.130305679515 0.30692459819274903 5.257524606608636e-05 0.02603136483198814 1.3576347558938884e-05 6.373877520676059e-06 3.3242197279057083e-09 0.05006031698459258 2.6108360690267087e-05 0.25686428120815646 5.870096248650965e-05']
['59907.13044595972 0.3068942844965837 5.257147599093877e-05 0.02599749742409404 1.3574509538098766e-05 6.365584958559051e-06 3.323769681594615e-09 0.049995187354027006 2.610482603480532e-05 0.25689909714255665 5.869601375028206e-05']
['59907.13058623993 0.30684970688898383 5.256887980256106e-05 0.026048592958998876 1.3575428378647089e-05 6.378095892328326e-06 3.3239946631564285e-09 0.05009344799807476 2.6106593035859786e-05 0.2567562588909091 5.869447438759559e-05']
['59907.13072652014 0.3068314125681486 5.256468483682073e-05 0.026012717726703626 1.3575462022349962e-05 6.3693117068600815e-06 3.3240029009435304e-09 0.05002445716673774 2.610665773528839e-05 0.25680695540141085 5.869074603463296e-05']
['59907.13086680035 0.306909367868327 5.257049813783399e-05 0.026022426474672802 1.357796857163738e-05 6.371688930291663e-06 3.324616638957678e-09 0.05004312783590924 2.6111478022379578e-05 0.25686624003241776 5.8698096723601004e-05']
['59907.131007080556 0.3068630444188325 5.256795738246051e-05 0.026016571515507743 1.3578467821674318e-05 6.3702553215336314e-06 3.324738882205705e-09 0.05003186829905336 2.611243811860446e-05 0.2568311761197791 5.8696248328680524e-05']
['59907.131147360764 0.3068711686551794 5.2573528496140866e-05 0.026034483332469716 1.3576263775893868e-05 6.374641097240178e-06 3.324199213312229e-09 0.05006631410090331 2.610819956902667e-05 0.2568048545542761 5.869935249447527e-05']
['59907.13128764097 0.30692107426323506 5.258343638275744e-05 0.02599703269526556 1.3574715416081596e-05 6.365471167958666e-06 3.3238200915925245e-09 0.049994293644741464 2.610522195400307e-05 0.2569267806184936 5.870690244841115e-05']
['59907.13142792118 0.30699766834674974 5.258194182799715e-05 0.026032566106590757 1.358439186844942e-05 6.374171657277624e-06 3.3261894073247285e-09 0.05006262712805915 2.612383051624889e-05 0.2569350412186906 5.871384101934205e-05']
['59907.13156820139 0.3068755571299754 5.256817596891868e-05 0.026055347181466394 1.3577012870282023e-05 6.3797496890859385e-06 3.324382631888717e-09 0.05010643688743538 2.6109640135157738e-05 0.25676912024254 5.8695199400688974e-05']
['59907.1317084816 0.30691908908028903 5.257669324464734e-05 0.026045872905012757 1.3576953449367262e-05 6.377429876886222e-06 3.3243680824543982e-09 0.05008821712502454 2.6109525864167814e-05 0.2568308719552645 5.8702776879747295e-05']
['59907.131848761805 0.3068077353830809 5.25646859706847e-05 0.026019333324457532 1.3575398473562399e-05 6.370931560835531e-06 3.323987340784041e-09 0.050037179470110646 2.610653552608154e-05 0.25677055591297027 5.869069268948233e-05']
['59907.13198904201 0.3069141237931583 5.257065557579958e-05 0.026062240147620742 1.3577336426175632e-05 6.381437457756753e-06 3.3244618557653853e-09 0.050119692591578356 2.6110262358030062e-05 0.25679443120157996 5.869769695715931e-05']
['59907.13212932222 0.30687051536787147 5.256863129268375e-05 0.026006129703017432 1.3574159842029331e-05 6.367698604498752e-06 3.3236840571976454e-09 0.050011787890418144 2.61041535423641e-05 0.2568587274774533 5.869316679264673e-05']
['59907.13226960243 0.30694236255594776 5.2604325177088916e-05 0.026008351999272185 1.357657678455688e-05 6.368242742089457e-06 3.324275854659843e-09 0.050016061537061896 2.6108801508763234e-05 0.25692630101888586 5.872720445892949e-05']
['59907.13240988264 0.3068860791988889 5.2570833617514705e-05 0.02607815321788098 1.357906985139638e-05 6.385333832820885e-06 3.3248862914459426e-09 0.05015029464977112 2.6113595868069962e-05 0.2567357845491178 5.8699339318269115e-05']
['59907.132550162845 0.3068925244496412 5.256999482677953e-05 0.026030279972481783 1.357590707370947e-05 6.373611888748372e-06 3.324111873441677e-09 0.050058230716311124 2.6107513603287442e-05 0.2568342937333301 5.869588250153042e-05']
['59907.13269044305 0.3067716888492249 5.256353840943304e-05 0.026045461074936785 1.3580272176452356e-05 6.377329038744215e-06 3.325180685254961e-09 0.05008742514410921 2.611590803163915e-05 0.2566842637051157 5.869383462031576e-05']
['59907.13283072326 0.3067959802980926 5.256526519579025e-05 0.026041779996205217 1.3576864843480512e-05 6.376427712781077e-06 3.324346386969993e-09 0.0500803461465485 2.6109355468231754e-05 0.2567156341515441 5.8692465854402824e-05']
['59907.13297100347 0.306905035724439 5.256960864932795e-05 0.026056295074377678 1.3577074708677018e-05 6.3799817842280195e-06 3.3243977732521578e-09 0.050108259758418615 2.6109759055148116e-05 0.2567967759660204 5.869653542979675e-05']
['59907.13311128368 0.30684030072659785 5.2567439205597604e-05 0.02600288439126857 1.3574915295113166e-05 6.366903977719205e-06 3.32386903272467e-09 0.05000554690628572 2.6105606336756088e-05 0.2568347538203121 5.8692745265866374e-05']
['59907.133251563886 0.30692674199421643 5.257266863977484e-05 0.02604401920305683 1.3576055788739852e-05 6.376975990994984e-06 3.3241482868758273e-09 0.05008465231357083 2.6107799593730487e-05 0.2568420896806456 5.869840447179087e-05']
['59907.133391844094 0.30685064121624117 5.2568198316721154e-05 0.025999419193489096 1.3574648069029418e-05 6.366055511018598e-06 3.3238036014136677e-09 0.04999888306440211 2.6105092440441188e-05 0.2568517581518391 5.8693196586913755e-05']
['59907.1335321243 0.3069220225906083 5.2573390814341406e-05 0.026046960673659032 1.3576516113311672e-05 6.377696221127753e-06 3.324260999077414e-09 0.05009030898780584 2.6108684833291677e-05 0.25683171360280244 5.8699445018174e-05']
['59907.13367240451 0.30687788450904907 5.256918276607363e-05 0.026037961379241227 1.3576301981530702e-05 6.375492710064779e-06 3.3242085681060075e-09 0.050073002652386976 2.6108273041405198e-05 0.2568048818566621 5.869549299475572e-05']
['59907.133812684726 0.30679344260273 5.256330910396858e-05 0.026019022930098307 1.3575882854013241e-05 6.370855559610025e-06 3.3241059431580235e-09 0.05003658255788136 2.6107467026948543e-05 0.25675686004484866 5.868987390106194e-05']
['59907.133952964934 0.306776449771833 5.257364861720039e-05 0.02605453803805383 1.357667436072403e-05 6.379551567280123e-06 3.3242997465511194e-09 0.050104880842411215 2.610898915523852e-05 0.2566715689294218 5.8699811274255546e-05']
['59907.13409324514 0.3069366211512572 5.257252439394736e-05 0.02602163507964457 1.3575494218975424e-05 6.37149515424446e-06 3.3240107844082892e-09 0.05004160592239341 2.6106719651875818e-05 0.25689501522886377 5.8697794951206036e-05']
['59907.13423352535 0.3069051923772066 5.257173401189079e-05 0.026033565090730928 1.3586184601675961e-05 6.37441626229913e-06 3.3266283647934193e-09 0.05006454825140564 2.612727808014608e-05 0.25684064412580093 5.870623371409783e-05']
['59907.13437380556 0.30692256231738096 5.258548411218172e-05 0.026035900045356074 1.3577085948814164e-05 6.374987984715264e-06 3.324400525441985e-09 0.050069038548761685 2.610978067079647e-05 0.25685352376861925 5.871076380008705e-05']
['59907.13451408577 0.3069064428849708 5.2569022381115676e-05 0.026015757327684203 1.357530488049714e-05 6.370055964584829e-06 3.323964424170233e-09 0.050030302553238856 2.610635553941758e-05 0.25687614033173195 5.8694496451172656e-05']
['59907.134654365975 0.3068612133872194 5.2585448902045126e-05 0.026063859907245177 1.3577227842577654e-05 6.381834061988829e-06 3.3244352686632976e-09 0.05012280751393303 2.6110053543418565e-05 0.25673840587328634 5.8710853615577615e-05']
['59907.13479464618 0.306900700452022 5.257059004596393e-05 0.02602480674300824 1.3576263520491181e-05 6.372271747940078e-06 3.3241991507759214e-09 0.05004770527501585 2.610819907786766e-05 0.25685299517700616 5.86967204950189e-05']
['59907.13493492639 0.306927493020288 5.25732922139034e-05 0.026069906564787925 1.3576899790797304e-05 6.383314608815156e-06 3.324354943951863e-09 0.05013443570151525 2.6109422674610204e-05 0.2567930573187727 5.8699684893616974e-05']
['59907.1350752066 0.3068104226521192 5.2563427394981634e-05 0.026017825177259764 1.357584483895642e-05 6.370562285325631e-06 3.3240966350284775e-09 0.05003427918703801 2.610739392107004e-05 0.2567761434650812 5.868994732368935e-05']
['59907.13521548681 0.3069058739276285 5.257085647965188e-05 0.026021930734619204 1.3576984957937424e-05 6.371567546476249e-06 3.3243757974462308e-09 0.05004217448965232 2.6109586457571972e-05 0.2568636994379762 5.869757623607283e-05']
['59907.135355767015 0.30676506009292215 5.2566629721451455e-05 0.026013971630663737 1.3575733841981058e-05 6.3696187299576415e-06 3.3240694570018662e-09 0.05002686852050719 2.610718046534819e-05 0.25673819157241495 5.869272043552285e-05']
['59907.13549604722 0.3069150390710138 5.2574799567495074e-05 0.02602400607134269 1.3575239152614363e-05 6.372075700473362e-06 3.3239483304510902e-09 0.050046165521812874 2.6106229139643007e-05 0.25686887354920096 5.869961455967003e-05']
['59907.13563632743 0.3068583735852018 5.256692258705137e-05 0.026005778943306253 1.3574439966034954e-05 6.367612719665103e-06 3.323752646613297e-09 0.05001111335251203 2.6104692242374916e-05 0.2568472602326898 5.869187599099351e-05']
['59907.13577660764 0.3068307731061822 5.2566316435851654e-05 0.026054501767627705 1.3577014212536371e-05 6.3795426863299605e-06 3.3243829605447394e-09 0.05010481109159175 2.6109642716416103e-05 0.2567259620145904 5.8693535133036484e-05']
['59907.13591688785 0.3069312693716564 5.257511130253543e-05 0.026007105993223777 1.3573671520712855e-05 6.367937652825263e-06 3.3235644898879e-09 0.05001366537158419 2.610321446290934e-05 0.2569176040000722 5.869855308072447e-05']
['59907.136057168056 0.306877879388912 5.256946090620201e-05 0.02607510978023178 1.358105835797896e-05 6.384588635673405e-06 3.325373184756694e-09 0.050144441885061126 2.611741991919031e-05 0.25673343750385086 5.869981127059967e-05']
['59907.136197448264 0.3068439880436898 5.2569325885052645e-05 0.02605814324152124 1.3577245034568088e-05 6.380434314899647e-06 3.3244394781867733e-09 0.05011181392600239 2.611008660493863e-05 0.2567321741176874 5.8696427885572916e-05']
['59907.13633772847 0.3069035680179995 5.258625022602014e-05 0.02603404875780388 1.3575656589958521e-05 6.374534689999854e-06 3.3240505415537887e-09 0.05006547838039208 2.610703190376639e-05 0.2568380896376074 5.8710227623965824e-05']
['59907.13647800868 0.30684271570758603 5.2568611285428575e-05 0.02603712424423324 1.357693584176912e-05 6.375287734411615e-06 3.324363771167813e-09 0.05007139277737162 2.6109492003402155e-05 0.25677132293021443 5.8695523382573303e-05']
['59907.13661828889 0.3069329013227772 5.2571216835516124e-05 0.026012731380334816 1.3574777014752227e-05 6.369315050002997e-06 3.3238351742585534e-09 0.0500244834237208 2.6105340412985054e-05 0.2569084178990564 5.869601040654028e-05']
['59907.1367585691 0.30686563875637907 5.256910009802653e-05 0.02599822574625341 1.3574175224682865e-05 6.365763290977246e-06 3.32368782369818e-09 0.04999658797356425 2.6104183124390126e-05 0.2568690507828148 5.869359983599598e-05']
['59907.136898849305 0.3068683694811583 5.257025984548934e-05 0.026030113688414007 1.3586318575954437e-05 6.3735711734693805e-06 3.32666116889906e-09 0.05005791093925771 2.6127535722989305e-05 0.2568104585419006 5.870502826145603e-05']
['59907.13703912951 0.3068523702487238 5.2568091067678045e-05 0.026025479157404184 1.3576609605448843e-05 6.372436391132264e-06 3.3242838909786008e-09 0.050048998379623434 2.6108864625863163e-05 0.25680337186910035 5.86947783925567e-05']
['59907.13717940972 0.30688793685669835 5.257029948784609e-05 0.026046505061541655 1.3575427975829485e-05 6.377584662788348e-06 3.3239945645250244e-09 0.05008943281065703 2.610659226121055e-05 0.2567985040460413 5.8695745567587174e-05']
['59907.13731968993 0.30695694707730786 5.2575382692032656e-05 0.026019148249978877 1.3576136393261458e-05 6.37088624465381e-06 3.324168023195903e-09 0.05003682355765169 2.6107954602425884e-05 0.25692012351965615 5.870090424121265e-05']
['59907.13745997014 0.3068334403245423 5.257309808606353e-05 0.02604410541154936 1.3590985593951842e-05 6.376997099468403e-06 3.3278039057971924e-09 0.050084818099133385 2.61365107575997e-05 0.2567486222254089 5.87115647632473e-05']
['59907.137600250346 0.3068706630664416 5.2570251128450276e-05 0.026014850730634705 1.3576060186608449e-05 6.369833980889721e-06 3.324149363710483e-09 0.05002855909737444 2.6107808051170097e-05 0.25684210396906715 5.8696243022403655e-05']
['59907.137740530554 0.306932946570848 5.257082763056241e-05 0.02600641507072103 1.3574953861478922e-05 6.367768477853562e-06 3.3238784758442816e-09 0.050012336674463524 2.6105680502844086e-05 0.2569206098963845 5.869581307281532e-05']
['59907.13788081076 0.30697403888336194 5.2575716164889345e-05 0.02605485539835818 1.3576834567859202e-05 6.379629274143475e-06 3.3243389738703213e-09 0.05010549115068881 2.6109297245883083e-05 0.25686854773267315 5.870180008249223e-05']
['59907.13802109097 0.3068857615703271 5.2577478446427836e-05 0.0260467347373561 1.35761982962125e-05 6.377640899774776e-06 3.3241831803661342e-09 0.05008987449491559 2.6108073646562503e-05 0.2567958870754115 5.8702834252861374e-05']
['59907.13816137118 0.3067845431376143 5.257103337325313e-05 0.02603936303862273 1.3577089558450981e-05 6.375835911632621e-06 3.324401409275127e-09 0.05007569815119756 2.6109787612405735e-05 0.2567088449864167 5.869782414277918e-05']
['59907.13830165139 0.30696867091293706 5.2577902942670186e-05 0.02603367152002037 1.3577203765937174e-05 6.374442321910675e-06 3.3244293734073817e-09 0.0500647529231161 2.6110007242186874e-05 0.25690391798982093 5.87040744415232e-05']
['59907.138441931595 0.30689488352108923 5.256893510759467e-05 0.026034107179475394 1.3575189448387155e-05 6.374548994765709e-06 3.32393616018424e-09 0.05006559072976038 2.6106133554590686e-05 0.2568292927913289 5.8694319550673944e-05']
['59907.1385822118 0.30682812478917226 5.2567143590568445e-05 0.02605533300545513 1.3581464850916485e-05 6.379746218036298e-06 3.3254727160802924e-09 0.05010640962587525 2.6118201636377855e-05 0.256721715163297 5.869808380168753e-05']
['59907.13872249201 0.30687409574912816 5.257557622498729e-05 0.026026321749227373 1.3582636000744931e-05 6.37264270290714e-06 3.3257594765176747e-09 0.050050618748514186 2.612045384758641e-05 0.256823477000614 5.8706637823957695e-05']
['59907.13886277222 0.30680937525086327 5.2566476694017014e-05 0.026037186635557673 1.3575056729248335e-05 6.375303011161907e-06 3.3239036634042612e-09 0.05007151276068783 2.610587832547757e-05 0.25673786249017544 5.869200418427772e-05']
['59907.13900305243 0.3068744753106296 5.2570157423117185e-05 0.02602148219790925 1.3575506325141016e-05 6.371457720576945e-06 3.3240137486484364e-09 0.05004131191905625 2.6106742932963495e-05 0.25683316339157336 5.869568534448816e-05']
['59907.139143332635 0.30691533975655255 5.257766580532019e-05 0.026046841303496257 1.3575560249462399e-05 6.377666992894732e-06 3.3240269522212074e-09 0.050090079429800496 2.610684663358154e-05 0.25682526032675207 5.8702456359894205e-05']
['59907.13928361285 0.30689838904072564 5.256988015279972e-05 0.026029868413253457 1.3576441884581201e-05 6.373511116924428e-06 3.3242428238937623e-09 0.05005743925625665 2.610854208573308e-05 0.256840949784469 5.8696237265451876e-05']
['59907.13942389306 0.3068549893817839 5.2568137259021324e-05 0.026017884396928665 1.3575729951751457e-05 6.370576785484144e-06 3.3240685044645266e-09 0.05003439307101667 2.610717298413742e-05 0.25682059631076726 5.869406729906338e-05']
['59907.13956417327 0.3069249869756455 5.257220157299869e-05 0.02605550365514597 1.3577574533271051e-05 6.379788002254504e-06 3.3245201571826488e-09 0.050106737798357635 2.6110720256290484e-05 0.2568182491772879 5.869928526425397e-05']
['59907.139704453475 0.306901378402202 5.257117818651529e-05 0.02605129693318905 1.3577023719566058e-05 6.378757970571955e-06 3.324385288376691e-09 0.05009864794844048 2.6109660999165495e-05 0.2568027304537615 5.8697897521203304e-05']
['59907.13984473368 0.30687539023971777 5.257158336449493e-05 0.026014651432044962 1.3577463434838562e-05 6.369785181880938e-06 3.324492954313879e-09 0.0500281758308557 2.6110506605458774e-05 0.25684721440886205 5.8698636548422025e-05']
['59907.13998501389 0.3068619171132241 5.2566527011123744e-05 0.026005913299760746 1.3575208037561483e-05 6.3676456173479785e-06 3.3239407118134434e-09 0.05001137173030913 2.6106169303002855e-05 0.25685054538291496 5.869217867559741e-05']
['59907.1401252941 0.3069486194439281 5.2574082506220424e-05 0.02602197801192324 1.3580369108985174e-05 6.3715791225018395e-06 3.3252044195499524e-09 0.0500422654075447 2.6116094440356108e-05 0.2569063540363834 5.870336055276965e-05']
['59907.14026557431 0.30702889768508856 5.257654182218169e-05 0.02601945449839682 1.3575013206610799e-05 6.37096123073001e-06 3.3238930067228764e-09 0.05003741249691697 2.6105794628097696e-05 0.2569914851881716 5.870098179029066e-05']
['59907.140405854516 0.3069418075938984 5.257469158797413e-05 0.026141086375759803 1.3600224044179597e-05 6.400743253068265e-06 3.3300659750591238e-09 0.05027131995338424 2.6154277008037687e-05 0.25667048764051414 5.872090259340167e-05']
['59907.140546134724 0.30688552565103167 5.2574391752648925e-05 0.02604712247066855 1.3576515418722285e-05 6.377735837733665e-06 3.3242608290045924e-09 0.050090620135901064 2.6108683497542857e-05 0.2567949055151306 5.870034090306347e-05']
['59907.14068641493 0.30687907348467847 5.2570095037698156e-05 0.026042867087096598 1.3577589541135003e-05 6.3766938910717744e-06 3.324523831914546e-09 0.050082436705955 2.6110749117567314e-05 0.25679663677872344 5.869741145700685e-05']
['59907.14082669514 0.3069368686467575 5.257255739652327e-05 0.02604450356316659 1.3576645182585016e-05 6.377094588388376e-06 3.3242926021741126e-09 0.05008558377532037 2.6108933043432723e-05 0.25685128487143716 5.8698808981760324e-05']
['59907.14096697535 0.3070024558919695 5.257743854233966e-05 0.02603947899119715 1.3577537836162185e-05 6.375864303056288e-06 3.324511171757613e-09 0.050075921136917605 2.611064968492728e-05 0.2569265347550519 5.870394425115315e-05']
['59907.14110725556 0.30698389955113237 5.257541115379133e-05 0.026211315721142468 1.3647096849468109e-05 6.417939172249433e-06 3.3415429576102785e-09 0.05040637638681244 2.62444170182079e-05 0.2565775231643199 5.876175016637784e-05']
['59907.141247535765 0.3068270608474295 5.2565487277726e-05 0.026011027086148664 1.3582785496285562e-05 6.368897747165752e-06 3.3257960810626927e-09 0.05002120593490128 2.6120741339010698e-05 0.2568058549125282 5.869773062771913e-05']
['59907.14138781597 0.3068132636451892 5.2565327329143434e-05 0.026030211013926836 1.3576914399889476e-05 6.373595003987005e-06 3.3243585210429907e-09 0.05005809810370546 2.6109450769018222e-05 0.2567551655414837 5.869256389594665e-05']
['59907.14152809618 0.3068585111210232 5.258601894923289e-05 0.026044048163393323 1.3576701593357753e-05 6.376983082042225e-06 3.3243064145638433e-09 0.050084708006525626 2.610904152568799e-05 0.25677380311449755 5.871091413288657e-05']
['59907.14166837639 0.30682383204429775 5.256627980202195e-05 0.02601880498076968 1.3575132059538343e-05 6.370802193897726e-06 3.3239221083089065e-09 0.050036163424557085 2.6106023191419895e-05 0.25678766861974067 5.8691892277344524e-05']
['59907.1418086566 0.3068976969615387 5.256850627858331e-05 0.026031033827533974 1.3576359748391773e-05 6.3737964729913426e-06 3.3242227125390638e-09 0.05005968043756534 2.6108384131522643e-05 0.2568380165239733 5.869493653050999e-05']
['59907.141948936805 0.30692847192659867 5.258201123555358e-05 0.02600776401799299 1.3574570738235043e-05 6.368098772663258e-06 3.3237846666780094e-09 0.05001493080383268 2.6104943727375085e-05 0.256913541122766 5.870550223433322e-05']
['59907.14208921701 0.3069406167588813 5.2573118273690774e-05 0.026023538332899776 1.3574379727519886e-05 6.371961172957571e-06 3.32373789698647e-09 0.050045266024807265 2.6104576399076705e-05 0.25689535073407405 5.8697373655000194e-05']
['59907.14222949722 0.30693532226803893 5.257316474261092e-05 0.026046725862164673 1.3579440600107892e-05 6.3776387266507955e-06 3.3249770706614535e-09 0.05008985742723976 2.611430884636133e-05 0.2568454648407992 5.870174424646046e-05']
['59907.14236977743 0.30692821420901795 5.257347991706902e-05 0.026021302598904724 1.3575680635957678e-05 6.371413745085646e-06 3.3240564293070615e-09 0.050040966536355244 2.610707814607246e-05 0.2568872476726627 5.8698810208688164e-05']
['59907.14251005764 0.3070151846090469 5.257660170196645e-05 0.026013635967768484 1.3575230665654828e-05 6.369536541636115e-06 3.323946252387149e-09 0.05002622301493939 2.610621281856698e-05 0.25698896159410756 5.870122140343872e-05']
['59907.142650337846 0.3068726276655188 5.256808638298133e-05 0.026047967974255282 1.357675895551077e-05 6.3779428624647875e-06 3.324320459902611e-09 0.05009224610433708 2.6109151837520713e-05 0.2567803815611817 5.869490195616054e-05']
['59907.142790618054 0.30684887839313413 5.257189419961038e-05 0.0260390979952808 1.3575265579358001e-05 6.375771014774157e-06 3.3239548011385977e-09 0.05007518845246308 2.610627996030385e-05 0.25677368994067107 5.869703496004539e-05']
['59907.14293089826 0.30689644089402135 5.2580132462962773e-05 0.026046858729184535 1.3576747342896584e-05 6.377671259640004e-06 3.3243176165103803e-09 0.05009011294073949 2.6109129505570354e-05 0.25680632795328184 5.870568092920272e-05']
['59907.14307117847 0.30691665002839924 5.2572322884542146e-05 0.026034662856583943 1.3579170786340131e-05 6.374685054394306e-06 3.3249110057462944e-09 0.050066659339584506 2.6113789973731025e-05 0.25684999068881476 5.870075945223102e-05']
['59907.14321145868 0.306914332267749 5.257822096449918e-05 0.02602341881302246 1.357558174321528e-05 6.371931908066383e-06 3.324032215047387e-09 0.050045036178889356 2.6106887967721695e-05 0.25686929608885967 5.870297197886043e-05']
['59907.14335173889 0.306922823020473 5.257096166599075e-05 0.02601969044190413 1.3576396989116844e-05 6.3710190023845925e-06 3.32423183107057e-09 0.050037866234431023 2.6108455748301624e-05 0.256884956786042 5.869716749595412e-05']
['59907.143492019095 0.3068614011508356 5.2567737538179306e-05 0.026055926184725936 1.3581717028865057e-05 6.379891460210281e-06 3.3255344627988374e-09 0.05010755035524219 2.6118686593971266e-05 0.25675385079559343 5.869883149839527e-05']
['59907.1436322993 0.3068528850976847 5.257082621627444e-05 0.026045053768034628 1.357717276260978e-05 6.377229308118317e-06 3.32442178212614e-09 0.05008664186160506 2.6109947620403425e-05 0.25676624323607966 5.8697709783278075e-05']
['59907.14377257951 0.306871635657203 5.256774937344852e-05 0.026051484735661108 1.3577248708048062e-05 6.378803954713114e-06 3.3244403776521522e-09 0.0500990091070406 2.61100936693232e-05 0.2567726265501624 5.8695019086891254e-05']
['59907.14391285972 0.3068606457144967 5.258938737282175e-05 0.026042334973166718 1.3578168583946e-05 6.376563600976039e-06 3.324665612723211e-09 0.050081413409936 2.611186266143462e-05 0.25677923230456073 5.871518573502367e-05']
['59907.14405313993 0.3069002855722547 5.257071354925754e-05 0.026048825635212044 1.3577877997458399e-05 6.378152863973658e-06 3.3245944615295223e-09 0.05009389545233085 2.6111303841266154e-05 0.25680639011992384 5.869821216501412e-05']
['59907.144193420136 0.3068851646813679 5.2570362251274326e-05 0.026035199504716885 1.3575270041754672e-05 6.374816454706704e-06 3.323955893773195e-09 0.050067691355224785 2.6106288541835912e-05 0.25681747332614313 5.869566669405674e-05']
['59907.144333700344 0.3069127418723546 5.257107825952777e-05 0.026042791330694717 1.3576504841429645e-05 6.376675341832036e-06 3.324258239114734e-09 0.05008229102056677 2.6108663156595475e-05 0.25683045085178785 5.8697364175863636e-05']
['59907.14447398055 0.3068796162598245 5.2569858418532394e-05 0.026023218974735744 1.3576917199587346e-05 6.371882976910767e-06 3.3243592065595373e-09 0.05004465187449182 2.610945615305259e-05 0.2568349643853327 5.8696624389761264e-05']
['59907.14461426077 0.30681771437334815 5.256472919268543e-05 0.026037994845682588 1.3577537005202406e-05 6.375500904448734e-06 3.324510968293988e-09 0.050073067010928056 2.6110648086927707e-05 0.2567446473624201 5.869256084564497e-05']
['59907.144754540976 0.3068417914993281 5.256554218573982e-05 0.026017890227750265 1.357448157218415e-05 6.370578213182729e-06 3.3237628340353085e-09 0.05003440428413513 2.610477225420029e-05 0.256807387215193 5.869067523656938e-05']
['59907.144894821184 0.306898259202644 5.256996786556827e-05 0.026027570491135906 1.3581353746293967e-05 6.372948462056969e-06 3.3254455116958708e-09 0.050053020175261365 2.6117987973642246e-05 0.25684523902738265 5.870051803160004e-05']
['59907.14503510139 0.3068781003376349 5.256810168811672e-05 0.026007666523457693 1.3573800768190264e-05 6.368074900759847e-06 3.3235961366185334e-09 0.05001474331434172 2.6103463015750507e-05 0.2568633570232932 5.869238533665875e-05']
['59907.1451753816 0.3068602442553627 5.256770222005433e-05 0.026025184416288438 1.3575151959582038e-05 6.372364222662259e-06 3.3239269809094014e-09 0.050048431569785466 2.6106061460734692e-05 0.25681181268557723 5.869318326422551e-05']
['59907.14531566181 0.3068963626989716 5.257066154983834e-05 0.026008619070610958 1.3581974949221227e-05 6.368308135510571e-06 3.3255976155674653e-09 0.05001657513579031 2.6119182594656207e-05 0.25687978756318125 5.8701670804165727e-05']
['59907.145455942016 0.3069191077143947 5.257147812556195e-05 0.02605678723595509 1.3576844390901474e-05 6.380102291840088e-06 3.3243413790791425e-09 0.05010920622299056 2.610931613634899e-05 0.25680990149140415 5.8698012755239444e-05']
['59907.145596222224 0.3068992833084923 5.257047262259114e-05 0.02600450197216734 1.3575012681567688e-05 6.367300048482113e-06 3.323892878164097e-09 0.05000865763878335 2.61057936183994e-05 0.25689062566970894 5.869554542049224e-05']
['59907.14573650243 0.30675216049278964 5.256163198599448e-05 0.02602749377110518 1.3575874222231197e-05 6.3729296768690855e-06 3.3241038296337464e-09 0.050052872636740735 2.610745042736769e-05 0.2566992878560489 5.8688364475836086e-05']
['59907.14587678264 0.30682873522251525 5.2578766241354726e-05 0.02601504695420645 1.3576026976593218e-05 6.369882026968789e-06 3.3241412321134303e-09 0.05002893645039702 2.610774418575619e-05 0.2567997987721182 5.8703841151426456e-05']
['59907.14601706285 0.3068626002363497 5.2575710520917984e-05 0.02604114530325754 1.3575700643254988e-05 6.376272305827279e-06 3.3240613281690073e-09 0.05007912558318758 2.610711662164421e-05 0.25678347465316215 5.870082516520102e-05']
['59907.14615734306 0.30688392528838415 5.257180195075207e-05 0.02603097505632869 1.3576504345762888e-05 6.37378208264083e-06 3.3242581177488653e-09 0.05005956741601671 2.6108662203390174e-05 0.25682435787236746 5.86980119118172e-05']
['59907.146297623265 0.30681065651417383 5.2564738542002585e-05 0.02603477159833753 1.357761229742801e-05 6.374711680221389e-06 3.3245294038784205e-09 0.05006686845834141 2.611079287966925e-05 0.2567437880558324 5.86926336331407e-05']
['59907.14643790347 0.30696183227109797 5.257464925495667e-05 0.0260447720412769 1.3579372004743113e-05 6.377160326262788e-06 3.3249602748285645e-09 0.05008610007937866 2.6114176932198294e-05 0.25687573219171933 5.870301509401262e-05']
['59907.14657818368 0.30698570442485007 5.25827419437193e-05 0.026041077819186673 1.3576256034894166e-05 6.376255782098882e-06 3.324197317899357e-09 0.05007899580612822 2.6108184682488786e-05 0.25690670861872184 5.870759795575628e-05']
['59907.14671846389 0.30680242107802835 5.25663426076913e-05 0.0260175817030708 1.357354596941453e-05 6.3705026697553404e-06 3.323533748180608e-09 0.05003381096744385 2.610297301810487e-05 0.2567686101105845 5.8690591882627087e-05']
['59907.1468587441 0.30687296886137916 5.257388780878734e-05 0.02601591623680557 1.3575027549398673e-05 6.370094874080472e-06 3.323896518608396e-09 0.05003060814770303 2.6105822210382066e-05 0.2568423607136761 5.8698616956543666e-05']
['59907.146999024306 0.30685744286747146 5.2566589262387316e-05 0.026020056333113245 1.3582026448737441e-05 6.371108592222384e-06 3.325610225417577e-09 0.050038569871371626 2.611928163218739e-05 0.25681887299609985 5.8698067938068074e-05']
['59907.147139304514 0.306905752719865 5.257043770123491e-05 0.02603500699794188 1.357605480382322e-05 6.374769318699289e-06 3.3241480457152877e-09 0.05006732114988824 2.610779769966004e-05 0.25683843156997677 5.86964055187862e-05']
['59907.14727958472 0.3068363512621529 5.256741797202736e-05 0.026031123748267812 1.3576176470413452e-05 6.373818490420999e-06 3.3241778362372024e-09 0.05005985336205349 2.6108031673872023e-05 0.25677649790009943 5.869380504047875e-05']
['59907.14741986493 0.30687837102934756 5.256880487281757e-05 0.026043339504026142 1.3577754218472858e-05 6.376809564132601e-06 3.3245641537796765e-09 0.050083345200050276 2.61110658047555e-05 0.2567950258292973 5.869639685037439e-05']
['59907.14756014514 0.30696476543925755 5.257306301329289e-05 0.026045594679968025 1.3581192273912875e-05 6.377361752438282e-06 3.32540597457645e-09 0.050087682076861595 2.6117677449832455e-05 0.25687708336239595 5.87031517890918e-05']
['59907.14770042535 0.30687789363740753 5.256964948598196e-05 0.026059422877831057 1.3578408477580905e-05 6.38074763865975e-06 3.324724351581382e-09 0.050114274765059724 2.6112323995347898e-05 0.2567636188723478 5.869771300073815e-05']
['59907.147840705555 0.30681766967607205 5.2566546277979555e-05 0.026031628426397516 1.3576509696308202e-05 6.373942062757942e-06 3.324259427849996e-09 0.05006082389691831 2.610867249290039e-05 0.25675684577915375 5.8693309388178985e-05']
['59907.14798098576 0.30684670937175706 5.256981007785041e-05 0.026041553947150485 1.3576951656659973e-05 6.3763723638203974e-06 3.3243676435032803e-09 0.05007991143682786 2.6109522416653794e-05 0.2567667979349292 5.869661057034733e-05']
['59907.14812126597 0.3069108103854671 5.2570424475721655e-05 0.026058969656683428 1.3578702089029212e-05 6.380636665758275e-06 3.324796243448069e-09 0.050113403185929675 2.6112888632748488e-05 0.2567974071995374 5.8698658266640814e-05']
['59907.14826154618 0.30685874334201035 5.2568038550474196e-05 0.026015840904683882 1.3574823777181668e-05 6.370076428727333e-06 3.323846624215163e-09 0.050030463278238235 2.6105430340733976e-05 0.2568282800637721 5.8693203783053585e-05']
['59907.14840182639 0.3078365794845431 5.321167475904797e-05 0.026004914565070245 1.3575434383772351e-05 6.367401073405162e-06 3.32399613353392e-09 0.050009451086673554 2.61066045841776e-05 0.2578271283978696 5.927087930491082e-05']
['59907.148542106595 0.30691618495921136 5.257289495178994e-05 0.02606064823575599 1.3576850673986839e-05 6.381047672153304e-06 3.3243429175162098e-09 0.05011663122260768 2.610932821920546e-05 0.2567995537366037 5.869928707974347e-05']
['59907.1486823868 0.30697885371577477 5.257418696940431e-05 0.02605293721948515 1.35770887792025e-05 6.3791596008367405e-06 3.3244012184732073e-09 0.05010180234516375 2.6109786113850963e-05 0.256877051370611 5.8700647921508726e-05']
['59907.14882266701 0.3068222903392299 5.256516843200978e-05 0.02607020191245289 1.35772501230169e-05 6.383386925801017e-06 3.3244407241125907e-09 0.05013500367779402 2.6110096390417118e-05 0.2566872866614359 5.8692708795918e-05']
['59907.14896294722 0.30687072882687205 5.257432193993643e-05 0.026045810324340803 1.3576344413291378e-05 6.377414553773478e-06 3.3242189576820934e-09 0.05008809677757847 2.610835464094496e-05 0.2567826320492936 5.870013210804072e-05']
['59907.14910322743 0.30685227205114496 5.256719177329175e-05 0.026000086599659307 1.3573988782037995e-05 6.366218927927889e-06 3.32364217251582e-09 0.05000016653780636 2.61038245808423e-05 0.2568521055133386 5.8691731178057944e-05']
['59907.149243507636 0.306929824342716 5.257923176456669e-05 0.026041702803773402 1.3576273395764598e-05 6.376408811924012e-06 3.3242015687737344e-09 0.05008019769956424 2.6108218068778074e-05 0.25684962664315175 5.8704468856117666e-05']
['59907.149383787844 0.3068902734258801 5.257043272290936e-05 0.026032457898388733 1.3576699380668235e-05 6.3741451620926466e-06 3.324305872778498e-09 0.05006241903536295 2.610903727051584e-05 0.25682785439051714 5.8696952424015375e-05']
['59907.14952406805 0.30688683896625035 5.2571825946886374e-05 0.026054745734311404 1.3576374405041137e-05 6.379602422489438e-06 3.324226301274749e-09 0.05010528025829117 2.6108412317386805e-05 0.25678155870795916 5.8697922255599394e-05']
['59907.14966434826 0.3068216281352033 5.25653381611894e-05 0.026049865853143624 1.3575257715373062e-05 6.378407565243971e-06 3.323952875612328e-09 0.05009589587143005 2.6106264837255893e-05 0.25672573226377327 5.869115640156648e-05']
['59907.14980462847 0.3069794704436284 5.257471091810938e-05 0.02627581992013672 1.364242625222104e-05 6.433733267818846e-06 3.3403993443194136e-09 0.05053042292333985 2.623543510042508e-05 0.2564490475202885 5.875711261652827e-05']
['59907.149944908684 0.306914730935424 5.25740696260794e-05 0.026063806944395675 1.3576785724023398e-05 6.381821093836062e-06 3.32432701427354e-09 0.05012270566229938 2.6109203315429614e-05 0.2567920252731246 5.870028360079946e-05']
['59907.15008518889 0.3068192897368298 5.2568419903754815e-05 0.02601582606742442 1.3575371754186094e-05 6.370072795768587e-06 3.3239807984443253e-09 0.05003043474504697 2.6106484142665567e-05 0.25678885499178283 5.869401405142379e-05']
['59907.1502254691 0.3069219637187622 5.2571013088868783e-05 0.026035720473759863 1.3576819022995781e-05 6.374944015934993e-06 3.3243351676520858e-09 0.050068693218768966 2.6109267351914967e-05 0.25685327049999324 5.869757455673774e-05']
['59907.15036574931 0.30686111294248325 5.2568029642523986e-05 0.026033738442886797 1.357654215356902e-05 6.374458708226056e-06 3.324267375132301e-09 0.050064881620936155 2.6108734910709655e-05 0.2567962313215471 5.869466567870533e-05']
['59907.15050602952 0.3068797975652692 5.256949021687329e-05 0.02602944424185321 1.3574840057897687e-05 6.373407256962786e-06 3.3238506106096733e-09 0.050056623542025405 2.6105461649803246e-05 0.2568231740232438 5.869451788379631e-05']
['59907.150646309725 0.3068217638535663 5.256322866914799e-05 0.026041517377581473 1.357567713546789e-05 6.376363409623974e-06 3.32405557219898e-09 0.0500798411107336 2.610707141436133e-05 0.2567419227428327 5.868962588021586e-05']
['59907.15078658993 0.3069225901055326 5.257067655698668e-05 0.026047324268286147 1.3575822427023752e-05 6.37778524863881e-06 3.324091147382526e-09 0.050091008208242596 2.6107350821199527e-05 0.25683158189729 5.869642067929268e-05']
['59907.15092687014 0.3068325659327902 5.257489324784401e-05 0.026042096233173113 1.3575978895529402e-05 6.3765051445912755e-06 3.324129459284237e-09 0.05008095429456368 2.610765172217193e-05 0.2567516116382265 5.870033116148852e-05']
['59907.15106715035 0.3068321473928271 5.256565436913816e-05 0.02602010530205691 1.357579852478792e-05 6.3711205824522955e-06 3.3240852948302436e-09 0.050038664042417136 2.6107304855361386e-05 0.25679348335040997 5.869190221884506e-05']
['59907.15120743056 0.30689767011185975 5.256976619913425e-05 0.02605331285873015 1.3575835863649776e-05 6.379251577517758e-06 3.324094437390911e-09 0.05010252472832722 2.6107376660864956e-05 0.25679514538353254 5.869561682394959e-05']
['59907.151347710766 0.30701939889823665 5.25782994363296e-05 0.026027239827127624 1.3576223428485615e-05 6.372867497731707e-06 3.3241893340976683e-09 0.05005238428293774 2.6108121977856955e-05 0.2569670146152989 5.870359107266773e-05']
['59907.151487990974 0.30691078685795803 5.257089218776827e-05 0.026063265429363377 1.3577422700878906e-05 6.381688501845064e-06 3.3244829804507544e-09 0.05012166428723727 2.6110428270920974e-05 0.25678912257072073 5.8697982673247506e-05']
['59907.15162827118 0.3068784499134168 5.257117507649064e-05 0.026045718637890992 1.35793171108938e-05 6.377392104001629e-06 3.324946833863236e-09 0.05008792045748268 2.6114071367103465e-05 0.2567905294559341 5.869985666327648e-05']
['59907.15176855139 0.30684397604432134 5.2571173131281584e-05 0.026033901961412413 1.3577050511647928e-05 6.374498746351654e-06 3.324391848518638e-09 0.05006519607963926 2.6109712522399863e-05 0.25677877996468207 5.869791591190906e-05']
['59907.1519088316 0.30693178220449285 5.257006839392222e-05 0.0260560069314252 1.3577525916214914e-05 6.37991123134309e-06 3.3245082531137212e-09 0.050107705637356156 2.611062676195176e-05 0.2568240765671367 5.8697333166368053e-05']
['59907.152049111806 0.3069051644845977 5.2570817422973486e-05 0.02603351236806331 1.3577554804529345e-05 6.3744033529558e-06 3.3245153265260897e-09 0.05006444686166022 2.611068231640259e-05 0.2568407176229375 5.869802871943581e-05']
['59907.152189392014 0.30693735591243054 5.257338954638504e-05 0.026033740499401894 1.3578200133053257e-05 6.374459211771507e-06 3.324673337640703e-09 0.05006488557577288 2.6111923332794725e-05 0.25687247033665767 5.870088439311368e-05']
['59907.15232967222 0.3069332961063106 5.257259522050986e-05 0.02604507508795117 1.3579749777911907e-05 6.377234528380015e-06 3.325052774008843e-09 0.05008668286144456 2.611490341906136e-05 0.256846613244866 5.870149869301872e-05']
['59907.15246995243 0.30666962754612964 5.2572410278813125e-05 0.02602557564176701 1.3574967162361919e-05 6.372460015691148e-06 3.323881732615476e-09 0.050049183926475026 2.6105706081465233e-05 0.25662044361965464 5.869724194999035e-05']
['59907.15261023264 0.30687846823398657 5.256752229732427e-05 0.02602708288779992 1.3576456665165867e-05 6.372829070547446e-06 3.3242464429754723e-09 0.050052082476538313 2.6108570509934364e-05 0.25682638575744826 5.869413816176109e-05']
['59907.15275051285 0.30687020152241457 5.257056304643702e-05 0.026032735813008755 1.3575611155768798e-05 6.37421321053193e-06 3.3240394168216655e-09 0.0500629534865553 2.6106944530324614e-05 0.25680724803585925 5.8696138303374404e-05']
['59907.152890793055 0.306883627721914 5.256946644754123e-05 0.02605466584668293 1.3576632469062166e-05 6.37958286170334e-06 3.324289489220258e-09 0.05010512662823641 2.6108908594350322e-05 0.2567785010936776 5.869602976835233e-05']
['59907.15303107326 0.30674594775206576 5.256771792185928e-05 0.026025283580793424 1.3576831464506695e-05 6.372388503464025e-06 3.324338214002796e-09 0.05004862227075659 2.6109291277897493e-05 0.2566973254813092 5.8694633984260087e-05']
['59907.15317135347 0.3068156086707545 5.2564926863829075e-05 0.02600461942068591 1.3578833682194525e-05 6.367328806193327e-06 3.324828464529202e-09 0.05000888350131906 2.6113141696527933e-05 0.2568067251694355 5.869384725388723e-05']
['59907.15331163368 0.306856160562612 5.256646937824012e-05 0.026070317944273863 1.3577270697247348e-05 6.3834153366285e-06 3.324445761790246e-09 0.05013522681591128 2.61101359562449e-05 0.25672093374670074 5.869389152669167e-05']
['59907.15345191389 0.30693381219076366 5.257444101444358e-05 0.02604821538293136 1.3576572061573828e-05 6.378003441409036e-06 3.3242746982196906e-09 0.05009272189025262 2.6108792426103517e-05 0.25684109030051105 5.870043347310621e-05']
['59907.153592194096 0.3068943799406107 5.258552722344118e-05 0.026062882409637875 1.357772315144498e-05 6.3815947180256555e-06 3.3245565469011317e-09 0.05012092771084207 2.6111006060471116e-05 0.2567734522297686 5.871134737729354e-05']
['59907.153732474304 0.3068956997570901 5.257136653959567e-05 0.02603448668508199 1.357905371341368e-05 6.374641918139895e-06 3.324882340000222e-09 0.0500663205482346 2.6113564833487845e-05 0.25682937920885546 5.869980279484159e-05']
['59907.15387275451 0.3068578570808804 5.257366259283727e-05 0.026088847905207366 1.3588007706098134e-05 6.387952467209833e-06 3.3270747587635137e-09 0.050170861356168016 2.613078405018872e-05 0.25668699572471243 5.870952114864415e-05']
['59907.15401303472 0.3068644919941437 5.2569123777807005e-05 0.026009255078899726 1.3574566358062732e-05 6.368463864530578e-06 3.323783594176356e-09 0.05001779822865332 2.6104935303966796e-05 0.25684669376549035 5.8693955583098044e-05']
['59907.15415331493 0.306840597001939 5.256673783226392e-05 0.026057578107243334 1.3576763687401368e-05 6.380295939647586e-06 3.324321618523809e-09 0.0501107271293141 2.6109160937310323e-05 0.2567298698726249 5.869369822371341e-05']
['59907.15429359514 0.3068474662242934 5.2567600496500574e-05 0.026058865858492035 1.3576663970754697e-05 6.380611250380976e-06 3.3242972025280763e-09 0.05011320357402315 2.6108969174528264e-05 0.2567342626502702 5.8694385534871684e-05']
['59907.154433875345 0.30686577215383787 5.2569835159741505e-05 0.026047493652819134 1.35798432500018e-05 6.3778267230783605e-06 3.325075661001378e-09 0.050091333947729105 2.611508317308039e-05 0.2567744382061088 5.869910678928003e-05']
['59907.15457415555 0.3069607627746078 5.257404063809488e-05 0.0260531766352675 1.3576459683369547e-05 6.379218222690917e-06 3.3242471819939873e-09 0.05010226276012981 2.6108576314172208e-05 0.256858500014478 5.8699978757824146e-05']
['59907.15471443576 0.3068711891532923 5.2570682931995006e-05 0.026068618183484382 1.3577742702951405e-05 6.38299914381047e-06 3.3245613341609665e-09 0.05013195804516228 2.6111043659521935e-05 0.25673923110813 5.869806900508578e-05']
['59907.15485471597 0.30693362343791686 5.257448105603728e-05 0.026058085936069522 1.357965047307081e-05 6.380420283444405e-06 3.325028458845253e-09 0.050111703723210624 2.61147124482131e-05 0.25682191971470625 5.8703102682605105e-05']
['59907.15499499618 0.3068734551726724 5.256869637079261e-05 0.02607796454661957 1.3580420146403917e-05 6.385287635953388e-06 3.3252169162537608e-09 0.05014993182042225 2.6116192589238304e-05 0.2567235233522501 5.86985805065401e-05']
['59907.155135276385 0.30697654290852827 5.2577403114062437e-05 0.026014256322189604 1.357426706098388e-05 6.3696884377477925e-06 3.32371031016166e-09 0.05002741600421078 2.610435973266131e-05 0.2569491269043175 5.8701115110965416e-05']
['59907.1552755566 0.3068494860170363 5.2567760790826686e-05 0.026040635934544122 1.3579486984657727e-05 6.376147584983285e-06 3.3249884280928217e-09 0.05007814602796947 2.6114398047418707e-05 0.25677133998906687 5.869694421297076e-05']
['59907.15541583681 0.3068254863873487 5.2566500827974285e-05 0.026041060565153266 1.3576281177083214e-05 6.376251557383951e-06 3.3242034740588447e-09 0.05007896262529475 2.6108233032852338e-05 0.2567465237620539 5.8693073197738956e-05']
['59907.15555611702 0.30688255882653814 5.2579062996677495e-05 0.02604079248976226 1.3575674433390633e-05 6.376185918116874e-06 3.3240549105852076e-09 0.05007844709569665 2.610706621805891e-05 0.2568041117308415 5.8703805431357626e-05']
['59907.155696397225 0.3069017860165456 5.2570015958033424e-05 0.026045586163075014 1.357656727272453e-05 6.377359667045017e-06 3.3242735256519408e-09 0.050087665698221186 2.6108783216777944e-05 0.2568141203183244 5.8696466153326424e-05']
['59907.15583667743 0.30696359939944273 5.2573673989046905e-05 0.026027448403312642 1.3577243114578562e-05 6.372918568394563e-06 3.3244390080701215e-09 0.05005278539098586 2.6110082912651082e-05 0.2569108140084569 5.870032049667277e-05']
['59907.15597695764 0.30687856819885817 5.256883280484117e-05 0.026029068854256737 1.3575796911541036e-05 6.373315341898856e-06 3.3240848998206803e-09 0.050055901642801416 2.6107301752963534e-05 0.25682266655605673 5.869474752721608e-05']
['59907.15611723785 0.3069344773098388 5.2573720587828325e-05 0.026013814848078538 1.3574513930426796e-05 6.3695803411523725e-06 3.3237707570726422e-09 0.05002656701553566 2.6104834481589995e-05 0.25690791029430315 5.8698027903484576e-05']
['59907.15625751806 0.3070014520066653 5.258227080564172e-05 0.0260393614676027 1.357627215190304e-05 6.375835526962462e-06 3.324201264209557e-09 0.0500756951300052 2.6108215676736617e-05 0.2569257568766601 5.870718975475523e-05']
['59907.156397798266 0.3069286727751914 5.2571873577384335e-05 0.026019843564038518 1.357692886112293e-05 6.3710564949147225e-06 3.324362061930356e-09 0.05003816070007407 2.610947857908256e-05 0.25689051207511737 5.869843918800612e-05']
['59907.156538078474 0.30696604929140686 5.2577832793325106e-05 0.026034440694000755 1.3575762650732744e-05 6.374630657050792e-06 3.324076510932997e-09 0.05006623210384761 2.610723586679374e-05 0.2568998171875593 5.870277903001914e-05']
['59907.15667835868 0.30693340149591886 5.257345090089645e-05 0.02606378813630813 1.3577704802455236e-05 6.381816488605135e-06 3.3245520540820266e-09 0.05012266949290026 2.611097077395238e-05 0.2568107320030186 5.8700515622839e-05']
['59907.15681863889 0.30699437910546246 5.2581115233996265e-05 0.026030701045805033 1.3575856351428137e-05 6.373714990134217e-06 3.3240994539004477e-09 0.05005904047270199 2.6107416060438725e-05 0.25693533863276047 5.870579913946873e-05']
['59907.1569589191 0.3068581086752119 5.257046430708217e-05 0.026019284757442092 1.3575664410410664e-05 6.370919669019256e-06 3.3240524564208897e-09 0.05003708607200403 2.6107046943097432e-05 0.2568210226032079 5.869609541997911e-05']
['59907.15709919931 0.3068459612656599 5.256731796116937e-05 0.026044228501378844 1.3576461902575916e-05 6.377027238475798e-06 3.3242477253750078e-09 0.050085054810343935 2.6108580581876762e-05 0.25676090645531596 5.869395963496612e-05']
['59907.157239479515 0.3069061635618404 5.256976236367903e-05 0.026036981902425326 1.3579306422261374e-05 6.375252881484941e-06 3.3249442167114124e-09 0.050071119043125625 2.6114050812041106e-05 0.2568350445187148 5.869858230645396e-05']
['59907.15737975972 0.30696416280728844 5.257432210630816e-05 0.02601892285247646 1.3586903408298097e-05 6.370831055228164e-06 3.326804367296558e-09 0.050036390100916275 2.6128660400573265e-05 0.2569277727063722 5.870916656933846e-05']
['59907.15752003993 0.30683896177320313 5.2576966607847264e-05 0.02605659870063951 1.3579660474526248e-05 6.380056128259439e-06 3.325030907739209e-09 0.05010884365507598 2.6114731681781248e-05 0.2567301181181272 5.870533730840932e-05']
['59907.15766032014 0.3069282944078572 5.257183775346583e-05 0.026076917717323865 1.3577834077466639e-05 6.385031315865719e-06 3.324583707554462e-09 0.050147918687161286 2.611121937974354e-05 0.2567803757206959 5.8699181444666077e-05']
['59907.15780060035 0.3069114826527206 5.2571451176219156e-05 0.02604902891104486 1.3576923950965226e-05 6.378202636825356e-06 3.3243608596597872e-09 0.050094286367393964 2.6109469136471594e-05 0.2568171962853266 5.86980566744927e-05']
['59907.157940880556 0.3068957613891353 5.2577403332908916e-05 0.02600831946695517 1.3575322787337552e-05 6.36823477642936e-06 3.3239688087274127e-09 0.050015998974913795 2.610638997564914e-05 0.2568797624142215 5.8702018183296355e-05']
['59907.158081160764 0.30687824531728525 5.2568751549740696e-05 0.026040597466042238 1.3580350988778988e-05 6.3761381658260105e-06 3.325199982749361e-09 0.05007807205008123 2.611605959380575e-05 0.256800173267204 5.869857075096103e-05']
['59907.15822144097 0.30692272370233076 5.25712403884259e-05 0.026059212257282964 1.3578397441512336e-05 6.3806960674269105e-06 3.324721649358513e-09 0.050113869725544165 2.611230277213911e-05 0.2568088539767866 5.8699128375483795e-05']
['59907.15836172118 0.3068331696402182 5.256466873799351e-05 0.026070332319931416 1.3578083790714755e-05 6.383418856562284e-06 3.324644850781836e-09 0.05013525446140657 2.6111699597528374e-05 0.2566979151788116 5.869297449786095e-05']
['59907.15850200139 0.3072949311448626 5.2756446934876e-05 0.02603164948248517 1.3577053743015698e-05 6.373947218420145e-06 3.3243926397311817e-09 0.05006086438939456 2.610971873656865e-05 0.25723406675546806 5.886391174306301e-05']
['59907.158642281596 0.30692414988174477 5.257180681775256e-05 0.02604746231929013 1.3584743008881022e-05 6.377819050946014e-06 3.3262753853792034e-09 0.050091273690942566 2.6124505786309657e-05 0.2568328761908022 5.870506515337515e-05']
['59907.158782561804 0.3068531591890575 5.256760956561402e-05 0.026041929745324335 1.3579710088537163e-05 6.37646437941574e-06 3.3250430559162605e-09 0.050080634125623726 2.61148270933407e-05 0.25677252506343373 5.8696999664019595e-05']
['59907.15892284201 0.30679493646770883 5.256611581118204e-05 0.026023689265621194 1.3575268785699726e-05 6.371998129401707e-06 3.3239555862234202e-09 0.050045556280040766 2.610628612634563e-05 0.2567493801876681 5.869186235574084e-05']
['59907.15906312222 0.30693258275118884 5.257140319074619e-05 0.026049329718145685 1.3576646108922134e-05 6.378276290574607e-06 3.324292828991238e-09 0.050094864842587856 2.610893482485026e-05 0.256837717908601 5.8697776032250807e-05']
['59907.15920340243 0.3069062770305544 5.2569529861696936e-05 0.0260441990626448 1.3576645022760347e-05 6.3770200302911186e-06 3.324292563040442e-09 0.05008499819739384 2.6108932736077592e-05 0.2568212788331605 5.869609730209386e-05']
['59907.15934368264 0.30696672576380285 5.257442354702193e-05 0.026024751656126617 1.3576104058265944e-05 6.372258259710063e-06 3.3241601058507166e-09 0.050047599338705034 2.6107892419742203e-05 0.25691912642509784 5.8700017528979384e-05']
['59907.159483962845 0.30689794652723534 5.256821218906291e-05 0.026040568149433188 1.357811723409579e-05 6.376130987544095e-06 3.324653039519383e-09 0.0500780156719869 2.6111763911722675e-05 0.25681993085524846 5.869617659895647e-05']
['59907.15962424305 0.30686768056468405 5.256869516458656e-05 0.026026007163158314 1.3575612191146263e-05 6.372565675325726e-06 3.3240396703377296e-09 0.05005001377530445 2.6106946521435124e-05 0.2568176667893796 5.8694466246659917e-05']
['59907.15976452326 0.3068841399218482 5.2570389949584524e-05 0.02603914933937549 1.3576790533462273e-05 6.375783586568724e-06 3.3243281918827254e-09 0.05007528719110672 2.6109212564350524e-05 0.2568088527307415 5.8696992088026254e-05']
['59907.15990480347 0.30692105104284567 5.257261549841727e-05 0.026033950620029667 1.3575949531627265e-05 6.374510660596978e-06 3.3241222694224318e-09 0.05006528965390321 2.6107595253129356e-05 0.25685576138894245 5.869826599010951e-05']
['59907.16004508368 0.30695810861513306 5.257482958591107e-05 0.02600914009406733 1.3575237118888926e-05 6.368435710062184e-06 3.323947832485773e-09 0.05001757710397564 2.6106225228632552e-05 0.2569405315111574 5.869963970652359e-05']
['59907.160185363886 0.30689787768064897 5.2573780216426466e-05 0.026019114769494006 1.3575174012911066e-05 6.37087804683125e-06 3.3239323807499037e-09 0.05003675917210386 2.6106103870982823e-05 0.2568611185085451 5.869864585804053e-05']
['59907.160325644094 0.3068015290955085 5.2566740303014614e-05 0.026034370563990564 1.3577854843774552e-05 6.374613485454206e-06 3.3245887922630067e-09 0.050066097238443394 2.611125931495106e-05 0.2567354318570651 5.86946339037667e-05']
['59907.1604659243 0.30682618454090727 5.256646662756254e-05 0.026052097795805126 1.3576389365381168e-05 6.378954064793626e-06 3.3242299643702355e-09 0.050100188068856015 2.610844108727148e-05 0.25672599647205124 5.869313511573711e-05']
['59907.16060620451 0.30687619628473 5.257524913473161e-05 0.0260325380268958 1.3590214818220533e-05 6.374164781858773e-06 3.3276151784623413e-09 0.05006257312864577 2.613502849657795e-05 0.25681362315608425 5.871283110271585e-05']
['59907.160746484726 0.3069475004551852 5.2581250954487676e-05 0.026046110913090302 1.3577628022095785e-05 6.377488154058587e-06 3.324533254122428e-09 0.05008867483286597 2.6110823119414973e-05 0.2568588256223192 5.8707435950756586e-05']
['59907.160886764934 0.30689969235538206 5.258053172812267e-05 0.026012127227042645 1.3576741170221957e-05 6.369167120798636e-06 3.3243161051077972e-09 0.05002332159046662 2.6109117635042227e-05 0.25687637076491543 5.870603325462033e-05']
['59907.16102704514 0.3068517813451267 5.2576482716240474e-05 0.026018743155366703 1.3575526538241372e-05 6.37078705571543e-06 3.324018697902032e-09 0.050036044529551356 2.6106781804310334e-05 0.25681573681557535 5.870136788005031e-05']
['59907.16116732535 0.3068322031395189 5.257356276128634e-05 0.026022032509419233 1.3575988418287059e-05 6.371592466418567e-06 3.324131790967242e-09 0.0500423702104216 2.610767003516742e-05 0.2567898329290973 5.8699147660592936e-05']
['59907.16130760556 0.3069661346566962 5.2582552753525764e-05 0.026041007258121446 1.3577053135275301e-05 6.37623850495685e-06 3.3243924909236614e-09 0.05007886011177201 2.610971756783712e-05 0.2568872745449242 5.870811021953902e-05']
['59907.16144788577 0.30687283926352055 5.257824021976878e-05 0.02606482156539309 1.357746175162436e-05 6.382069527600836e-06 3.3244925421725552e-09 0.050124656856525174 2.6110503368508387e-05 0.2567481824069954 5.8704597185949575e-05']
['59907.161588165975 0.3069360882686377 5.258802031324891e-05 0.026062904946373464 1.3577399439107913e-05 6.3816002362300715e-06 3.3244772847186948e-09 0.0501209710507182 2.6110383536745988e-05 0.2568151172179195 5.871330350868239e-05']
['59907.16172844618 0.30687692870951344 5.257568832679843e-05 0.026029918087871397 1.35772576122011e-05 6.373523279941338e-06 3.3244425578674907e-09 0.05005753478436807 2.6110110792694425e-05 0.25681939392514536 5.870213700235645e-05']
['59907.16186872639 0.3068343383757695 5.257974235875077e-05 0.026035273583643038 1.3576354133937288e-05 6.3748345932102064e-06 3.3242213378187802e-09 0.050067833814698155 2.6108373334494786e-05 0.25676650456107136 5.870499522771438e-05']
['59907.1620090066 0.30689130972285333 5.2579033065730464e-05 0.026043088095463646 1.3577108793473771e-05 6.376748005801129e-06 3.3244061190427537e-09 0.05008286172204547 2.6109824602834176e-05 0.2568084480008079 5.870500539918161e-05']
['59907.16214928681 0.3068944618401371 5.257800153278131e-05 0.026011101026889336 1.3574800693680076e-05 6.36891585183402e-06 3.323840972133037e-09 0.05002134812863334 2.6105385949384764e-05 0.25687311371150373 5.8702107464276696e-05']
['59907.162289567015 0.30694675548549966 5.2583491466737025e-05 0.026040831842654252 1.3576393597716878e-05 6.376195553820391e-06 3.324231000673542e-09 0.0500785227743351 2.6108449226378615e-05 0.25686823271116455 5.8708386929286315e-05']
['59907.16242984722 0.30687580611524196 5.2576436531882764e-05 0.0260464113419629 1.3581106731654186e-05 6.377561715197236e-06 3.3253850292328903e-09 0.05008925258069789 2.611751294548882e-05 0.25678655353454405 5.8706099860652235e-05']
['59907.16257012743 0.30696189370892896 5.2587836768793574e-05 0.026027829741052205 1.3576992046748038e-05 6.373011940373392e-06 3.3243775331681535e-09 0.0500535187327927 2.6109600089900074e-05 0.2569083749761363 5.871279070931467e-05']
['59907.16271040764 0.3067950705004071 5.2572417674652837e-05 0.026026073814711177 1.3575639590979545e-05 6.372581995208962e-06 3.324046379289894e-09 0.05005014195136765 2.6106999213422206e-05 0.25674492854903946 5.86978237082754e-05']
['59907.16285068785 0.30689483164731535 5.257767472200482e-05 0.02604813297539224 1.3577422047514574e-05 6.377983263613346e-06 3.324482820472042e-09 0.05009256341421585 2.6110427014451108e-05 0.2568022682330995 5.870405674269814e-05']
['59907.162990968056 0.3069569903837804 5.258292282801105e-05 0.026024820882600337 1.3576531185286383e-05 6.372275210072348e-06 3.324264689507072e-09 0.05004773246653911 2.610871381785843e-05 0.2569092579172413 5.870799528479402e-05']
['59907.163131248264 0.3069208810270112 5.25801411237253e-05 0.026023767589577505 1.3575917660400364e-05 6.3720173073167975e-06 3.324114465632734e-09 0.050045706903033664 2.6107533962308396e-05 0.25687517412397753 5.8704979091930136e-05']
['59907.16327152847 0.3068860930433047 5.257535770078111e-05 0.026045712380014147 1.3578006950507818e-05 6.377390571736963e-06 3.324626036168356e-09 0.05008790842310413 2.6111551827899654e-05 0.2567981846202006 5.870248185746641e-05']
['59907.16341180868 0.3069306690670642 5.258169921367388e-05 0.026006437784013604 1.3575552888314597e-05 6.367774039288619e-06 3.3240251498165e-09 0.050012380353872316 2.610683247752807e-05 0.2569182887131919 5.870606266994055e-05']
['59907.16355208889 0.30685301461910053 5.2579707934976726e-05 0.026055482662929657 1.3578214483570943e-05 6.379782862231439e-06 3.3246768514188964e-09 0.050106697428710885 2.6111950929944123e-05 0.25674631719038965 5.870655557853198e-05']
['59907.1636923691 0.3068250213110189 5.2575809347518465e-05 0.02601534042260105 1.357564707495879e-05 6.369953883808238e-06 3.324048211770341e-09 0.050029500812694326 2.6107013605689982e-05 0.2567955204983246 5.8700867863723205e-05']
['59907.163832649305 0.3068412478399002 5.259096550081733e-05 0.02600612873881731 1.3574261186018726e-05 6.367698368410728e-06 3.3237088716543604e-09 0.05001178603618714 2.6104348434651397e-05 0.256829461803713 5.871325795342859e-05']
['59907.16397292951 0.306891443909977 5.257868215886684e-05 0.026042289466531254 1.3575645937122656e-05 6.376552458505304e-06 3.324047933166887e-09 0.05008132589717549 2.610701141754357e-05 0.2568101180128015 5.870343995643605e-05']
['59907.16411320972 0.30688826445407186 5.257811318327229e-05 0.026047032399611217 1.3576015810596007e-05 6.3777137834967345e-06 3.3241384980770445e-09 0.050090446922329265 2.610772271268463e-05 0.2567978175317426 5.870324668325782e-05']
['59907.16425348993 0.30702323916763924 5.258623208737391e-05 0.026035718212750376 1.3577649200297631e-05 6.374943462318322e-06 3.3245384396847506e-09 0.050068688870673804 2.6110863846726216e-05 0.25695455029696546 5.871191545137518e-05']
['59907.16439377014 0.30686670845733544 5.257626455066403e-05 0.026043336800397016 1.357670118207171e-05 6.376808902138848e-06 3.3243063138589096e-09 0.0500833400007635 2.610904073475329e-05 0.25678336845657196 5.870217715034441e-05']
['59907.164534050346 0.3068513859332882 5.257408005172785e-05 0.02602237040345698 1.3579969888263512e-05 6.371675201043719e-06 3.325106668855741e-09 0.050043020006648044 2.611532670819906e-05 0.25680836592664014 5.8703016808009645e-05']
['59907.164674330554 0.3068585188126457 5.25817556479236e-05 0.026026727279191815 1.3578200660291693e-05 6.372741998443159e-06 3.324673466737016e-09 0.050051398613830414 2.6111924346714796e-05 0.2568071201988153 5.870837776762787e-05']
['59907.16481461076 0.30685797272078386 5.2576796830111936e-05 0.026043713564160877 1.3576697097875089e-05 6.376901154162534e-06 3.324305313828016e-09 0.050084064546463226 2.610903288052902e-05 0.2567739081743206 5.870265039051826e-05']
['59907.16495489097 0.3069646904773611 5.2582582755986946e-05 0.02602309793101904 1.3576707390089673e-05 6.371853338901777e-06 3.3243078339154414e-09 0.050044419098113545 2.6109052673249372e-05 0.25692027137924756 5.870784139094816e-05']
['59907.16509517118 0.30687618516143 5.257810501642674e-05 0.026029968088463987 1.357515299425368e-05 6.373535522774366e-06 3.323927234252642e-09 0.05005763093935382 2.610606345048785e-05 0.25681855422207617 5.870250144584382e-05']
['59907.165235451386 0.3068761866275558 5.2577538310884056e-05 0.026014729622887454 1.3575651964170931e-05 6.369804327202611e-06 3.324049408912311e-09 0.0500283261978605 2.6107023008021025e-05 0.25684786042969526 5.870242060744872e-05']
['59907.165375731594 0.30689714237897525 5.257775398204856e-05 0.02600693638104183 1.3584556165575849e-05 6.3678961226450086e-06 3.326229636093662e-09 0.05001333919431122 2.612414647226125e-05 0.25688380318466403 5.871023115864034e-05']
['59907.1655160118 0.3070041555982195 5.2589078904350265e-05 0.02602537311021781 1.357538055221513e-05 6.372410425080091e-06 3.3239829526748027e-09 0.050048794442726564 2.6106501061952174e-05 0.2569553611554929 5.871252521997064e-05']
['59907.16565629201 0.3068851279521464 5.2577930359163897e-05 0.02604559782020356 1.3576899847247996e-05 6.377362521336756e-06 3.324354957774027e-09 0.05008768811577608 2.6109422783169226e-05 0.2567974398363703 5.870383904757307e-05']
['59907.16579657222 0.30688050926856614 5.258179865381492e-05 0.0260485592172253 1.357748874978635e-05 6.378087630528244e-06 3.3244991527739936e-09 0.050093383110048656 2.6110555288050675e-05 0.2567871261585175 5.8707807377900625e-05']
['59907.16593685243 0.3068864360159024 5.257914403528764e-05 0.026034284056735357 1.3575331812130521e-05 6.374592303827622e-06 3.3239710184818916e-09 0.05006593087833723 2.6106407331020232e-05 0.25682050513756516 5.870358499458676e-05']
['59907.16607713264 0.30682107840121553 5.25747780358912e-05 0.026023559226884575 1.3576442990994802e-05 6.371966288928281e-06 3.324243094803291e-09 0.050045306205547264 2.6108544213451543e-05 0.2567757721956683 5.870062492400726e-05']
['59907.16621741285 0.30701995571636176 5.25873593911312e-05 0.026022640518208504 1.3576885338652156e-05 6.3717413396558835e-06 3.3243514052898035e-09 0.05004353945809328 2.6109394882023378e-05 0.2569764162582685 5.871227187596664e-05']
['59907.16635769306 0.30678253744516926 5.2575995755684034e-05 0.026027474291394292 1.3576598913593014e-05 6.372924907188658e-06 3.3242812730375144e-09 0.05005283517575826 2.6108844064601953e-05 0.256729702269411 5.870184893247747e-05']
['59907.16649797327 0.3068853217600783 5.258810395918671e-05 0.02601927125241632 1.3575515066485524e-05 6.370916362262935e-06 3.3240158889994944e-09 0.05003706010080062 2.6106759743241392e-05 0.2568482616592777 5.871176698340426e-05']
['59907.166638253475 0.3068518393953388 5.257475939147618e-05 0.026015534037821416 1.3576548566821817e-05 6.370001291222668e-06 3.3242689454413533e-09 0.050029873149656574 2.6108747243888112e-05 0.2568219662456822 5.870069852835525e-05']
['59907.16677853368 0.3068404153027977 5.25808492535864e-05 0.026033958888616794 1.3576475585570146e-05 6.374512685191614e-06 3.324251075707574e-09 0.0500653055550323 2.6108606895327204e-05 0.2567751097477654 5.870609050382341e-05']
['59907.16691881389 0.3069634148696545 5.258199940260694e-05 0.026048889515700592 1.3576428928820581e-05 6.37816850535138e-06 3.324239651627079e-09 0.05009401829942422 2.6108517170808814e-05 0.2568693965702303 5.8707080748698234e-05']
['59907.1670590941 0.3068638850420501 5.2576063691167e-05 0.026033416408923322 1.358044230253296e-05 6.374379856999701e-06 3.325222341265233e-09 0.050064262324852546 2.6116235197178772e-05 0.25679962271719753 5.87051975052636e-05']
['59907.16719937431 0.3068033556496237 5.257209106373652e-05 0.02602999929924183 1.3577328262070421e-05 6.37354316485063e-06 3.3244598567535387e-09 0.05005769096008045 2.6110246657827734e-05 0.25674566468954324 5.869897562433615e-05']
['59907.167339654516 0.3069385803956385 5.257823010484958e-05 0.02605236060301768 1.3577351896696189e-05 6.3790184141274085e-06 3.3244656437804915e-09 0.0501006934673417 2.6110292109031136e-05 0.2568378869282968 5.870449416337257e-05']
['59907.167479934724 0.30706102271797847 5.2585314020981736e-05 0.026032312460787656 1.3580447081874662e-05 6.374109551149381e-06 3.3252235115050125e-09 0.05006213934766857 2.6116244388220505e-05 0.2569988833703099 5.8713486284077166e-05']
['59907.16762021493 0.3068315360079553 5.25850010026764e-05 0.026036823753763393 1.3579998645305732e-05 6.375214158190649e-06 3.325113710125615e-09 0.05007081491108345 2.6115382010203333e-05 0.25676072109687187 5.871282234734019e-05']
['59907.16776049514 0.30689181044553815 5.257886751616448e-05 0.026016557657188286 1.3576219988119486e-05 6.3702519282720245e-06 3.3241884917110905e-09 0.05003184164843902 2.6108115361768242e-05 0.25685996879709916 5.870409693561238e-05']
['59907.16790077535 0.3068679544258853 5.25760386080978e-05 0.026003032819932353 1.3574745263508618e-05 6.366940321035417e-06 3.3238273998472153e-09 0.050005832346023765 2.6105279352901188e-05 0.2568621220798616 5.8700301922674975e-05']
['59907.16804105556 0.30685748019652337 5.257772438673344e-05 0.02605026132196589 1.3577523101697779e-05 6.378504397271514e-06 3.3245075639686223e-09 0.05009665638839595 2.611062134941881e-05 0.2567608238081274 5.87041876610181e-05']
['59907.168181335765 0.3069481003433856 5.2591448400727246e-05 0.02604331783852786 1.3578216182583585e-05 6.376804259253915e-06 3.3246772674285277e-09 0.05008330353563051 2.6111954197276126e-05 0.2568647968077551 5.87170724481986e-05']
['59907.16832161597 0.306822158901383 5.2574599255150515e-05 0.026038462628725185 1.357976305078738e-05 6.375615442884924e-06 3.32505602392229e-09 0.05007396659370228 2.6114928943821884e-05 0.2567481923076807 5.870330485228697e-05']
['59907.16846189618 0.306903239640213 5.257931737704141e-05 0.026048919532825527 1.3578027751035327e-05 6.378175855157243e-06 3.3246311292556973e-09 0.05009407602466447 2.611159182891409e-05 0.2568091636155485 5.870604605724577e-05']
['59907.16860217639 0.3069686527280998 5.258382207630184e-05 0.026058850321142114 1.3577721272750966e-05 6.380607446002449e-06 3.3245560868958415e-09 0.05011317369450407 2.6111002447598013e-05 0.25685547903359573 5.8709818539752265e-05']
['59907.1687424566 0.30693354927721994 5.258270974012619e-05 0.02600633826604988 1.3574238362421361e-05 6.367749671941152e-06 3.323703283210761e-09 0.05001218897317285 2.6104304543118005e-05 0.2569213603040471 5.870584365541656e-05']
['59907.168882736805 0.3068656014618245 5.258970119671899e-05 0.026037630764982715 1.3577563214562515e-05 6.375411757920935e-06 3.324517385754321e-09 0.050072366855735996 2.61106984895433e-05 0.2567932346060885 5.871494909792587e-05']
['59907.16902301701 0.30690205428437595 5.257739721050391e-05 0.02605128317092753 1.357766011775105e-05 6.378754600830496e-06 3.3245411128642547e-09 0.050098621482552945 2.6110884841828943e-05 0.256803432801823 5.870401182759452e-05']
['59907.16916329722 0.30689518742736777 5.257786133377717e-05 0.026037403280031072 1.3579543959365537e-05 6.375356057375499e-06 3.3250023785641744e-09 0.05007192938467514 2.6114507614164496e-05 0.2568232580426926 5.8706038959924354e-05']
['59907.16930357743 0.3068686187678463 5.257533464158809e-05 0.02602720694875237 1.3576337344109808e-05 6.372859447337949e-06 3.3242172267664155e-09 0.050052321055293024 2.6108341046365016e-05 0.2568162977125533 5.870103308178044e-05']
['59907.16944385764 0.30692719304367766 5.258700375182382e-05 0.026014510901439386 1.3575978696390494e-05 6.369750772433964e-06 3.3241294105243273e-09 0.050027905579691126 2.610765133921249e-05 0.25689928746398655 5.871117799911884e-05']
['59907.169584137846 0.3069543012599121 5.258725282256079e-05 0.026032025947730127 1.3576021984810304e-05 6.3740393973503565e-06 3.3241400098566218e-09 0.05006158836101948 2.6107734586173664e-05 0.2568927128988926 5.8711438107459234e-05']
['59907.169724418054 0.3068349178441375 5.2589049021765834e-05 0.026034429070351264 1.3575873837592146e-05 6.374627810956525e-06 3.3241037354534293e-09 0.050066209750675515 2.6107449687677208e-05 0.25676870809346203 5.8712920266396964e-05']
['59907.16986469826 0.30685793162383357 5.257564181174265e-05 0.026041728597538928 1.3578858040366417e-05 6.376415127624449e-06 3.3248344287191427e-09 0.05008024730295948 2.6113188539166188e-05 0.2567776843208741 5.8703464357725107e-05']
['59907.17000497847 0.3068900606087176 5.257827133231522e-05 0.02601659682331521 1.3582041621201468e-05 6.370261518245412e-06 3.3256139404524213e-09 0.05003191696791387 2.6119310810002828e-05 0.2568581436408037 5.870854293443239e-05']
['59907.17014525868 0.30713804341750967 5.2635420532324546e-05 0.026039193695946705 1.3576866915945189e-05 6.375794447441905e-06 3.324346894420759e-09 0.05007537249220521 2.610935945374075e-05 0.25706267092530444 5.8755307383242356e-05']
['59907.17028553889 0.3068173363468234 5.257162686212775e-05 0.026094641187672296 1.3583043831628768e-05 6.38937097419602e-06 3.3258593354424564e-09 0.050182002283985186 2.6121238137747632e-05 0.2566353340628382 5.87034499222977e-05']
['59907.170425819095 0.30689815852797436 5.2578319775742477e-05 0.026045582827300746 1.3576575145102354e-05 6.377358850268149e-06 3.32427545323324e-09 0.05008765928327067 2.6108798355966068e-05 0.25681049924470367 5.8703910108550084e-05']
['59907.1705660993 0.3069017120597128 5.257588856643295e-05 0.02600382917397176 1.358272503686598e-05 6.367135311315144e-06 3.325781277346565e-09 0.05000736379609954 2.612062507089612e-05 0.25689434826361324 5.870699372855249e-05']
['59907.17070637951 0.3069577711571193 5.258234571170597e-05 0.026041724838584933 1.357744239349999e-05 6.3764142072304345e-06 3.324487802263044e-09 0.050080240074201796 2.611046614134614e-05 0.2568775310829175 5.870825770420842e-05']
['59907.17084665972 0.3069767041913072 5.2589703652952014e-05 0.026028896996484346 1.3580058205157403e-05 6.373273261877341e-06 3.3251282935791585e-09 0.05005557114708528 2.6115496548379623e-05 0.2569211330442219 5.8717085164998975e-05']
['59907.17098693993 0.3069109908533413 5.2578749476274205e-05 0.026055731607955202 1.357792204938057e-05 6.379843817356629e-06 3.3246052478082397e-09 0.05010717616914462 2.61113885565011e-05 0.25680381468419666 5.870544701164775e-05']
['59907.171127220136 0.3068476252927562 5.257584075707338e-05 0.02599949989914322 1.3574894374662774e-05 6.366075272101351e-06 3.3238639102737604e-09 0.04999903826758312 2.6105566105120722e-05 0.2568485870251731 5.870025223950887e-05']
['59907.171267500344 0.30685003139059497 5.257492461245772e-05 0.026037401136180024 1.357694414971699e-05 6.375355532445512e-06 3.3243658054000754e-09 0.05007192526188466 2.6109507980224982e-05 0.2567781061287103 5.870118486857863e-05']
['59907.17140778056 0.3068939750840941 5.257781780342054e-05 0.026006292732042857 1.3576456398659622e-05 6.367738522768388e-06 3.3242463777204164e-09 0.05001210140777473 2.610856999742235e-05 0.25688187367631937 5.870335895227792e-05']
['59907.17154806077 0.3069198552894905 5.257973076843235e-05 0.026042572494144697 1.3580231016746266e-05 6.376621758880244e-06 3.3251706071462215e-09 0.0500818701810475 2.6115828878358206e-05 0.256837985108443 5.8708300994701935e-05']
['59907.171688340975 0.30683387743074314 5.2573189950409195e-05 0.026029104181751955 1.3577604195928165e-05 6.373323991968842e-06 3.3245274201957332e-09 0.05005596958029222 2.611077729986186e-05 0.2567779078504509 5.870019584945852e-05']
['59907.17182862118 0.30688714214990087 5.258447657518593e-05 0.02601427678992973 1.3577184502495063e-05 6.369693449350892e-06 3.3244246566811773e-09 0.05002745536524948 2.6109970197105892e-05 0.2568596867846514 5.8709945668345114e-05']
In [12]:
fig, axs = plt.subplots(2, 2,figsize=(15,10))

#JWST pipeline: net aperture
dat = ascii.read('/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/GJ3470b_nrca3_level3_asn_phot.ecsv') #call the data 
normalized_net_aperture_sum_pipeline = dat['net_aperture_sum'].value/dat['net_aperture_sum'][0].value #normalized net aperture sum
std_net_aperture_sum_pipeline = np.std(normalized_net_aperture_sum_pipeline[0:20]) #calculated standard deviation
relative_error_net_aperture_sum_pipeline = (dat['net_aperture_sum_err'].value/dat['net_aperture_sum'].value)

#MAD: 
deviation = normalized_net_aperture_sum_pipeline[0:seg01_len] - np.median(normalized_net_aperture_sum_pipeline[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Pipeline Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Pipeline Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_net_aperture_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Error Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_net_aperture_sum_pipeline)*10**6)) #ppm

axs[0,0].errorbar(dat['MJD'],normalized_net_aperture_sum_pipeline,yerr=relative_error_net_aperture_sum_pipeline,color='navy',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,0].set_title("Net Aperture Sum")
axs[0,0].set_xlabel("Time (MJD)")
axs[0,0].set_ylabel("Normalized Flux")

#JWST pipeline: aperature background
normalized_aperture__bkg_pipeline = dat['aperture_bkg'].value/dat['aperture_bkg'][0].value #normalized aperture bkg
std_aperture_bkg_pipeline = np.std(normalized_aperture__bkg_pipeline[0:20]) #calculated standard deviation
relative_error_aperture_bkg_pipeline = (dat['aperture_bkg_err'].value/dat['aperture_bkg'].value)

print(style.BOLD+"Pipeline Calculated Aperture Background std (ppm):"+style.END + " " +str(std_aperture_bkg_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Aperture Background (ppm):"+style.END + " " +str(np.median(relative_error_aperture_bkg_pipeline)*10**6))

axs[0,1].errorbar(dat['MJD'],normalized_aperture__bkg_pipeline,yerr=relative_error_aperture_bkg_pipeline,color='darkred',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,1].set_title("Aperture Background")
axs[0,1].set_xlabel("Time (MJD)")
axs[0,1].set_ylabel("Normalized Flux")
axs[0,1].legend()


#JWST pipeline: annulus mean
normalized_annulus_mean_pipeline = dat['annulus_mean'].value/dat['annulus_mean'][0].value #normalized annulus mean
std_annulus_mean_pipeline = np.std(normalized_annulus_mean_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_mean_pipeline = (dat['annulus_mean_err'].value/dat['annulus_mean'].value)

print(style.BOLD+"Pipeline Calculated Annulus Mean std (ppm):"+style.END + " " +str(std_annulus_mean_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Mean (ppm):"+style.END + " " +str(np.median(relative_error_annulus_mean_pipeline)*10**6))

axs[1,0].errorbar(dat['MJD'],normalized_annulus_mean_pipeline,yerr=relative_error_annulus_mean_pipeline,color ='darkgreen',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,0].set_title("Annulus Mean")
axs[1,0].set_xlabel("Time (MJD)")
axs[1,0].set_ylabel("Normalized Flux")
axs[1,0].legend()

#JWST pipeline: annulus sum
normalized_annulus_sum_pipeline = dat['annulus_sum'].value/dat['annulus_sum'][0].value #normalized annulus sum
std_annulus_sum_pipeline = np.std(normalized_annulus_sum_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_sum_pipeline = (dat['annulus_sum_err'].value/dat['annulus_sum'].value)

print(style.BOLD+"Pipeline Calculated Annulus Sum std (ppm):"+style.END + " " +str(std_annulus_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Sum (ppm):"+style.END + " " +str(np.median(relative_error_annulus_sum_pipeline)*10**6))

axs[1,1].errorbar(dat['MJD'],normalized_annulus_sum_pipeline,yerr=relative_error_annulus_sum_pipeline,color = 'indigo',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,1].set_title("Annulus Sum")
axs[1,1].set_xlabel("Time (MJD)")
axs[1,1].set_ylabel("Normalized Flux")
axs[1,1].legend()
Pipeline Calculated Net Aperture Sum MAD (ppm): 225.22735117867398
Pipeline Calculated Net Aperture Sum std (ppm): 233.04333822086642
Median Relative Error Net Aperture Sum (ppm): 228.6142331118727
Pipeline Calculated Aperture Background std (ppm): 921.0661928417392
Median Relative Errors Aperture Background (ppm): 521.7499363001393
Pipeline Calculated Annulus Mean std (ppm): 921.0661928417538
Median Relative Errors Annulus Mean (ppm): 521.7499363001392
Pipeline Calculated Annulus Sum std (ppm): 921.0661928417538
Median Relative Errors Annulus Sum (ppm): 521.7499363001393
Out[12]:
<matplotlib.legend.Legend at 0x7f1f3c4af4c0>

$\textbf{External method: tshirt}$¶

From: https://tshirt.readthedocs.io/en/latest/phot_pipeline/phot_pipeline.html

The Time Series Helper & Integration Reduction Tool (tshirt) is a general-purpose tool for time series science. Its main application is transiting exoplanet science. tshirt can:

Reduce raw data: flat field, bias subtract, gain correct, etc. Extract Spectroscopy and in our interest extract photometry. This photometric pipeline will take image data that have been reduced (using the external HAWAII-xRG method) and calculate lightcurves on the stars/sources in the field. Therefore, we can use this external method and bypass stage2 & 3 of the JWST Science Calibration Pipeline.

NOTE: yaml file values used in tshirt are pulled from jwst pipeline header information as well as the jwst pipeline stage 3 results. [e.g. refStarPos in yaml is pulled from the stage3 results: xcenter,ycenter values]. Currently, tshirt is using the adjusted centered positions. tshirt is also utlizing the colrow background subtraction method for comparison with the pipelines mean method.

In [13]:
#read in yaml parameter file, a file required to run tshirt

with open("/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/GJ3470b_WLP8_NRCA3_ROEBA_phot_pipeline.yaml", "r") as stream:
    paramfile = yaml.safe_load(stream)

paramfile
Out[13]:
{'procFiles': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/splintegrate/jw01185016001_01101_00001-seg*.fits',
 'excludeList': None,
 'srcName': 'GJ3470b_WLP8_NRCA3',
 'srcNameShort': 'NRCA3_GJ3470b',
 'nightName': 'NRCA3_GJ3470b_2022_11_23',
 'refStarPos': [[1056, 167]],
 'refPhotCentering': None,
 'copyCentroidFile': None,
 'srcGeometry': 'Circular',
 'bkgSub': True,
 'bkgGeometry': 'CircularAnnulus',
 'bkgMethod': 'mean',
 'apRadius': 50,
 'apHeight': None,
 'apWidth': None,
 'backStart': 60,
 'backEnd': 70,
 'backHeight': None,
 'backWidth': None,
 'backOffset': [0.0, 0.0],
 'boxFindSize': 5,
 'jdRef': 2457551,
 'timingMethod': 'JWSTint',
 'scaleAperture': False,
 'apScale': 2.5,
 'apRange': [2, 17],
 'isCube': False,
 'cubePlane': 0,
 'doCentering': True,
 'FITSextension': 0,
 'HEADextension': 0,
 'isSlope': True,
 'subpixelMethod': 'exact',
 'readNoise': 16.2,
 'detectorGain': 2.05,
 'dateFormat': 'Two Part',
 'diagnosticMode': False,
 'bkgOrderX': 0,
 'bkgOrderY': 0,
 'backsub_directions': ['X'],
 'saturationVal': None,
 'satNPix': 5,
 'nanReplaceValue': '22e3'}
In [16]:
#Assignimg a object phot
phot = phot_pipeline.phot(paramFile="/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/GJ3470b_WLP8_NRCA3_ROEBA_phot_pipeline.yaml") #create a photometric object
phot.showStarChoices(showAps=True,showPlot=True,apColor='red',backColor='pink', figSize=(30,20), xLim = [800,1300]) #Plot the source and background subtraction area
In [17]:
phot.get_allimg_cen(recenter=True, useMultiprocessing=True) #recenter the centroids each time. 
phot.do_phot(useMultiprocessing=True) #extract the photometric data
  0%|                                          | 5/1681 [00:00<03:22,  8.26it/s]2022-03-16 14:09:38,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 19/1681 [00:01<01:11, 23.20it/s]2022-03-16 14:09:38,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:09:38,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:09:39,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                        | 32/1681 [00:01<00:56, 29.30it/s]2022-03-16 14:09:39,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:09:39,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                       | 69/1681 [00:02<00:46, 34.32it/s]2022-03-16 14:09:40,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:09:40,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▍                                    | 142/1681 [00:05<00:49, 31.07it/s]2022-03-16 14:09:43,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 147/1681 [00:05<00:44, 34.29it/s]2022-03-16 14:09:43,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▍                                 | 268/1681 [00:09<00:40, 34.72it/s]2022-03-16 14:09:47,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▌                                 | 274/1681 [00:09<00:38, 36.39it/s]2022-03-16 14:09:47,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                                | 331/1681 [00:11<00:45, 29.82it/s]2022-03-16 14:09:49,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                                | 335/1681 [00:11<00:42, 31.42it/s]2022-03-16 14:09:49,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▍                               | 357/1681 [00:12<00:48, 27.11it/s]2022-03-16 14:09:49,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|████████▋                               | 363/1681 [00:12<00:43, 30.11it/s]2022-03-16 14:09:50,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                              | 398/1681 [00:13<00:35, 35.89it/s]2022-03-16 14:09:51,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:09:51,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▊                             | 452/1681 [00:15<00:35, 34.57it/s]2022-03-16 14:09:52,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:09:52,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▊                             | 456/1681 [00:15<00:47, 25.98it/s]2022-03-16 14:09:53,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:09:53,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                             | 466/1681 [00:15<00:41, 29.41it/s]2022-03-16 14:09:53,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████▏                            | 472/1681 [00:15<00:35, 34.46it/s]2022-03-16 14:09:53,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████▎                            | 476/1681 [00:15<00:36, 33.11it/s]2022-03-16 14:09:53,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:09:53,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                           | 516/1681 [00:17<00:40, 28.71it/s]2022-03-16 14:09:54,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                           | 520/1681 [00:17<00:39, 29.65it/s]2022-03-16 14:09:55,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▌                           | 529/1681 [00:17<00:41, 28.05it/s]2022-03-16 14:09:55,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                           | 533/1681 [00:17<00:41, 27.39it/s]2022-03-16 14:09:55,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                          | 565/1681 [00:18<00:42, 26.35it/s]2022-03-16 14:09:56,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▌                          | 570/1681 [00:19<00:37, 29.46it/s]2022-03-16 14:09:56,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|██████████████                          | 591/1681 [00:19<00:39, 27.44it/s]2022-03-16 14:09:57,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:09:57,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                         | 598/1681 [00:20<00:36, 30.08it/s]2022-03-16 14:09:57,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▎                         | 602/1681 [00:20<00:36, 29.92it/s]2022-03-16 14:09:57,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▌                         | 611/1681 [00:20<00:37, 28.16it/s]2022-03-16 14:09:58,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:09:58,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▉                      | 756/1681 [00:24<00:25, 35.89it/s]2022-03-16 14:10:02,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|██████████████████                      | 760/1681 [00:25<00:35, 26.25it/s]2022-03-16 14:10:02,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▉                   | 880/1681 [00:28<00:24, 32.97it/s]2022-03-16 14:10:06,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|█████████████████████                   | 886/1681 [00:29<00:27, 28.43it/s]2022-03-16 14:10:06,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▋                  | 914/1681 [00:29<00:25, 29.72it/s]2022-03-16 14:10:07,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▉                  | 921/1681 [00:30<00:25, 30.12it/s]2022-03-16 14:10:08,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▌                 | 948/1681 [00:30<00:22, 32.09it/s]2022-03-16 14:10:08,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:10:08,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:10:08,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▋                 | 952/1681 [00:31<00:22, 32.30it/s]2022-03-16 14:10:08,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:10:08,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:10:08,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▋                 | 956/1681 [00:31<00:23, 31.06it/s]2022-03-16 14:10:08,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:10:09,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▊                 | 960/1681 [00:31<00:25, 28.78it/s]2022-03-16 14:10:09,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▉                 | 965/1681 [00:31<00:22, 31.50it/s]2022-03-16 14:10:09,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████▍                | 983/1681 [00:32<00:22, 30.51it/s]2022-03-16 14:10:09,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:10:09,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▌                | 988/1681 [00:32<00:24, 28.17it/s]2022-03-16 14:10:10,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▋                | 993/1681 [00:32<00:22, 30.25it/s]2022-03-16 14:10:10,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 1015/1681 [00:33<00:21, 30.58it/s]2022-03-16 14:10:10,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:10:10,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 1019/1681 [00:33<00:22, 28.84it/s]2022-03-16 14:10:11,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:10:11,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 1082/1681 [00:35<00:20, 29.87it/s]2022-03-16 14:10:13,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 1091/1681 [00:35<00:19, 30.14it/s]2022-03-16 14:10:13,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 1110/1681 [00:36<00:16, 34.97it/s]2022-03-16 14:10:13,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 1114/1681 [00:36<00:17, 31.63it/s]2022-03-16 14:10:14,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 1122/1681 [00:36<00:21, 25.87it/s]2022-03-16 14:10:14,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 1130/1681 [00:36<00:16, 33.13it/s]2022-03-16 14:10:14,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 1144/1681 [00:37<00:16, 33.39it/s]2022-03-16 14:10:14,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 1148/1681 [00:37<00:16, 31.89it/s]2022-03-16 14:10:15,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 1163/1681 [00:37<00:15, 32.92it/s]2022-03-16 14:10:15,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 1167/1681 [00:37<00:15, 33.78it/s]2022-03-16 14:10:15,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 1207/1681 [00:39<00:14, 32.60it/s]2022-03-16 14:10:16,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 1211/1681 [00:39<00:15, 30.76it/s]2022-03-16 14:10:17,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 1376/1681 [00:44<00:10, 30.35it/s]2022-03-16 14:10:22,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:10:22,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 1380/1681 [00:44<00:09, 31.71it/s]2022-03-16 14:10:22,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:10:22,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 1487/1681 [00:47<00:05, 32.78it/s]2022-03-16 14:10:25,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 1495/1681 [00:48<00:06, 30.23it/s]2022-03-16 14:10:26,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:10:26,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 1500/1681 [00:48<00:06, 29.58it/s]2022-03-16 14:10:26,260 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▉    | 1504/1681 [00:48<00:05, 29.97it/s]2022-03-16 14:10:26,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 1510/1681 [00:48<00:05, 29.14it/s]2022-03-16 14:10:26,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 1537/1681 [00:49<00:03, 37.29it/s]2022-03-16 14:10:27,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 1541/1681 [00:49<00:04, 29.56it/s]2022-03-16 14:10:27,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 1549/1681 [00:49<00:04, 30.88it/s]2022-03-16 14:10:27,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 1553/1681 [00:50<00:04, 29.19it/s]2022-03-16 14:10:27,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 1558/1681 [00:50<00:04, 30.09it/s]2022-03-16 14:10:28,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 1562/1681 [00:50<00:03, 31.95it/s]2022-03-16 14:10:28,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|███████████████████████████████████████| 1681/1681 [00:54<00:00, 31.11it/s]
2022-03-16 14:10:31,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

100%|██████████████████████████████████████| 1681/1681 [00:10<00:00, 153.55it/s]
In [18]:
#Tshirt: net aperture
Flux, Flux_error = phot.get_tSeries() #The flux data and flux data errors
normalized_flux_tshirt = Flux['Flux 0']/Flux['Flux 0'][0] #normalized net aperture sum
std_tshirt = np.std(normalized_flux_tshirt[0:20]) #calculated standard deviation
relative_error_tshirt = (Flux_error['Error 0']/Flux['Flux 0'])

#MAD: 
deviation = normalized_flux_tshirt[0:seg01_len] - np.median(normalized_flux_tshirt[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Tshirt Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Tshirt Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_tshirt*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_tshirt)*10**6))
plt.errorbar(Flux['Time (JD)'],normalized_flux_tshirt,yerr=relative_error_tshirt,fmt='b.',markersize=4,elinewidth=1,ecolor='silver')
Tshirt Calculated Net Aperture Sum MAD (ppm): 222.79017203955755
Tshirt Calculated Net Aperture Sum std (ppm): 253.974347381446
Median Relative Errors Net Aperture Sum (ppm): 184.3811805816565
Out[18]:
<ErrorbarContainer object of 3 artists>

$\textbf{Plotting Results: Altered}$¶

Initial pipeline results with altered aperture sizes. In this particular simulation, there is an edge effect (the observation is cut off on the top and bottom). We want to see how observations that turn out this way in real life can effect the results the pipline returns.

TSOPHOT reference files are ASDF format. An object called ‘radii’ in a TSOPHOT file defines the radii that the step needs. This object is a list of one or more dictionaries. Each such dictionary has four keys: ‘pupil’, ‘radius’, ‘radius_inner’, and ‘radius_outer’. The particular one of these dictionaries to use is selected by comparing meta.instrument.pupil with the value corresponding to ‘pupil’ in each dictionary. If an exact match is found, that dictionary will be used. If no match is found, the first dictionary with ‘pupil’: ‘ANY’ will be selected. The radii will be taken from the values of keys ‘radius’, ‘radius_inner’, and ‘radius_outer’.

NOTE: You must run these sections in order because it requires re-running stage 3 (will take a few minutes).

$\textbf{50-60-90 Radii}$¶

$\textbf{TSO Photometry Reference File: Radii Parameters}$¶

The original radii parameters are: radii': [{'pupil': 'WLP8', 'radius': 50.0, 'radius_inner': 60.0, 'radius_outer': 70.0}, {'pupil': 'ANY', 'radius': 3.0, 'radius_inner': 4.0, 'radius_outer': 5.0}]}

The altered radii parameters are (to try the pupil = WLP8 parameters): radius: 50.0, radius_inner: 60.0, and radius_outer: 90.0

In [20]:
original_tsophot=asdf.open("/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_tsophot_0001.asdf") #the original tsophot reference file
original_tsophot.tree #print the original tsophot reference file

#adjust the radii parameters
original_tsophot.tree['radii'] = [{'pupil': 'WLP8',
   'radius': 50.0,
   'radius_inner': 60.0,
   'radius_outer': 90.0}, #For this particular data set, the outer radius limit is 62 due to edge effects on detector
  {'pupil': 'ANY', 'radius': 3.0, 'radius_inner': 4.0, 'radius_outer': 5.0}]
original_tsophot.write_to('adjusted_jwst_nircam_tsophot_0001.asdf')
adjusted_tsophot=asdf.open('adjusted_jwst_nircam_tsophot_0001.asdf') #the adjusted tsophot reference file
adjusted_tsophot.tree #print the adjusted tsophot reference file
Out[20]:
{'asdf_library': {'author': 'Space Telescope Science Institute',
  'homepage': 'http://github.com/spacetelescope/asdf',
  'name': 'asdf',
  'version': '2.7.2'},
 'history': {'entries': [{'description': 'File created based on values of aperture radii for NIRCam that were specified as constants in tso_photometry_step.py.',
    'time': datetime.datetime(2018, 7, 13, 17, 20, 5)}],
  'extensions': [{'extension_class': 'asdf.extension.BuiltinExtension',
    'software': {'name': 'asdf', 'version': '2.7.2'}},
   {'extension_class': 'astropy.io.misc.asdf.extension.AstropyAsdfExtension',
    'software': {'name': 'astropy', 'version': '4.2.1'}},
   {'extension_class': 'astropy.io.misc.asdf.extension.AstropyExtension',
    'software': {'name': 'astropy', 'version': '4.2.1'}},
   {'extension_class': 'gwcs.extension.GWCSExtension',
    'software': {'name': 'gwcs', 'version': '0.16.1'}}]},
 'meta': {'author': 'NIRCam IDT; P. Hodge',
  'date': '2018-07-13T17:20:00',
  'description': 'aperture radii for tso_photometry',
  'exposure': {'type': 'NRC_TSIMAGE'},
  'filename': 'nircam_tsophot.asdf',
  'instrument': {'name': 'NIRCAM'},
  'model_type': 'TsoPhotModel',
  'pedigree': 'GROUND',
  'reftype': 'tsophot',
  'telescope': 'JWST',
  'useafter': '2015-01-01T00:00:00',
  'visit': {'tsovisit': True}},
 'radii': [{'pupil': 'WLP8',
   'radius': 50.0,
   'radius_inner': 60.0,
   'radius_outer': 90.0},
  {'pupil': 'ANY', 'radius': 3.0, 'radius_inner': 4.0, 'radius_outer': 5.0}]}
In [21]:
#The file to use is the stage 3 association file defined above. 

# Instantiate the class. Do not provide a configuration file.
pipeline_stage3 = Tso3Pipeline()

pipeline_stage3.outlier_detection.skip = True
pipeline_stage3.tso_photometry.override_tsophot = 'adjusted_jwst_nircam_tsophot_0001.asdf' #use the modified tso_phot ref file

# Specify that you want results saved to a file
pipeline_stage3.save_results = True
pipeline_stage3.output_dir = '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/506090_radii'

# Execute the pipeline using the run method
result_stage3 = pipeline_stage3.run(level3_asn)
2022-03-16 14:11:44,518 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created.
2022-03-16 14:11:44,526 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2022-03-16 14:11:44,531 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created.
2022-03-16 14:11:44,537 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created.
2022-03-16 14:11:44,542 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created.
2022-03-16 14:11:44,903 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/nrca3_level3_asn.json',).
2022-03-16 14:11:44,914 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/506090_radii', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '', 'min_wavelength': None, 'max_wavelength': None}}}
2022-03-16 14:11:49,239 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw01185016001_01101_00001-seg001_nrca3_1_calints.fits' reftypes = ['gain', 'readnoise']
2022-03-16 14:11:49,245 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits'.
2022-03-16 14:11:49,247 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits'.
2022-03-16 14:11:49,249 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3...
2022-03-16 14:12:45,685 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:12:46,058 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:12:46,062 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:12:46,064 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:12:46,217 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:13:12,033 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:13:12,404 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:13:12,409 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:13:12,410 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:13:12,562 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:13:38,441 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:13:38,821 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:13:38,825 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:13:38,827 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:13:38,978 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:14:04,830 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:14:05,204 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:14:05,209 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:14:05,210 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:14:05,361 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:14:31,573 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:14:31,957 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:14:31,962 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:14:31,964 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:14:32,114 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:14:39,038 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:14:39,601 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:14:39,606 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:14:39,607 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:14:39,647 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:14:40,035 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg001_nrca3_1_calints.fits>,).
2022-03-16 14:14:40,038 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:14:42,219 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:14:42,391 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg002_nrca3_1_calints.fits>,).
2022-03-16 14:14:42,394 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:14:44,550 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:14:44,753 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg003_nrca3_1_calints.fits>,).
2022-03-16 14:14:44,756 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:14:46,955 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:14:47,150 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg004_nrca3_1_calints.fits>,).
2022-03-16 14:14:47,153 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:14:49,814 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:14:49,986 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg005_nrca3_1_calints.fits>,).
2022-03-16 14:14:49,989 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:14:52,648 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:14:52,818 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(81, 256, 2048) from jw01185016001_01101_00001-seg006_nrca3_1_calints.fits>,).
2022-03-16 14:14:52,821 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:14:53,528 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:14:53,539 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/506090_radii/GJ3470b_nrca3_level3_asn_phot.ecsv
2022-03-16 14:14:53,707 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done
In [23]:
#Import the stage 3 result file with all the data
with open('/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/506090_radii/GJ3470b_nrca3_level3_asn_phot.ecsv', 'r') as file:
    reader = csv.reader(file)
    for row in reader:
        print(row)
['# %ECSV 0.9']
['# ---']
['# datatype:']
['# - {name: MJD', ' datatype: float64}']
['# - {name: aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean_err', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg_err', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# meta: !!omap']
['# - {instrument: NIRCAM}']
['# - {detector: NRCA3}']
['# - {channel: SHORT}']
['# - {subarray: SUBGRISM256}']
['# - {filter: F210M}']
['# - {pupil: WLP8}']
['# - {target_name: UNKNOWN}']
['# - {xcenter: 1055}']
['# - {ycenter: 166}']
['# - ra_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       WFgwQkNJUHhYVUE9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - dec_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       S2Yva3ZVM0lMa0E9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - {apertures: Photometry measured in a circular aperture of r=50.0 pixels.  Background calculated as the mean in a circular annulus']
['#     with r_inner=60.0 pixels and r_outer=90.0 pixels.}']
['# - {number_of_integrations: 1681}']
['# - __serialized_columns__:']
['#     annulus_mean:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: &id001 !astropy.units.Unit {unit: Jy}']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean}']
['#     annulus_mean_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean_err}']
['#     annulus_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum}']
['#     annulus_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum_err}']
['#     aperture_bkg:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg}']
['#     aperture_bkg_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg_err}']
['#     aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum}']
['#     aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum_err}']
['#     net_aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum}']
['#     net_aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum_err}']
['# schema: astropy-2.0']
['MJD aperture_sum aperture_sum_err annulus_sum annulus_sum_err annulus_mean annulus_mean_err aperture_bkg aperture_bkg_err net_aperture_sum net_aperture_sum_err']
['59906.93615787118 0.3068671214217737 5.257635375127501e-05 0.03620002932637685 1.6817745670254355e-05 2.5606282699397556e-06 1.1896121578148005e-09 0.020111127403542695 9.343192039030198e-06 0.286755994018231 5.34000768843773e-05']
['59906.93629815139 0.3068375708751646 5.257406711417617e-05 0.036228214024165206 1.6817718769131208e-05 2.562621929483119e-06 1.18961025494959e-09 0.02012678556898067 9.343177093961781e-06 0.28671078530618394 5.3397822906322996e-05']
['59906.9364384316 0.30696966842496465 5.258395531883859e-05 0.036273519012254105 1.681596183559415e-05 2.565826601839149e-06 1.1894859773242091e-09 0.020151955006807835 9.342201019774527e-06 0.2868177134181568 5.340738784913085e-05']
['59906.93657871181 0.3068682207189902 5.2576159050036805e-05 0.03620192868405053 1.6817311785408535e-05 2.5607626220119625e-06 1.1895814667401582e-09 0.020112182602250294 9.34295099189363e-06 0.28675603811673994 5.339984301186375e-05']
['59906.936718992016 0.306996936004593 5.258409951166849e-05 0.03627275047323102 1.6816456704740713e-05 2.5657722388238238e-06 1.1895209821557022e-09 0.020151528040683903 9.342475947078174e-06 0.2868454079639091 5.340757791058108e-05']
['59906.936859272224 0.3068763106818081 5.257827792409715e-05 0.03624103784014519 1.681570896728566e-05 2.5635290289064595e-06 1.1894680905503214e-09 0.020133909911191773 9.342060537380921e-06 0.2867424007706163 5.34017734213733e-05']
['59906.93699955243 0.30691750358720177 5.258122738864118e-05 0.03616590173771116 1.6818934229551376e-05 2.5582142368588883e-06 1.1896962311869242e-09 0.020092167632061758 9.343852349750764e-06 0.28682533595514004 5.3404990875665656e-05']
['59906.93713983264 0.30690636716249453 5.2590423556102514e-05 0.036296425016953224 1.6815034271979488e-05 2.5674468702277495e-06 1.1894203656200733e-09 0.020164680564974013 9.341685706655271e-06 0.28674168659752053 5.3413666244250536e-05']
['59906.93728011285 0.30691219813273973 5.258097214078119e-05 0.036250831418152704 1.6816552416197085e-05 2.5642217828399932e-06 1.189527752356321e-09 0.020139350787862612 9.342529120109492e-06 0.2867728473448771 5.34045080646728e-05']
['59906.93742039306 0.30694238972834764 5.25825876663734e-05 0.036280354356043334 1.682003276308921e-05 2.5663101035066106e-06 1.1897739365392348e-09 0.020155752420024074 9.344462646160672e-06 0.28678663730832354 5.340643695133889e-05']
['59906.937560673265 0.30684375848445433 5.257623949284005e-05 0.036139672261524675 1.6815989037479175e-05 2.5563588809523146e-06 1.1894879014639707e-09 0.02007759570084704 9.342216131932875e-06 0.2867661627836073 5.339979364627002e-05']
['59906.93770095347 0.3069292939165408 5.2581393816437547e-05 0.036172589376240585 1.681753916153517e-05 2.5586872905164745e-06 1.1895975503110449e-09 0.020095882986800324 9.343077311963982e-06 0.28683341092974046 5.340501913993321e-05']
['59906.93784123368 0.3069299206400051 5.2579590638658126e-05 0.036238118590362925 1.6820126873707952e-05 2.5633225342251404e-06 1.1897805935037548e-09 0.02013228810575718 9.34451492983775e-06 0.28679763253424795 5.340349530698179e-05']
['59906.93798151389 0.3068993314928604 5.258796971274372e-05 0.036264178137453223 1.6823896360017482e-05 2.565165870106988e-06 1.190047230116679e-09 0.02014676563191846 9.3466090888986e-06 0.28675256586094194 5.341211154756132e-05']
['59906.9381217941 0.3069521926934675 5.258299051935801e-05 0.036130106505090936 1.6816644808275872e-05 2.555682242098607e-06 1.189534287759006e-09 0.020072281391717187 9.342580449042152e-06 0.28687991130175033 5.340650429868743e-05']
['59906.938262074305 0.30687700038219423 5.2578847362121067e-05 0.03614732293265559 1.6814914519711175e-05 2.5569000552316283e-06 1.1894118948798741e-09 0.02008184607369755 9.34161917761732e-06 0.28679515430849667 5.3402256869807036e-05']
['59906.93840235451 0.3068773507970949 5.257843953580078e-05 0.03621548269547229 1.681559473937875e-05 2.5617213721970724e-06 1.1894600105787553e-09 0.020119712608595717 9.341997077432638e-06 0.28675763818849914 5.340192143935102e-05']
['59906.93854263472 0.3068785870303374 5.25828700963512e-05 0.03623114827595239 1.681526891537276e-05 2.562829485339211e-06 1.1894369632449192e-09 0.020128415708862438 9.341816064095977e-06 0.28675017132147496 5.340625202113651e-05']
['59906.93868291493 0.3068552146509941 5.258775123372071e-05 0.03623834375213343 1.681740766215508e-05 2.563338461162372e-06 1.189588248632665e-09 0.020132413195629684 9.343004256752821e-06 0.2867228014553644 5.341126574386152e-05']
['59906.93882319514 0.30695494185104705 5.2579625309061596e-05 0.03627331523459583 1.6816726537926615e-05 2.5658121875184353e-06 1.1895400689491896e-09 0.020151841796997683 9.342625854403675e-06 0.28680310005404935 5.340319892568874e-05']
['59906.938963475346 0.30689885172128006 5.257864381535594e-05 0.03637671595432488 1.6917372269436774e-05 2.573126292258052e-06 1.1966592981362747e-09 0.0202092866412916 9.398540149687096e-06 0.28668956507998844 5.341204304655784e-05']
['59906.939103755554 0.3069128565360194 5.257976657605461e-05 0.0362300350839603 1.681666700716248e-05 2.5627507431133656e-06 1.1895358580090215e-09 0.02012779726886683 9.342592781756933e-06 0.2867850592671526 5.340333222822455e-05']
['59906.93924403576 0.3068553329168673 5.257757210143742e-05 0.03631087371411984 1.6826831098379564e-05 2.568468906483441e-06 1.1902548203909041e-09 0.02017270761895547 9.348239499099758e-06 0.28668262529791183 5.3402159786045914e-05']
['59906.93938431597 0.30688427365949056 5.2588803893121814e-05 0.03620971852253753 1.6813613512425453e-05 2.561313640368004e-06 1.1893198674396424e-09 0.020116510290298626 9.340896395791918e-06 0.2867677633691919 5.341193350166368e-05']
['59906.93952459618 0.30690425221075124 5.257907523812887e-05 0.036260097147059786 1.6818082518653193e-05 2.5648771990875097e-06 1.1896359849649106e-09 0.020144498415033216 9.343379177029552e-06 0.286759753795718 5.340278913448778e-05']
['59906.93966487639 0.3068990216577249 5.257787585937974e-05 0.03626612101296067 1.6815730585014345e-05 2.5653033004362422e-06 1.189469619691823e-09 0.020147845007200373 9.342072547230191e-06 0.2867511766505246 5.340137965785209e-05']
['59906.939805156595 0.30691417842362434 5.258080128520478e-05 0.03621147549160812 1.6817793525325322e-05 2.561437920506868e-06 1.189615542868621e-09 0.020117486384226734 9.343218625180734e-06 0.2867966920393976 5.3404460469815786e-05']
['59906.9399454368 0.30692092138747146 5.25792856875287e-05 0.03621821071705306 1.6824722095505118e-05 2.5619143402501575e-06 1.1901056389542538e-09 0.020121228176140593 9.347067830836177e-06 0.28679969321133086 5.34036418275478e-05']
['59906.94008571701 0.3068900206764468 5.257693973858453e-05 0.03623122409169563 1.6814761362740142e-05 2.562834848206011e-06 1.1894010612403145e-09 0.020128457828719793 9.34153409041119e-06 0.28676156284772697 5.340036377626152e-05']
['59906.94022599722 0.3068819477100375 5.257642946959005e-05 0.03621034708850291 1.6815478819833457e-05 2.5613581023148705e-06 1.1894518109482512e-09 0.020116859493612728 9.341932677685254e-06 0.28676508821642477 5.339993110412392e-05']
['59906.94036627743 0.30684745373822075 5.2575736647708026e-05 0.036213692483988875 1.6819976857185724e-05 2.56159474063851e-06 1.1897699820055069e-09 0.02011871804666049 9.344431587325401e-06 0.28672873569156027 5.3399686195139326e-05']
['59906.940506557636 0.30689246707276585 5.2578003520243366e-05 0.03627944361379479 1.6816568903017736e-05 2.5662456816707265e-06 1.189528918560322e-09 0.020155246452108214 9.342538279454297e-06 0.28673722062065765 5.340158682733869e-05']
['59906.940646837844 0.3068685822352588 5.257778662345973e-05 0.03623265551762259 1.681738490338006e-05 2.562936100877987e-06 1.1895866387786459e-09 0.020129253065345885 9.342991612988922e-06 0.2867393291699129 5.340145258794411e-05']
['59906.94078711805 0.3069091936044103 5.2579555704290024e-05 0.0361994352460388 1.6818080688666696e-05 2.5605862473520246e-06 1.1896358555198453e-09 0.020110797358910443 9.343378160370387e-06 0.28679839624549985 5.3403262011868e-05']
['59906.94092739827 0.3069027349302937 5.2578969960977745e-05 0.03631076824143099 1.6818110546822666e-05 2.5684614458168666e-06 1.1896379675523406e-09 0.020172649023017217 9.343394748234816e-06 0.28673008590727644 5.340268820554581e-05']
['59906.941067678476 0.30690116119222055 5.257958254021656e-05 0.03624411856982657 1.681786141979925e-05 2.5637469459540683e-06 1.1896203454202364e-09 0.020135621427681424 9.343256344332917e-06 0.2867655397645391 5.340326712121051e-05']
['59906.941207958684 0.306947871793362 5.2591643979157074e-05 0.036290227387163296 1.6817402360083394e-05 2.5670084775981847e-06 1.1895878735878128e-09 0.02016123743731294 9.343001311157441e-06 0.28678663435604906 5.3415097958636173e-05']
['59906.94134823889 0.30695742409761795 5.258204365894312e-05 0.03625499436295575 1.681478360064589e-05 2.5645162509480925e-06 1.1894026342503695e-09 0.020141663534975415 9.341546444803272e-06 0.2868157605626425 5.340539116354656e-05']
['59906.9414885191 0.3069223079491646 5.258016142303599e-05 0.036271994168220086 1.6818115866912392e-05 2.565718741187834e-06 1.1896383438717083e-09 0.02015110787123338 9.343397703840218e-06 0.2867712000779312 5.340386180721998e-05']
['59906.94162879931 0.3068441234275543 5.257485610641468e-05 0.03633666556308575 1.683946175919392e-05 2.570293306596509e-06 1.1911482568811805e-09 0.020187036423936527 9.355256532885511e-06 0.28665708700361775 5.340071459640129e-05']
['59906.941769079516 0.30684955354359433 5.2575285100901916e-05 0.036181386982862274 1.6818003343460244e-05 2.5593095938859056e-06 1.1896303844656536e-09 0.020100770546034596 9.343335190811247e-06 0.28674878299755974 5.339904976616129e-05']
['59906.941909359724 0.30681515860842606 5.2574016475678306e-05 0.03625337240718038 1.681384957751383e-05 2.5644015210462585e-06 1.1893365656288453e-09 0.020140762448433543 9.341027543063237e-06 0.2866743961599925 5.339739697724188e-05']
['59906.94204963993 0.30692399677518944 5.258027713387937e-05 0.03622513662156019 1.6823410963465476e-05 2.56240424777802e-06 1.1900128953341848e-09 0.02012507590086677 9.346339424147487e-06 0.2867989208743227 5.340449048635266e-05']
['59906.94218992014 0.3068513010745289 5.2575816935333255e-05 0.036211952079513825 1.681726369993817e-05 2.561471632205095e-06 1.189578065388914e-09 0.020117751155285458 9.342924277743427e-06 0.28673354991924344 5.3399501500269855e-05']
['59906.94233020035 0.306899577775763 5.25777949335575e-05 0.03618606668393721 1.6823538925620237e-05 2.559640615022914e-06 1.1900219468050554e-09 0.020103370379965117 9.346410514233465e-06 0.28679620739579786 5.340205903872807e-05']
['59906.94247048056 0.3068165190227152 5.257416819413926e-05 0.03621322279335916 1.681413301961768e-05 2.5615615168227573e-06 1.18935661505636e-09 0.020118457107421755 9.34118501089871e-06 0.2866980619152934 5.339757390287955e-05']
['59906.942610760765 0.30696437504420326 5.258579198773825e-05 0.03623778274291792 1.6820500871862003e-05 2.5632987778780303e-06 1.189807048461499e-09 0.020132101523843288 9.344722706590001e-06 0.28683227352036 5.3409637346088906e-05']
['59906.94275104097 0.30695089743088183 5.258282015840211e-05 0.0362019234624218 1.681475937464295e-05 2.5607622526572853e-06 1.1894009206112054e-09 0.020112179701345444 9.34153298591275e-06 0.2868387177295364 5.340615333777331e-05']
['59906.94289132118 0.3069677667018743 5.2585186387517696e-05 0.03627091678532349 1.6818631196568354e-05 2.565642531937347e-06 1.189674795988183e-09 0.020150509325179713 9.34368399809353e-06 0.2868172573766946 5.340885935934417e-05']
['59906.94303160139 0.3067892555789913 5.25718148006404e-05 0.03622631390410842 1.6815528864543583e-05 2.5624875234833392e-06 1.1894553508873587e-09 0.020125729946726904 9.34196048030199e-06 0.2866635256322644 5.33953924702156e-05']
['59906.9431718816 0.30685692149687316 5.2577749809781655e-05 0.03621552476045668 1.6819297442545047e-05 2.5617243476860487e-06 1.1897219232506301e-09 0.02011973597803149 9.344054134747248e-06 0.28673718551884164 5.34016022487442e-05']
['59906.943312161806 0.3068174361715671 5.2583007208386206e-05 0.03622336961975113 1.68180148156114e-05 2.5622792579680808e-06 1.1896311959543487e-09 0.020124094233195073 9.343341564228554e-06 0.28669334193837204 5.340665388004604e-05']
['59906.943452442014 0.30691458211514666 5.2577927080704436e-05 0.0362078868231716 1.6816098116737977e-05 2.5611840741420726e-06 1.1894956172431826e-09 0.020115492679539777 9.342276731521097e-06 0.2867990894356069 5.340146580977149e-05']
['59906.94359272222 0.30690241108910477 5.257968212518343e-05 0.03617354133635367 1.6817231048212445e-05 2.558754627919863e-06 1.1895757557517808e-09 0.020096411853529818 9.342906137895801e-06 0.2868059992355749 5.340330390047852e-05']
['59906.94373300243 0.30699885546261024 5.258549029747789e-05 0.03626629455636694 1.6818984962342675e-05 2.5653155761211088e-06 1.1896998197978186e-09 0.020147941420203857 9.34388053463482e-06 0.28685091404240637 5.34091929659274e-05']
['59906.94387328264 0.3068128195894239 5.257452351704132e-05 0.03624050242566207 1.6818506359311313e-05 2.563491156079085e-06 1.1896659655586098e-09 0.02013361245870115 9.34361464406184e-06 0.28667920713072276 5.3398348828972766e-05']
['59906.94401356285 0.3068708321652478 5.257897068553695e-05 0.03622586790265479 1.6825388882159902e-05 2.5624559753340182e-06 1.1901528044618523e-09 0.02012548216814155 9.347438267866613e-06 0.28674534999710627 5.340339652608372e-05']
['59906.944153843055 0.3067658850325039 5.2571261713966025e-05 0.036194784260779 1.681546183129903e-05 2.5602572574434274e-06 1.1894506092552602e-09 0.020108213478210558 9.341923239610573e-06 0.28665767155429334 5.339484139889439e-05']
['59906.94429412326 0.3068487601915216 5.257609501925692e-05 0.03626149685815431 1.6818230217389884e-05 2.5649762083939958e-06 1.1896464325133696e-09 0.020145276032307948 9.34346123188327e-06 0.28670348415921365 5.3399869243900195e-05']
['59906.94443440347 0.3068775811413777 5.258356503240312e-05 0.03621211380083505 1.681813464425631e-05 2.5614830716485067e-06 1.1896396720970873e-09 0.020117841000463918 9.34340813569795e-06 0.28675974014091377 5.340721474770234e-05']
['59906.94457468368 0.30690051822116654 5.2580779785086676e-05 0.036175684856463025 1.6812117879850457e-05 2.558906250951428e-06 1.1892140730763714e-09 0.020097602698035014 9.340065488805809e-06 0.28680291552313153 5.3403887743711695e-05']
['59906.94471496389 0.3068331670888237 5.25832384641961e-05 0.03614581088070441 1.6814619279083304e-05 2.5567930994350762e-06 1.1893910108775064e-09 0.020081006044835783 9.34145515504628e-06 0.28675216104398793 5.340655158120821e-05']
['59906.944855244095 0.3068483803683853 5.2581773591746864e-05 0.03624317805461028 1.681637371080877e-05 2.563680418111524e-06 1.1895151115359174e-09 0.020135098919227934 9.342429839338203e-06 0.28671328144915736 5.3405279789143366e-05']
['59906.9449955243 0.30681343317807785 5.257378735471242e-05 0.03616507981906252 1.6815094095496613e-05 2.5581560980074434e-06 1.1894245972682795e-09 0.020091711010590287 9.341718941942564e-06 0.2867217221674876 5.339729234342101e-05']
['59906.94513580451 0.30684300991046715 5.2582285109793094e-05 0.03618726461088074 1.6812886704521712e-05 2.559725351020481e-06 1.1892684562971718e-09 0.020104035894933744 9.340492613623172e-06 0.2867389740155334 5.340544456918899e-05']
['59906.94527608472 0.3068458709915059 5.258075829865062e-05 0.036239411755779216 1.6821039875201886e-05 2.5634140069665794e-06 1.1898451751485593e-09 0.020133006530988453 9.345022152889936e-06 0.28671286446051747 5.3404733706845875e-05']
['59906.94541636493 0.30690799904258126 5.2579612789980704e-05 0.03617492780143787 1.6816719416980337e-05 2.5588527002627853e-06 1.1895395652452785e-09 0.020097182111909927 9.342621898322408e-06 0.28681081693067134 5.3403185907577795e-05']
['59906.945556645136 0.3069117888213079 5.257971222401771e-05 0.03630498825075698 1.6816478617635087e-05 2.568052595111625e-06 1.1895225321759054e-09 0.020169437917087214 9.342488120908381e-06 0.2867423509042207 5.340326040467784e-05']
['59906.945696925344 0.3069063657872503 5.258212085277758e-05 0.03619979430997873 1.681320940729756e-05 2.560611645930214e-06 1.1892912828491389e-09 0.02011099683887707 9.34067189294309e-06 0.2867953689483732 5.340531419987831e-05']
['59906.94583720555 0.3068612929051188 5.2575871594825e-05 0.03623735031076181 1.6817053560152277e-05 2.5632681895601647e-06 1.1895632010397296e-09 0.020131861283756557 9.342807533417932e-06 0.2867294316213623 5.339953489087725e-05']
['59906.94597748576 0.3069611403806794 5.25862927094282e-05 0.03622255989548091 1.681658174899797e-05 2.56222198169246e-06 1.1895298272275456e-09 0.020123644386378283 9.342545416109982e-06 0.28683749599430114 5.340974944496313e-05']
['59906.94611776597 0.30687634157952715 5.257732029907131e-05 0.036229644730071744 1.6814132429870186e-05 2.5627231312240684e-06 1.1893565733402584e-09 0.02012758040559541 9.341184683261215e-06 0.2867487611739317 5.340067734699561e-05']
['59906.946258046184 0.30685472843708167 5.257565745036578e-05 0.03650831572328621 1.698753352023939e-05 2.5824350716980283e-06 1.2016221914157176e-09 0.02028239762404789 9.437518622355217e-06 0.2865723308130338 5.341597620642633e-05']
['59906.94639832639 0.3068518297137215 5.2578805420414604e-05 0.03621460589068379 1.6811810633888715e-05 2.56165935094542e-06 1.1891923398703462e-09 0.020119225494824325 9.339894796604841e-06 0.2867326042188972 5.340191395679996e-05']
['59906.9465386066 0.3068678393574348 5.2579486722239585e-05 0.036185855653204785 1.6812778262811317e-05 2.559625687652154e-06 1.1892607856152844e-09 0.020103253140669325 9.34043236822851e-06 0.2867645862167655 5.3402678779248705e-05']
['59906.94667888681 0.30681577452392783 5.2572364729987766e-05 0.03622448422181762 1.681516256775924e-05 2.562358099936286e-06 1.1894294406900846e-09 0.020124713456565343 9.341756982088467e-06 0.2866910610673625 5.339589831452656e-05']
['59906.94681916702 0.30695336749767355 5.258288640072904e-05 0.03621113616016235 1.6820168104690478e-05 2.5614139177171164e-06 1.1897835099991672e-09 0.02011729786675686 9.344537835939155e-06 0.2868360696309167 5.3406744233282684e-05']
['59906.946959447225 0.30693918479880455 5.2580658529467666e-05 0.03623057371761798 1.6817121369742996e-05 2.5627888436507595e-06 1.189567997587086e-09 0.02012809650978777 9.342845205412775e-06 0.2868110882890168 5.34042545863603e-05']
['59906.94709972743 0.30688398127342054 5.257743490810784e-05 0.03626020866701993 1.6817880905726305e-05 2.564885087511025e-06 1.1896217237676192e-09 0.020144560370566625 9.343267169847947e-06 0.2867394209028539 5.340115450927513e-05']
['59906.94724000764 0.3068530975856748 5.257603170109169e-05 0.03615396905235316 1.681351665046986e-05 2.5573701720326274e-06 1.1893130158578512e-09 0.020085538362418418 9.340842583594366e-06 0.28676755922325636 5.3399348775108554e-05']
['59906.94738028785 0.30698683085831413 5.25840982044251e-05 0.036231930552573996 1.6818199170761803e-05 2.5628848200908524e-06 1.1896442364136694e-09 0.020128850306985552 9.343443983756557e-06 0.2868579805513286 5.3407745968634735e-05']
['59906.94752056806 0.30685447697700724 5.257561268218143e-05 0.03623546347187039 1.682484497209597e-05 2.56313472301066e-06 1.1901143306950646e-09 0.020130813039927996 9.347136095608872e-06 0.28672366393707927 5.340003747280137e-05']
['59906.947660848266 0.30684559656777977 5.257461574791742e-05 0.03618713636544765 1.6815801738217767e-05 2.5597162795117677e-06 1.189474652751397e-09 0.02010396464747092 9.342112076787648e-06 0.2867416319203088 5.33981767394396e-05']
['59906.947801128474 0.30690894104104255 5.2579137726441924e-05 0.036208693811637715 1.681588849275392e-05 2.5612411568991394e-06 1.1894807893795146e-09 0.0201159410064654 9.342160273752177e-06 0.28679300003457714 5.340263741274041e-05']
['59906.94794140868 0.30694303617990865 5.258658640771087e-05 0.0362514960294039 1.6820467661361508e-05 2.5642687944692654e-06 1.1898046992991363e-09 0.0201397200163355 9.34470425631195e-06 0.28680331616357313 5.3410416284219097e-05']
['59906.94808168889 0.3068490148027922 5.257615108337955e-05 0.036227717847802224 1.6820404747987088e-05 2.5625868321849796e-06 1.189800249088236e-09 0.020126509915445682 9.34466930443727e-06 0.2867225048873465 5.340013583458047e-05']
['59906.9482219691 0.3068642743456703 5.257742772447245e-05 0.036204975174159534 1.6817406273604963e-05 2.560978117105264e-06 1.1895881504128362e-09 0.020113875096755295 9.34300348533609e-06 0.28675039924891504 5.340110130183765e-05']
['59906.948362249306 0.3069294041135945 5.2583541029352003e-05 0.03619229258331892 1.682037693036773e-05 2.5600810073170437e-06 1.1897982813941802e-09 0.020106829212954955 9.344653850204295e-06 0.2868225749006395 5.340740906246701e-05']
['59906.948502529514 0.306876044195473 5.2576781901946225e-05 0.03616196703088315 1.68157047030251e-05 2.5579359132849794e-06 1.1894677889155897e-09 0.020089981683823973 9.342058168347278e-06 0.286786062511649 5.3400300055201975e-05']
['59906.94864280972 0.3068765925297021 5.257953268071415e-05 0.0362583277526556 1.6816995077549608e-05 2.564752040036085e-06 1.1895590642418187e-09 0.020143515418141997 9.342775043083116e-06 0.2867330771115601 5.340313382590899e-05']
['59906.94878308993 0.30695252902077996 5.2589598531220836e-05 0.036246982725481755 1.681400035884553e-05 2.563949543523094e-06 1.189347231226297e-09 0.02013721262526764 9.34111131046974e-06 0.28681531639551233 5.3412753478823486e-05']
['59906.94892337014 0.3069239351727773 5.258226932862362e-05 0.03625503568977706 1.681301637033916e-05 2.564519174222712e-06 1.189277628277526e-09 0.020141686494320587 9.340564650188423e-06 0.2867822486784567 5.3405441630345705e-05']
['59906.94906365035 0.30678555322401135 5.257487817885994e-05 0.036239045656955494 1.681797902706412e-05 2.563388110772155e-06 1.1896286644324796e-09 0.020132803142753054 9.343321681702287e-06 0.2866527500812583 5.339864675785082e-05']
['59906.949203930555 0.3068972901719732 5.2580416523861796e-05 0.03626901759901714 1.6825480985665548e-05 2.5655081919868993e-06 1.1901593194521633e-09 0.02014945422167619 9.34748943648086e-06 0.286747835950297 5.3404829000643e-05']
['59906.94934421076 0.306956518685919 5.258113945222917e-05 0.036176885491021854 1.6815113626667765e-05 2.558991178473599e-06 1.1894259788160274e-09 0.020098269717234364 9.341729792593201e-06 0.2868582489686846 5.340453296877143e-05']
['59906.94948449097 0.3070049298021148 5.2587334157584066e-05 0.03620439610678978 1.6818589442643438e-05 2.560937156467806e-06 1.1896718425021637e-09 0.020113553392660986 9.343660801468577e-06 0.28689137640945384 5.3410969949761336e-05']
['59906.94962477118 0.30695544345940906 5.2582723870099894e-05 0.03623407647596953 1.6813490348454376e-05 2.5630366131201398e-06 1.189311155370839e-09 0.02013004248664974 9.340827971363541e-06 0.2868254009727593 5.340593522062675e-05']
['59906.94976505139 0.3068465649521178 5.257460186393906e-05 0.036200577179833986 1.681376998931312e-05 2.5606670226445526e-06 1.1893309359152654e-09 0.02011143176657444 9.340983327396177e-06 0.2867351331855434 5.339796560426622e-05']
['59906.949905331596 0.3070680149119324 5.259713110786383e-05 0.03622672251348674 1.6814819914418354e-05 2.562516426684385e-06 1.1894052029243207e-09 0.020125956951937078 9.341566619121308e-06 0.28694205795999533 5.342024960328525e-05']
['59906.950045611804 0.3067452351539596 5.257710519080915e-05 0.036238579361051904 1.6814774349253123e-05 2.5633551270841547e-06 1.1894019798481966e-09 0.020132544089473278 9.341541305140625e-06 0.2866126910644863 5.340052793934774e-05']
['59906.95018589201 0.30694151507793327 5.258694429336638e-05 0.03623579916495577 1.6816310206454687e-05 2.5631584684390595e-06 1.1895106195217575e-09 0.020130999536086536 9.342394559141493e-06 0.2868105155418467 5.341036459538819e-05']
['59906.95032617222 0.3069502020975684 5.258170052374051e-05 0.036173933313135634 1.6821059835098753e-05 2.558782354605386e-06 1.189846587022448e-09 0.020096629618408683 9.345033241721529e-06 0.2868535724791597 5.3405663335054766e-05']
['59906.95046645243 0.3068895620280012 5.257649071551048e-05 0.03626533750334521 1.6819081761996526e-05 2.565247878468126e-06 1.189706666972663e-09 0.02014740972408067 9.343934312220292e-06 0.28674215230392053 5.340034161303884e-05']
['59906.95060673264 0.30694149402891246 5.258985719886682e-05 0.03624075288346552 1.6817066083789298e-05 2.5635088723446205e-06 1.189564086905835e-09 0.020133751601925286 9.342814490994054e-06 0.2868077424269872 5.34133060464369e-05']
['59906.950747012845 0.3069437031449306 5.259657109031161e-05 0.03621958572350179 1.6816169796256624e-05 2.5620116020604232e-06 1.1895006875319431e-09 0.020121992068612107 9.342316553475901e-06 0.2868217110763185 5.341982936179742e-05']
['59906.95088729305 0.3069628698347293 5.2610691034671576e-05 0.03625890286361744 1.6817636145112605e-05 2.5647927208149307e-06 1.1896044104958217e-09 0.02014383492423191 9.343131191729225e-06 0.28681903491049743 5.343387419616451e-05']
['59906.95102757326 0.3069287660762189 5.2583035801643566e-05 0.03622817207917803 1.6818425340664308e-05 2.5626189624822093e-06 1.1896602346616526e-09 0.020126762266210015 9.343569633702394e-06 0.28680200381000887 5.340672193288757e-05']
['59906.95116785347 0.3069594363654594 5.257973497351621e-05 0.036187448549597365 1.6825571773686322e-05 2.5597383620231374e-06 1.1901657413909543e-09 0.020104138083109648 9.34753987427018e-06 0.2868552982823498 5.3404166799850684e-05']
['59906.95130813368 0.3069345829022122 5.259565976785667e-05 0.03623949209572866 1.6814908757582303e-05 2.5634196898555046e-06 1.1894114872926328e-09 0.0201330511642937 9.341615976434613e-06 0.2868015317379185 5.3418809566175425e-05']
['59906.951448413885 0.30697661570527557 5.258224037803245e-05 0.03629072481697258 1.6819037604246895e-05 2.5670436635595134e-06 1.1897035434508277e-09 0.02016151378720699 9.343909780137165e-06 0.2868151019180686 5.340599828813735e-05']
['59906.9515886941 0.3068772663219854 5.2577082105882e-05 0.03625338233443509 1.681872052999911e-05 2.5644022232558845e-06 1.189681115035778e-09 0.02014076796357505 9.343733627777283e-06 0.28673649835841036 5.340088876484653e-05']
['59906.95172897431 0.3068278698195921 5.2574617425720165e-05 0.03611220568421557 1.681654802061761e-05 2.5544160180418434e-06 1.1895274414326759e-09 0.02006233649123087 9.342526678120893e-06 0.28676553332836124 5.3398250928211484e-05']
['59906.95186925452 0.30689270398185353 5.258167220777406e-05 0.03614619457960974 1.682358591836172e-05 2.5568202405806063e-06 1.1900252708615426e-09 0.0200812192108943 9.346436621312064e-06 0.28681148477095925 5.34058810402188e-05']
['59906.952009534725 0.30687085131473374 5.2577788404798154e-05 0.03619778847284966 1.6814269769043762e-05 2.5604697619772674e-06 1.1893662880995271e-09 0.020109882484916474 9.34126098280209e-06 0.2867609688298173 5.3401151582045004e-05']
['59906.95214981493 0.30689343980654726 5.2585581995034324e-05 0.03627302619736101 1.6816635245477477e-05 2.5657917423163647e-06 1.1895336113293908e-09 0.020151681220756116 9.342575136376376e-06 0.28674175858579115 5.3409054887119246e-05']
['59906.95229009514 0.3069625874320842 5.258127374886873e-05 0.036289602363665865 1.681487067421797e-05 2.5669642662296674e-06 1.1894087934456625e-09 0.020160890202036593 9.341594819009983e-06 0.2868016972300476 5.340464158494115e-05']
['59906.95243037535 0.3068640213673031 5.258293713829252e-05 0.03619752281012405 1.6813694165553414e-05 2.5604509701835005e-06 1.189325572481416e-09 0.02010973489451336 9.34094120308523e-06 0.2867542864727898 5.3406165006009544e-05']
['59906.95257065556 0.3069454617566771 5.2587986172745275e-05 0.03620995993757511 1.681468580682776e-05 2.5613307169887005e-06 1.1893957167527875e-09 0.020116644409763948 9.34149211490431e-06 0.2868288173469131 5.341123256991611e-05']
['59906.952710935766 0.3068944345126981 5.258526472665417e-05 0.03623008870961563 1.6816051383369774e-05 2.5627545363525314e-06 1.189492311533602e-09 0.020127827060897573 9.342250768538763e-06 0.28676660745180055 5.340868577108561e-05']
['59906.952851215974 0.30684078198476294 5.258246277042943e-05 0.0362384158085438 1.6814958882961052e-05 2.563343558110768e-06 1.1894150329378784e-09 0.020132453226968775 9.341643823867252e-06 0.2867083287577942 5.340582084694134e-05']
['59906.95299149618 0.30708758977264317 5.26099218855921e-05 0.0362636810719541 1.6816723390533384e-05 2.565130709915332e-06 1.1895398463166604e-09 0.020146489484418943 9.34262410585188e-06 0.2869411002882242 5.3433028231528736e-05']
['59906.95313177639 0.30688508552697247 5.257932782405859e-05 0.03622645362959977 1.6815316352932132e-05 2.5624974070400605e-06 1.1894403187658357e-09 0.02012580757199987 9.341842418295628e-06 0.2867592779549726 5.3402768975008115e-05']
['59906.9532720566 0.30688913183647437 5.25866745765388e-05 0.03623974191334743 1.681338153654885e-05 2.5634373608372377e-06 1.1893034585030026e-09 0.020133189951859684 9.340767520304916e-06 0.2867559418846147 5.340981446220512e-05']
['59906.95341233681 0.3069808629354184 5.2582991521168764e-05 0.03628478410374657 1.681817840580416e-05 2.5666234440593305e-06 1.1896427675933794e-09 0.020158213390970316 9.343432447668976e-06 0.2868226495444481 5.340665433463755e-05']
['59906.953552617015 0.3074301466937083 5.272290327175839e-05 0.0362167369462994 1.6813266083260155e-05 2.561810092294411e-06 1.1892952918534062e-09 0.02012040941461078 9.340703379588976e-06 0.2873097372790975 5.354393774302238e-05']
['59906.95369289722 0.30684251222986847 5.257576274745357e-05 0.03619717972223807 1.6815446302709037e-05 2.560426701679959e-06 1.1894495108322127e-09 0.02010954429013226 9.341914612616131e-06 0.28673296793973624 5.339927150351339e-05']
['59906.95383317743 0.30692870300464625 5.259071937555053e-05 0.03626506064394444 1.6821784765171785e-05 2.5652282946716048e-06 1.1898978653355676e-09 0.020147255913302468 9.345435980650991e-06 0.2867814470913438 5.3414613525760456e-05']
['59906.95397345764 0.3069355890947242 5.2597761614054787e-05 0.036189816896006255 1.6820937786050256e-05 2.559905888262217e-06 1.1898379538182846e-09 0.020105453831114586 9.344965436694586e-06 0.2868301352636096 5.3421464841596695e-05']
['59906.95411373785 0.3069706798535843 5.258537919890905e-05 0.03621287943494536 1.681415982256506e-05 2.561537229183287e-06 1.1893585109770555e-09 0.020118266352747424 9.341199901425033e-06 0.28685241350083684 5.340861467115057e-05']
['59906.954254018056 0.30691072269053743 5.258505834453641e-05 0.036231944367883136 1.6816245080548805e-05 2.5628857973240702e-06 1.189506012806271e-09 0.020128857982157296 9.342358378082669e-06 0.28678186470838013 5.340850139409296e-05']
['59906.954394298264 0.30689172110952123 5.257779637520258e-05 0.03626937312804772 1.6815436284079136e-05 2.565533340521401e-06 1.1894488021591142e-09 0.020149651737804287 9.34190904671063e-06 0.2867420693717169 5.3401272796715995e-05']
['59906.95453457847 0.3068133398698296 5.257427411795624e-05 0.0361946246997595 1.6814388857471337e-05 2.5602459708101033e-06 1.1893747118825999e-09 0.020108124833199723 9.341327143039632e-06 0.2867052150366299 5.339770305755944e-05']
['59906.95467485868 0.3071793757483432 5.2624128149651037e-05 0.03617016109721266 1.6813311242417842e-05 2.558515524911808e-06 1.1892984862103714e-09 0.020094533942895922 9.340728468009912e-06 0.2870848418054473 5.344668438569399e-05']
['59906.95481513889 0.3069130127566421 5.2579603496118245e-05 0.036229014514351114 1.6817620350252167e-05 2.5626785525808894e-06 1.189603293237993e-09 0.020127230285750617 9.343122416806759e-06 0.2867857824708915 5.3403264322552856e-05']
['59906.954955419096 0.30690920386418497 5.258032462803828e-05 0.036140296836199334 1.6811973191646334e-05 2.5564030605731155e-06 1.1892038384795299e-09 0.020077942686777407 9.339985106470186e-06 0.28683126117740754 5.340342554348901e-05']
['59906.955095699304 0.30683154788688416 5.257486198878921e-05 0.036205150169355396 1.682251146699302e-05 2.5609904954832366e-06 1.1899492689742357e-09 0.02011397231630855 9.345839703885009e-06 0.2867175755705756 5.339907146113073e-05']
['59906.95523597951 0.3068478194337353 5.257956173752325e-05 0.03619164514856231 1.6820877195962313e-05 2.560035210676224e-06 1.1898336679462853e-09 0.02010646952697906 9.344931775534619e-06 0.28674134990675626 5.340353979278354e-05']
['59906.95537625972 0.3069915721712475 5.2582516326220784e-05 0.03618459558043005 1.681885120075806e-05 2.559536555736263e-06 1.189690358101202e-09 0.020102553100238917 9.343806222643366e-06 0.2868890190710086 5.340625186177723e-05']
['59906.95551653993 0.3069285120909703 5.257968658613007e-05 0.03623091469922968 1.6817614734645124e-05 2.5628129631658727e-06 1.1896028960150512e-09 0.02012828594401649 9.343119297025068e-06 0.2868002261469538 5.3403345585216934e-05']
['59906.95565682014 0.3069250865406066 5.2582921353477215e-05 0.03623241835139523 1.6815468818419274e-05 2.562919324799134e-06 1.1894511034929155e-09 0.02012912130633068 9.341927121344041e-06 0.2867959652342759 5.340632191423103e-05']
['59906.955797100345 0.30684565551322796 5.257600788018002e-05 0.03619341937105834 1.6821335866360745e-05 2.5601607112452855e-06 1.1898661122401343e-09 0.020107455206143522 9.345186592422636e-06 0.2867382003070844 5.3400085365699065e-05']
['59906.95593738055 0.30691992776671606 5.2579795273077934e-05 0.036185190853188054 1.6818725725997483e-05 2.5595786626704515e-06 1.189681482577478e-09 0.020102883807326694 9.343736514443047e-06 0.28681704395938934 5.340356058363641e-05']
['59906.95607766076 0.30685043228295006 5.257548259170927e-05 0.03620107159401913 1.6816028873575822e-05 2.560701995294108e-06 1.1894907192913905e-09 0.020111706441121736 9.342238263097679e-06 0.2867387258418283 5.3399052290425626e-05']
['59906.95621794097 0.3068852173206299 5.2578354545982034e-05 0.036158138988240024 1.681455200401438e-05 2.557665134658748e-06 1.1893862521398325e-09 0.02008785499346668 9.341417780007987e-06 0.28679736232716324 5.340173642217675e-05']
['59906.95635822118 0.30681826034131365 5.2575607620717085e-05 0.036183406218889616 1.6814523788970342e-05 2.559452425617026e-06 1.1893842563337312e-09 0.020101892343827563 9.341402104983524e-06 0.28671636799748607 5.339902911078623e-05']
['59906.956498501386 0.3069408221129148 5.258026672932294e-05 0.0362643254058605 1.6817266402658876e-05 2.5651762872158673e-06 1.1895782565672965e-09 0.020146847447700275 9.342925779254931e-06 0.2867939746652145 5.340388292477815e-05']
['59906.956638781594 0.3069110687272254 5.25783359395002e-05 0.03624355879265971 1.6815546894403323e-05 2.5637073498193417e-06 1.1894566262390482e-09 0.020135310440366504 9.341970496890736e-06 0.2867757582868589 5.340181479062032e-05']
['59906.9567790618 0.3067705493419669 5.257009628157803e-05 0.036240873470465604 1.681502622111645e-05 2.5635174021300144e-06 1.1894197961380072e-09 0.02013381859470311 9.341681233953582e-06 0.2866367307472638 5.339365160139531e-05']
['59906.95691934202 0.3068853166509833 5.257913129132216e-05 0.03622010788171989 1.681603528691164e-05 2.5620485371988617e-06 1.1894911729421003e-09 0.02012228215651105 9.342241826062021e-06 0.2867630344944722 5.340264534352878e-05']
['59906.957059622226 0.3069698872049107 5.259031018432007e-05 0.036217523907068186 1.6815046353757717e-05 2.561865758381687e-06 1.1894212202310628e-09 0.02012084661503788 9.341692418754285e-06 0.2868490405898728 5.341355579372722e-05']
['59906.957199902434 0.30686150706817683 5.257775663247249e-05 0.036173820626506384 1.681711500272338e-05 2.5587743836569125e-06 1.1895675472125772e-09 0.02009656701472577 9.342841668179655e-06 0.28676494005345105 5.3401396825740235e-05']
['59906.95734018264 0.30691695252613166 5.25807501030756e-05 0.036236846557075 1.6814781907614507e-05 2.5632325562760068e-06 1.189402514492897e-09 0.020131581420597223 9.34154550423028e-06 0.2867853711055344 5.340411738629981e-05']
['59906.95748046285 0.3069421101619765 5.258215628185356e-05 0.036477800794679945 1.6897675633142618e-05 2.5802765820421247e-06 1.1952660461236089e-09 0.0202654448859333 9.38759757396812e-06 0.2866766652760432 5.341357643389968e-05']
['59906.95762074306 0.30687336178936253 5.258217387663214e-05 0.03626182434116327 1.682192362841665e-05 2.5649993730782868e-06 1.1899076879008273e-09 0.020145457967312926 9.345513126898139e-06 0.2867279038220496 5.340621335759914e-05']
['59906.957761023266 0.30697886289478493 5.2584411480904e-05 0.03626900861728345 1.6817913010689084e-05 2.565507556659204e-06 1.1896239947291854e-09 0.02014944923182414 9.34328500593838e-06 0.2868294136629608 5.3408026601768586e-05']
['59906.957901303475 0.3069168941759953 5.258077566597885e-05 0.036234953558664004 1.6814475740939975e-05 2.563098654029618e-06 1.189380857630825e-09 0.020130529754813335 9.34137541163332e-06 0.286786364421182 5.340411280245241e-05']
['59906.95804158368 0.3074675632674051 5.277702970357423e-05 0.036160274862209914 1.681442118317041e-05 2.5578162168365834e-06 1.189376998458065e-09 0.02008904159011662 9.34134510176134e-06 0.2873785216772885 5.3597346880626066e-05']
['59906.95818186389 0.3069436401167084 5.258483930485166e-05 0.036204175742379024 1.6815632144237154e-05 2.5609215688743606e-06 1.189462656431249e-09 0.020113430967988347 9.34201785790953e-06 0.28683020914872004 5.340822616764737e-05']
['59906.9583221441 0.3069805317612808 5.259242454138554e-05 0.036208357974112655 1.6814959761547484e-05 2.561217401253722e-06 1.1894150950851555e-09 0.020115754430062586 9.341644311970824e-06 0.28686477733121823 5.3415629150958324e-05']
['59906.95846242431 0.3068755596814979 5.257725456798188e-05 0.03620732421399557 1.681433936883899e-05 2.561144277683675e-06 1.1893712112779488e-09 0.020115180118886425 9.341299649354994e-06 0.28676037956261147 5.34006327401222e-05']
['59906.958602704515 0.30681449504601355 5.257921838583969e-05 0.03625549160380176 1.6813410947443727e-05 2.5645514235430037e-06 1.1893055388982472e-09 0.020141939779889866 9.340783859690959e-06 0.2866725552661237 5.340247605850581e-05']
['59906.95874298472 0.30704420936375665 5.2607398678791314e-05 0.036438416386983495 1.6908241448466047e-05 2.5774907050796198e-06 1.1960134246731732e-09 0.020243564659435276 9.393467471370026e-06 0.2868006447043214 5.343945758412019e-05']
['59906.95888326493 0.30692396163684377 5.2578565564349765e-05 0.03618647180337292 1.681835561810544e-05 2.559669271361019e-06 1.1896553027994796e-09 0.02010359544631829 9.343530898947464e-06 0.2868203661905255 5.340231386807329e-05']
['59906.95902354514 0.3069009843961291 5.257878395196065e-05 0.0362189880242479 1.6814048425907444e-05 2.5619693234867614e-06 1.1893506312754097e-09 0.020121660013471057 9.341138014393024e-06 0.2867793243826581 5.340211026982823e-05']
['59906.95916382535 0.306853394073183 5.257570699951948e-05 0.03622225066766903 1.6818627711417425e-05 2.562200108299214e-06 1.1896745494641841e-09 0.02012347259314946 9.34368206189857e-06 0.28672992148003357 5.339952584970363e-05']
['59906.959304105556 0.30694420617956136 5.258063992841185e-05 0.036269141053748566 1.6816219895114605e-05 2.56551692462279e-06 1.189504231301228e-09 0.02014952280763809 9.34234438617478e-06 0.28679468337192326 5.340414865823806e-05']
['59906.959444385764 0.3068129649125646 5.257467726119387e-05 0.036204808607824567 1.6814155360368696e-05 2.5609663349472363e-06 1.1893581953412296e-09 0.020113782559902538 9.341197422427053e-06 0.28669918235266206 5.339807729126072e-05']
['59906.95958466597 0.30686911092982394 5.257750516779303e-05 0.03621651180322404 1.6816487244534504e-05 2.56179416667959e-06 1.1895231424042101e-09 0.020120284335124465 9.34249291363028e-06 0.28674882659469947 5.3401088224029054e-05']
['59906.95972494618 0.3069033060850085 5.258429929658196e-05 0.03621063371655223 0.0006675651901602308 2.5613783771019277e-06 4.722057771114748e-08 0.020117018731417906 0.0003708695500890171 0.2867862873535906 0.00037457887248981686']
['59906.95986522639 0.3068622786940891 5.257647858673447e-05 0.03622839083089018 1.681399954949864e-05 2.5626344360005644e-06 1.1893471739767155e-09 0.02012688379493899 9.341110860832578e-06 0.2867353948991501 5.3399835699145297e-05']
['59906.9600055066 0.3069183136452237 5.258186354397254e-05 0.03626352366782657 1.6816262208325347e-05 2.5651195758509053e-06 1.189507224348627e-09 0.020146402037681425 9.342367893514082e-06 0.2867719116075423 5.3405357517899936e-05']
['59906.960145786805 0.3069336868081291 5.258063704683718e-05 0.03622136414403253 1.681442235429878e-05 2.5621373995796956e-06 1.1893770812984512e-09 0.02012298008001807 9.341345752388211e-06 0.28681070672811104 5.34039711324625e-05']
['59906.96028606701 0.30687458719289784 5.257742585361402e-05 0.036243970274397255 1.6819570923912438e-05 2.5637364561982407e-06 1.1897412681001696e-09 0.02013553904133181 9.344206068840244e-06 0.28673904815156603 5.3401309875781426e-05']
['59906.96042634722 0.30686658722844823 5.258182737104882e-05 0.036285900347962995 1.6819712874911733e-05 2.5667024021858826e-06 1.189751309079376e-09 0.02015883352664611 9.344284930506519e-06 0.2867077537018021 5.340565728966614e-05']
['59906.96056662743 0.3069834619019386 5.258372156503457e-05 0.0362275751060272 1.6820022529252703e-05 2.5625767352698323e-06 1.1897732126433828e-09 0.020126430614459553 9.344456960695946e-06 0.286857031287479 5.340755236405597e-05']
['59906.96070690764 0.30684991237625003 5.257625908660947e-05 0.03620939667982381 1.681343593232889e-05 2.561290874652988e-06 1.1893073062173478e-09 0.020116331488791005 9.340797740182716e-06 0.28673358088745904 5.339956481063574e-05']
['59906.960847187846 0.30698668719572897 5.2594724663863894e-05 0.036199257757088404 1.6825229281095255e-05 2.5605736925770026e-06 1.190141514995914e-09 0.020110698753938002 9.347349600608474e-06 0.28687598844179096 5.341889185506985e-05']
['59906.960987468054 0.3069392459248914 5.2578406494483904e-05 0.03629893764600632 1.6817170353234545e-05 2.567624602376175e-06 1.189571462460335e-09 0.020166076470003513 9.342872418463638e-06 0.2867731694548879 5.340204204454054e-05']
['59906.96112774826 0.30681600713500456 5.257663743216814e-05 0.03618944695617915 1.6816776243902116e-05 2.559879720372381e-06 1.1895435849277238e-09 0.020105248308988417 9.342653468834508e-06 0.28671075882601615 5.3400261961083946e-05']
['59906.96126802847 0.306867473904393 5.257540788750586e-05 0.03687553073967026 1.7625266316934256e-05 2.608410220602514e-06 1.246732558956076e-09 0.020486405966483476 9.79181462051903e-06 0.2863810679379095 5.3479464732738526e-05']
['59906.96140830868 0.3068529136938295 5.2574374020639765e-05 0.036194188274293444 1.681373370085447e-05 2.5602151000233415e-06 1.1893283690319003e-09 0.020107882374607467 9.34096316714137e-06 0.286745031319222 5.339773774751149e-05']
['59906.961548588886 0.30688046452637274 5.257571286613173e-05 0.03621961345583537 1.681568402148465e-05 2.562013563721744e-06 1.1894663259958592e-09 0.020122007475464092 9.342046678602582e-06 0.28675845705090863 5.339924549585994e-05']
['59906.961688869094 0.3069596427516027 5.258130880986539e-05 0.036204956083261436 1.6812103382951628e-05 2.560976766700464e-06 1.1892130476305455e-09 0.020113864490700798 9.340057434973126e-06 0.2868457782609019 5.340440720621309e-05']
['59906.9618291493 0.3069328853234041 5.257989502211719e-05 0.03618106228462649 1.6816690720932944e-05 2.559286626184022e-06 1.1895375354151498e-09 0.020100590158125826 9.342605956073858e-06 0.2868322951652783 5.3403460998209946e-05']
['59906.96196942951 0.3069105826257352 5.258640136126872e-05 0.036251227918986204 1.681431590874966e-05 2.5642498295367006e-06 1.18936955181609e-09 0.020139571066103444 9.341286615972032e-06 0.28677101155963175 5.340963624450351e-05']
['59906.96210970972 0.3068825251360534 5.257912050958668e-05 0.03620739807208769 1.681895719690764e-05 2.5611495020749854e-06 1.1896978557950484e-09 0.020115221151159827 9.343865109393133e-06 0.2867673039848936 5.3402918728700336e-05']
['59906.96224998993 0.3069645338981202 5.258152978007909e-05 0.03620268537993507 1.6814612514642487e-05 2.560816147296603e-06 1.1893905323911983e-09 0.020112602988852812 9.341451397023603e-06 0.28685193090926736 5.340486858158438e-05']
['59906.96239027014 0.30685832698673343 5.257866065493493e-05 0.03614441793575194 1.6814666758976836e-05 2.556694568735236e-06 1.1893943693929522e-09 0.020080232186528855 9.341481532764908e-06 0.28677809480020455 5.3402048963441376e-05']
['59906.96253055035 0.3067951336318983 5.2578178999000386e-05 0.03621316052325276 1.681497236910946e-05 2.5615571121137616e-06 1.1894159868877372e-09 0.020118422512918198 9.341651316171922e-06 0.28667671111898013 5.3401604434360045e-05']
['59906.96267083056 0.30678480307436184 5.258523185297955e-05 0.036221786628051145 1.681838313757329e-05 2.56216728421078e-06 1.1896572494036307e-09 0.020123214793361745 9.343546187540717e-06 0.2866615882810001 5.34088800143789e-05']
['59906.96281111077 0.30686453415400217 5.258089394827951e-05 0.03626673590012803 1.6815438899466898e-05 2.565346794806077e-06 1.1894489871599543e-09 0.020148186611182235 9.341910499703831e-06 0.28671634754281994 5.340432286046415e-05']
['59906.962951390975 0.30694557718942606 5.2581485079685834e-05 0.03621449398537474 1.6818253278789188e-05 2.5616514352640457e-06 1.189648063773678e-09 0.02011916332520819 9.343474043771771e-06 0.28682641386421787 5.340517840426957e-05']
['59906.96309167118 0.3068800711603883 5.2576873913351555e-05 0.03620353699954115 1.6815928793381022e-05 2.560876387061022e-06 1.1894836400657427e-09 0.020113076110856196 9.342182662989457e-06 0.28676699504953207 5.340041242733176e-05']
['59906.96323195139 0.30687953241187915 5.258469640698666e-05 0.036217311439512304 1.681647040178464e-05 2.561850729376458e-06 1.1895219510233674e-09 0.020120728577506835 9.342483556547022e-06 0.2867588038343723 5.3408166933712555e-05']
['59906.9633722316 0.30692641587930997 5.258758560445611e-05 0.03625824213988936 1.6815397962861542e-05 2.564745984171668e-06 1.1894460914874672e-09 0.02014346785549409 9.3418877571453e-06 0.2867829480238159 5.341090737455319e-05']
['59906.96351251181 0.3068464310794384 5.257989622193406e-05 0.03618143115588582 1.681903936689149e-05 2.5593127184881493e-06 1.1897036681324277e-09 0.02010079508660323 9.343910759384161e-06 0.28674563599283515 5.340369046225823e-05']
['59906.963652792016 0.30692502510292463 5.258114956346602e-05 0.03625529423790461 1.6816575720432875e-05 2.564537462761613e-06 1.1895294007937968e-09 0.020141830132169226 9.342542066907152e-06 0.2867831949707554 5.3404685016274674e-05']
['59906.963793072224 0.30693463293408546 5.257926159859083e-05 0.036227683054710996 1.6815388928035286e-05 2.562584371077222e-06 1.1894454524042413e-09 0.020126490585950552 9.341882737797381e-06 0.2868081423481349 5.3402710823888006e-05']
['59906.96393335243 0.30695614113418607 5.258309182233413e-05 0.036282592158644544 1.682462518837049e-05 2.5664683956602314e-06 1.1900987841766998e-09 0.020156995643691413 9.347013993539162e-06 0.2867991454904947 5.34073797914805e-05']
['59906.96407363264 0.3068436957142571 5.2585027318881585e-05 0.03628572357726698 1.6818200964155247e-05 2.5666898982169653e-06 1.1896443632703055e-09 0.02015873532070388 9.343444980086248e-06 0.28668496039355323 5.34086609289488e-05']
['59906.96421391285 0.3069124110674495 5.258018067164897e-05 0.03622354911663003 1.681751286255144e-05 2.5622919547749905e-06 1.1895956900384855e-09 0.020124193953683353 9.343062701417467e-06 0.2867882171137661 5.3403822148848726e-05']
['59906.964354193056 0.3069038094501514 5.2581605209625386e-05 0.03615919851591612 1.6816177387424448e-05 2.557740080910745e-06 1.1895012244972246e-09 0.0200884436199534 9.342320770791361e-06 0.286815365830198 5.34050949236612e-05']
['59906.964494473264 0.30684858768015005 5.2586551781252756e-05 0.03625534277710512 1.6813878687038254e-05 2.5645408962076996e-06 1.1893386247064912e-09 0.02014185709839173 9.341043715021252e-06 0.28670673058175833 5.3409741863524445e-05']
['59906.96463475347 0.30695311108146717 5.25831013950107e-05 0.036233683086105965 1.6817005032492914e-05 2.5630087864795403e-06 1.189559768410012e-09 0.020129823936725535 9.342780573607173e-06 0.28682328714474165 5.340664847343024e-05']
['59906.96477503368 0.30697510700309366 5.258298783027164e-05 0.036257023418885787 1.6817261329907934e-05 2.564659777295237e-06 1.1895778977435686e-09 0.02014279078826988 9.342922961059964e-06 0.2868323162148238 5.340656156891957e-05']
['59906.96491531389 0.3068451497567516 5.2577523821316646e-05 0.03624670810326207 1.6814415464790604e-05 2.5639301179747626e-06 1.189376593965437e-09 0.020137060057367814 9.341341924883668e-06 0.2867080896993838 5.3400905237071673e-05']
['59906.9650555941 0.3068570019039426 5.2575697922585566e-05 0.03615345990468283 1.6818138756516508e-05 2.5573341572021844e-06 1.1896399629799929e-09 0.02008525550260157 9.343410420286947e-06 0.286771746401341 5.339946938246573e-05']
['59906.965195874305 0.30688442204294575 5.257940388691017e-05 0.03616923944747882 1.6819901455408566e-05 2.5584503315291674e-06 1.1897646484208167e-09 0.02009402191526601 9.344389697449202e-06 0.28679040012767976 5.340328952340501e-05']
['59906.96533615451 0.30687448074005 5.257891508227699e-05 0.036141872736221936 1.682138500256635e-05 2.556514532696856e-06 1.189869587915693e-09 0.020078818186789964 9.345213890314639e-06 0.28679566255326006 5.340295248284522e-05']
['59906.96547643472 0.3068457472208006 5.257674851778572e-05 0.036171776418536895 1.681500467826187e-05 2.558629785522223e-06 1.1894182722927653e-09 0.02009543134363161 9.34166926570104e-06 0.286750315877169 5.3400199151053975e-05']
['59906.96561671493 0.30692402247798634 5.2580693192702784e-05 0.03621603758391682 1.6832150147838475e-05 2.5617606225254326e-06 1.1906310661748756e-09 0.020120020879953786 9.35119452657693e-06 0.28680400159803254 5.340575002468389e-05']
['59906.96575699514 0.30695135141076707 5.25886835842875e-05 0.0362676254971962 1.68137121622339e-05 2.565409720926415e-06 1.189326845486153e-09 0.020148680831775668 9.340951201241054e-06 0.2868026705789914 5.341182463155772e-05']
['59906.965897275346 0.3068564895667857 5.257626007609986e-05 0.03617672860108656 1.6823354181613625e-05 2.558980080780833e-06 1.1900088788397848e-09 0.0200981825561592 9.346307878674235e-06 0.2867583070106265 5.340052990891252e-05']
['59906.966037555554 0.3067630822092773 5.257055510874479e-05 0.03617253525379925 1.681445571541294e-05 2.558683462136888e-06 1.1893794411145515e-09 0.02009585291877736 9.341364286340523e-06 0.2866672292904999 5.339404790022659e-05']
['59906.96617783576 0.30683472437812065 5.257360966034535e-05 0.036197915658113713 1.6814149009848164e-05 2.5604787584943624e-06 1.1893577461337924e-09 0.02010995314339651 9.34119389436009e-06 0.2867247712347241 5.33970255359827e-05']
['59906.96631811597 0.3068885928653763 5.257859510799012e-05 0.03615605535074362 1.6815782113369753e-05 2.5575177474555637e-06 1.1894732645773663e-09 0.020086697417079788 9.342101174094306e-06 0.2868018954482965 5.340209282300626e-05']
['59906.96645839618 0.3069176481393078 5.257936906390191e-05 0.03621915830181377 1.6817155174390293e-05 2.561981368160675e-06 1.189570388776738e-09 0.02012175461211876 9.342863985772386e-06 0.28679589352718904 5.34029882929284e-05']
['59906.96659867639 0.30686411528847934 5.258876203743921e-05 0.03614627227077301 1.6815989787754928e-05 2.5568257361062366e-06 1.189487954535124e-09 0.02008126237265167 9.342216548752738e-06 0.28678285291582767 5.341212318073676e-05']
['59906.966738956595 0.3068370938518339 5.258298526251068e-05 0.03622809111425423 1.6824485255971707e-05 2.5626132353853916e-06 1.1900888859842708e-09 0.020126717285696795 9.346936253317616e-06 0.28671037656613707 5.3407261270739194e-05']
['59906.9668792368 0.30700915967699327 5.258710030372022e-05 0.03619902175469991 1.6818934510104947e-05 2.560556998822909e-06 1.18969625103203e-09 0.02011056764149995 9.34385250561386e-06 0.28689859203549334 5.341077323911533e-05']
['59906.96701951701 0.3068849723175564 5.2585715198538e-05 0.03617341533186964 1.681579657306368e-05 2.55874571492587e-06 1.1894742873914838e-09 0.02009634185103869 9.3421092072576e-06 0.2867886304665177 5.3409104536418485e-05']
['59906.96715979722 0.3068674048871251 5.2575185608222514e-05 0.03617835034402412 1.681348458584388e-05 2.5590947956274715e-06 1.18931074774953e-09 0.020099083524457845 9.340824769913267e-06 0.2867683213626673 5.3398512611507007e-05']
['59906.96730007743 0.3069764935043584 5.258151894997679e-05 0.0362285185702727 1.6819506748495555e-05 2.562643471713522e-06 1.1897367286180264e-09 0.020126954761262607 9.344170415830863e-06 0.2868495387430958 5.3405333589884605e-05']
['59906.967440357635 0.3068975863757316 5.25792542187271e-05 0.03619819534402044 1.6815663091755428e-05 2.560498542225282e-06 1.1894648455203644e-09 0.0201101085244558 9.342035050975238e-06 0.2867874778512758 5.3402730202595277e-05']
['59906.967580637844 0.3069699856766983 5.2583565153770944e-05 0.03621433704844139 1.6814554067563662e-05 2.561640334246847e-06 1.1893863981060853e-09 0.020119076138022992 9.341418926424257e-06 0.2868509095386753 5.340686689780474e-05']
['59906.96772091806 0.3068267165264258 5.257548717341432e-05 0.036180294113280644 1.6813093883879017e-05 2.559232289176541e-06 1.1892831112388703e-09 0.020100163396267023 9.34060771326612e-06 0.28672655313015877 5.339877155866959e-05']
['59906.96786119827 0.30691553910201463 5.258044979216835e-05 0.036238413015153806 1.681468016284782e-05 2.563343360518846e-06 1.1893953175228737e-09 0.02013245167508545 9.3414889793599e-06 0.2867830874269292 5.340381181805507e-05']
['59906.968001478475 0.3069575126191462 5.2582254358004635e-05 0.036217068576736844 1.68150447453161e-05 2.5618335503492547e-06 1.1894211064570922e-09 0.02012059365374269 9.34169152517561e-06 0.28683691896540353 5.340562399149958e-05']
['59906.96814175868 0.30697665879710334 5.258488420454248e-05 0.03620310953429164 1.6819174789161917e-05 2.560846150079929e-06 1.1897132472985359e-09 0.020112838630162024 9.343985993978843e-06 0.28686382016694134 5.340861467086386e-05']
['59906.96828203889 0.30693214880315944 5.2584891893439186e-05 0.03621448021590572 1.6815479686650123e-05 2.561650461273353e-06 1.1894518722629876e-09 0.020119155675503177 9.341933159250068e-06 0.2868129931276563 5.340826313031142e-05']
['59906.9684223191 0.307002664901313 5.258845742003995e-05 0.03622388424676898 1.6817843406229915e-05 2.562315660383076e-06 1.1896190712208574e-09 0.020124380137093875 9.343246336794398e-06 0.2868782847642191 5.341200338809036e-05']
['59906.96856259931 0.3069691172049232 5.2583829542288825e-05 0.03621783637693834 1.6815268941999355e-05 2.5618878611036437e-06 1.1894369651283654e-09 0.02012102020941019 9.34181607888853e-06 0.286848096995513 5.340719667782861e-05']
['59906.968702879516 0.3069308563149642 5.258768433516123e-05 0.036269112616638496 1.6818285971127814e-05 2.5655149131087303e-06 1.1896503762835862e-09 0.02014950700924361 9.34349220618212e-06 0.2867813493057206 5.341128523394235e-05']
['59906.968843159724 0.3071031137158594 5.2625770755292074e-05 0.03617357607109344 1.681527929595576e-05 2.5587570849000993e-06 1.1894376975209621e-09 0.020096431150607465 9.341821831086532e-06 0.28700668256525197 5.3448492801128816e-05']
['59906.96898343993 0.3069270089254572 5.2580595324407224e-05 0.036282037616785334 1.6823224955286337e-05 2.566429169847767e-06 1.1899997379470003e-09 0.02015668756488074 9.346236086270188e-06 0.28677032136057645 5.340478568114822e-05']
['59906.96912372014 0.3067891303160047 5.2570578540832225e-05 0.0362290894219347 1.6821617583285154e-05 2.5626838512085353e-06 1.1898860396361665e-09 0.02012727190107483 9.345343101825086e-06 0.28666185841492986 5.339476721373209e-05']
['59906.96926400035 0.3067917702707843 5.257254628780019e-05 0.03623487393562812 1.6813467109134907e-05 2.563093021851953e-06 1.1893095115252534e-09 0.020130485519793396 9.340815060630505e-06 0.2866612847509909 5.339591228904882e-05']
['59906.96940428056 0.30689781795333104 5.257874120191139e-05 0.03626333621756758 1.681471869960428e-05 2.565106316457438e-06 1.1893980434407767e-09 0.020146297898648656 9.341510388669044e-06 0.2867515200546824 5.340213331618116e-05']
['59906.969544560765 0.30690277131184396 5.257902798189613e-05 0.03621351073771516 1.68148837855155e-05 2.5615818847194652e-06 1.1894097208802458e-09 0.02011861707650842 9.341602103064166e-06 0.28678415423533554 5.34024317177878e-05']
['59906.96968484097 0.30688955948084506 5.2578348243401954e-05 0.03624004796275297 1.6819413823488094e-05 2.5634590094042253e-06 1.189730155518349e-09 0.020133359979307208 9.344118790826718e-06 0.28675619950153786 5.340220276338356e-05']
['59906.96982512118 0.3068808150659077 5.25858951550073e-05 0.036295869446702524 1.681713565157423e-05 2.567407571671468e-06 1.1895690078199915e-09 0.020164371914834733 9.342853139763462e-06 0.286716443151073 5.34094118488924e-05']
['59906.96996540139 0.306885901327909 5.257813527101236e-05 0.03626864870765206 1.6818795863704062e-05 2.565482098260581e-06 1.1896864438053442e-09 0.020149249282028926 9.34377547983559e-06 0.28673665204588006 5.340193300616047e-05']
['59906.9701056816 0.3068069975413359 5.2576085908072003e-05 0.03616849066271964 1.681424734134955e-05 2.5583973658421744e-06 1.1893647016646844e-09 0.020093605923733132 9.341248522971971e-06 0.2867133916176028 5.339947315639821e-05']
['59906.970245961806 0.306930902193543 5.2580256098981826e-05 0.03619546354299041 1.6814319580421725e-05 2.560305306830849e-06 1.1893698115337605e-09 0.02010859085721689 9.341288655789847e-06 0.28682231133632613 5.340358607046256e-05']
['59906.970386242014 0.3068849411918336 5.25784736753875e-05 0.036249071332877816 1.681568691076427e-05 2.564097282274766e-06 1.189466530370585e-09 0.020138372962709896 9.342048283757927e-06 0.28674656822912375 5.340196401041333e-05']
['59906.97052652222 0.30688759940344945 5.2577411618183895e-05 0.03619266238328467 1.6817759183643256e-05 2.560107165313712e-06 1.18961311369153e-09 0.02010703465738037 9.343199546468476e-06 0.28678056474606906 5.340111974699657e-05']
['59906.97066680243 0.3068798785237184 5.257712925307534e-05 0.03620284652989719 1.6813379069177943e-05 2.5608275463246257e-06 1.1893032839722133e-09 0.02011269251660955 9.340766149543302e-06 0.2867671860071088 5.34004160354116e-05']
['59906.97080708264 0.30690689228361157 5.258228823554571e-05 0.036234838953654605 1.6815956128578845e-05 2.563090547383507e-06 1.1894855736354554e-09 0.020130466085363667 9.34219784921047e-06 0.2867764261982479 5.340574591502117e-05']
['59906.970947362846 0.30693541108964445 5.258145634697529e-05 0.03628128430685948 1.681801061878188e-05 2.5663758840707093e-06 1.1896308990893873e-09 0.020156269059366377 9.343339232656599e-06 0.2867791420302781 5.3405126529064306e-05']
['59906.971087643054 0.3067972522923478 5.258015798356395e-05 0.03614697939865664 1.681420995391658e-05 2.556875755172049e-06 1.189362057044788e-09 0.02008165522147591 9.341227752175877e-06 0.28671559707087185 5.340347881453571e-05']
['59906.97122792326 0.3071360831145755 5.263232890428699e-05 0.036280309415464146 1.6816576669932007e-05 2.5663069246109115e-06 1.1895294679571216e-09 0.02015572745303564 9.34254259440667e-06 0.2869803556615399 5.345507597990435e-05']
['59906.97136820347 0.3068518781210313 5.2576257065494616e-05 0.03621731059944509 1.6815808566348574e-05 2.5618506699538583e-06 1.1894751357428504e-09 0.020120728110802826 9.342115870193653e-06 0.2867311500102285 5.3399793407363444e-05']
['59906.97150848368 0.30693563558475817 5.258176242696992e-05 0.03623459438214482 1.6816914369228214e-05 2.563073247488075e-06 1.1895533552959082e-09 0.020130330212302674 9.342730205126785e-06 0.2868053053724555 5.340532134171739e-05']
['59906.97164876389 0.30692519172451466 5.2578699211996215e-05 0.0361755358767078 1.6816484386412792e-05 2.5588957127894435e-06 1.1895229402334553e-09 0.020097519931504333 9.342491325784885e-06 0.28682767179301033 5.340226357560077e-05']
['59906.971789044095 0.30684309972001295 5.257370706521142e-05 0.036202777720690235 1.68162262374897e-05 2.560822679068885e-06 1.1895046799324934e-09 0.020112654289272353 9.3423479097165e-06 0.2867304454307406 5.3397323332212496e-05']
['59906.9719293243 0.3068273902723362 5.2574000349327204e-05 0.036279379109977555 1.6813947221061905e-05 2.5662411189590107e-06 1.1893434724969951e-09 0.020155210616654196 9.341081789478835e-06 0.286672179655682 5.3397390589136376e-05']
['59906.97206960451 0.3069184122391537 5.258067726938595e-05 0.03625692253699382 1.6815095835828542e-05 2.564652641361115e-06 1.1894247203715813e-09 0.020142734742774344 9.341719908793634e-06 0.2867756774963794 5.3404076183018755e-05']
['59906.97220988472 0.30687859023036923 5.257827351344665e-05 0.03619298936941371 1.6812980387261375e-05 2.5601302948509385e-06 1.1892750829954384e-09 0.020107216316340947 9.340544659589652e-06 0.2867713739140283 5.340150391321011e-05']
['59906.97235016493 0.30694745832386794 5.258951442541736e-05 0.03622901928370727 1.682049019122578e-05 2.562678889943826e-06 1.1898062929610325e-09 0.020127232935392925 9.344716772903211e-06 0.286820225388475 5.341330133091344e-05']
['59906.972490445136 0.30688246836897437 5.257915962294542e-05 0.03622155416383881 1.6819151537074924e-05 2.5621508407314534e-06 1.1897116025498327e-09 0.020123085646577117 9.343973076152736e-06 0.28675938272239726 5.3402976129641324e-05']
['59906.972630725344 0.3069121587570023 5.258358369695245e-05 0.03622287922483043 1.682141263580047e-05 2.562244569623327e-06 1.1898715425671614e-09 0.020123821791572464 9.345229242111374e-06 0.2867883369654298 5.340755175068426e-05']
['59906.97277100555 0.30685921568287233 5.257743422620651e-05 0.0362141378512007 1.68141028864842e-05 2.5616262439244003e-06 1.1893544835731848e-09 0.02011896547288928 9.341168270269e-06 0.28674025020998306 5.340078664649568e-05']
['59906.97291128576 0.30688104630151936 5.257745359201173e-05 0.03625914782961002 1.681517687766418e-05 2.5648100486143124e-06 1.1894304529087987e-09 0.02014397101645001 9.341764932035655e-06 0.28673707528506936 5.340091008836421e-05']
['59906.973051565976 0.3068587930803079 5.2576506453723034e-05 0.036251437108998544 1.6817539699175828e-05 2.564264626703149e-06 1.189597588341342e-09 0.02013968728277697 9.343077610653237e-06 0.2867191057975309 5.340020721043196e-05']
['59906.973191846184 0.3069529972634999 5.259293975122398e-05 0.036178115624225446 0.000648530720847223 2.559078192598049e-06 4.5874164431015836e-08 0.020098953124569694 0.00036029484491512386 0.2868540441389302 0.00036411315903725456']
['59906.97333212639 0.30691087274402273 5.257905703013924e-05 0.03622159282562337 1.681412085887669e-05 2.5621535754932854e-06 1.1893557548598979e-09 0.020123107125346318 9.341178254931495e-06 0.2867877656186764 5.3402386176734086e-05']
['59906.9734724066 0.30690133971749084 5.2578918751240976e-05 0.03621366520176664 1.681488884504524e-05 2.5615928108160533e-06 1.189410078768765e-09 0.020118702889870353 9.341604913914023e-06 0.2867826368276205 5.3402324663044985e-05']
['59906.97361268681 0.3068775775968492 5.2577717882314305e-05 0.03624610283185499 1.681652839956962e-05 2.56388730378083e-06 1.189526053527442e-09 0.020136723795474994 9.342515777538676e-06 0.2867408538013742 5.340130165797265e-05']
['59906.97375296702 0.3068853751628665 5.257694696325053e-05 0.03619934373165793 1.6817837878200705e-05 2.560579774033767e-06 1.18961868019278e-09 0.02011074651758774 9.343243265667059e-06 0.28677462864527875 5.3400669908699575e-05']
['59906.973893247225 0.3068218934052195 5.257439004671912e-05 0.036225352013910556 1.681164603632602e-05 2.562419483670138e-06 1.189180696974469e-09 0.02012519556328364 9.339803353514455e-06 0.28669669784193585 5.339755065044537e-05']
['59906.97403352743 0.30708518567990917 5.2593438313446515e-05 0.03620281877406767 1.6814726728208077e-05 2.5608255830013064e-06 1.1893986113483235e-09 0.020112677096704258 9.341514849004486e-06 0.2869725085832049 5.3416604659080264e-05']
['59906.97417380764 0.3068348643902086 5.2577381880861685e-05 0.036216666005843785 1.6817037908514752e-05 2.5618050742836656e-06 1.1895620939128497e-09 0.020120370003246544 9.34279883806375e-06 0.286714494386962 5.340102036079917e-05']
['59906.97431408785 0.30688277585292467 5.2576945077417074e-05 0.036223771561689384 1.681637412308335e-05 2.562307689544218e-06 1.1895151406983786e-09 0.02012431753427188 9.342430068379638e-06 0.28675845831865276 5.3400525776964925e-05']
['59906.97445436806 0.3069389829573142 5.258120557839353e-05 0.036205931353208 1.6817306033849224e-05 2.561045752937284e-06 1.1895810599005606e-09 0.020114406307337778 9.342947796582903e-06 0.2868245766499764 5.3404811146627574e-05']
['59906.974594648265 0.30689322890785226 5.2577596483135245e-05 0.03624482236937758 1.6812686394527524e-05 2.563796729588508e-06 1.189254287263516e-09 0.020136012427431987 9.340381330293069e-06 0.2867572164804203 5.3400808751728494e-05']
['59906.97473492847 0.30697036711129755 5.2583374051913685e-05 0.03621458984555723 1.681514292463285e-05 2.5616582159848847e-06 1.1894280512231235e-09 0.020119216580865122 9.341746069240473e-06 0.2868511505304324 5.340673596378681e-05']
['59906.97487520868 0.30701735126768265 5.258816772780804e-05 0.03620062862895873 1.6815570738719788e-05 2.560670661925673e-06 1.189458312879417e-09 0.020111460349421517 9.341983743733215e-06 0.28690589091826113 5.341149731318386e-05']
['59906.97501548889 0.3069549668433424 5.2581656720708796e-05 0.0362133057977835 1.6815426854465383e-05 2.5615673881847273e-06 1.189448135150385e-09 0.020118503220990833 9.341903808036324e-06 0.28683646362235155 5.340507270150528e-05']
['59906.9751557691 0.30686321843618825 5.257719184221106e-05 0.036292873752097304 1.6833501830155457e-05 2.5671956696250616e-06 1.1907266781403145e-09 0.020162707640054057 9.351945461197475e-06 0.2867005107961342 5.340243426962742e-05']
['59906.975296049306 0.3069089359664728 5.2578628590172e-05 0.03622671967073285 1.6823920546392814e-05 2.562516225600681e-06 1.190048940952763e-09 0.020125955372629362 9.346622525773786e-06 0.28678298059384344 5.3402916934026694e-05']
['59906.975436329514 0.30690268205597626 5.257927474163237e-05 0.036250784996007465 1.6814522974173968e-05 2.564218499144934e-06 1.1893841986986776e-09 0.020139324997781923 9.341401652318871e-06 0.28676335705819433 5.340263960878718e-05']
['59906.97557660972 0.30685993605151163 5.258074110295975e-05 0.036259860978780756 1.6818397217216127e-05 2.564860493599061e-06 1.1896582453346328e-09 0.020144367210433754 9.343554009564515e-06 0.28671556884107785 5.340445989302888e-05']
['59906.97571688993 0.3067704409872585 5.257301041772244e-05 0.03625231189576636 1.6814853783079045e-05 2.564326505209038e-06 1.189407598641994e-09 0.020140173275425756 9.341585435043914e-06 0.2866302677118327 5.3396504031838797e-05']
['59906.97585717014 0.3068211497229151 5.257451859413125e-05 0.0361751647953745 1.6813809266179185e-05 2.558869464154562e-06 1.1893337141852136e-09 0.020097313775208056 9.341005147877326e-06 0.286723835947707 5.339788743552804e-05']
['59906.97599745035 0.306874726492012 5.257492352009417e-05 0.036215741968375875 1.6813670170124683e-05 2.5617397120033903e-06 1.189323875152041e-09 0.020119856649097708 9.340927872291491e-06 0.28675486984291426 5.339827259995498e-05']
['59906.976137730555 0.306994124487209 5.258377861022533e-05 0.036285865699203626 1.6817929103018332e-05 2.5666999512875154e-06 1.189625133028628e-09 0.020158814277335346 9.343293946121294e-06 0.28683531020987363 5.340740505485001e-05']
['59906.97627801076 0.3068776589528981 5.2577227220309234e-05 0.03616073905252716 1.6819014255935384e-05 2.5578490515848166e-06 1.1897018918956321e-09 0.0200892994736262 9.343896808852991e-06 0.2867883594792719 5.3401060193132114e-05']
['59906.97641829097 0.3068627012501782 5.2588356468871245e-05 0.03619949134587487 1.681464533041613e-05 2.560590215603677e-06 1.189392853632348e-09 0.02011082852548604 9.341469628008962e-06 0.28675187272469216 5.3411593225704156e-05']
['59906.97655857118 0.3068761195028261 5.257823756591792e-05 0.03616171955434146 1.6812232105581084e-05 2.557918407900575e-06 1.1892221528939969e-09 0.020089844196856364 9.340128947545045e-06 0.28678627530596973 5.3401395808488665e-05']
['59906.97669885139 0.3069321005567872 5.258036368270911e-05 0.03613890879872344 1.6816543814938054e-05 2.556304877006233e-06 1.1895271439417024e-09 0.020077171554846354 9.342524341632252e-06 0.2868549290019409 5.340390815361687e-05']
['59906.976839131596 0.3068282606839615 5.257416616902376e-05 0.0361920098353629 1.6816735360297245e-05 2.5600610069904437e-06 1.1895406930042542e-09 0.020106672130757165 9.342630755720691e-06 0.28672158855320434 5.3397824841521966e-05']
['59906.976979411804 0.30691331695086366 5.257973079339212e-05 0.036228527415621506 1.6817823795902986e-05 2.56264409739396e-06 1.1896176840739835e-09 0.02012695967534528 9.343235442168325e-06 0.2867863572755184 5.3403409430797375e-05']
['59906.97711969201 0.3068491600425383 5.258485440295977e-05 0.036198693636537396 1.6822210130799905e-05 2.5605337892106947e-06 1.1899279537988284e-09 0.020110385353631886 9.345672294888836e-06 0.2867387746889064 5.3408880377929006e-05']
['59906.97725997222 0.3068603274830418 5.258295280443845e-05 0.03618381412280191 1.681430681353102e-05 2.5594812789165585e-06 1.1893689084609768e-09 0.020102118957112173 9.34128156307279e-06 0.28675820852592965 5.340623996195955e-05']
['59906.97740025243 0.3068355841248018 5.257339687477036e-05 0.0361860485857905 1.681816995047143e-05 2.5596393348409095e-06 1.1896421695009355e-09 0.020103360325439166 9.343427750261906e-06 0.2867322237993626 5.339720686586966e-05']
['59906.977540532636 0.3067844319022466 5.2571894007213476e-05 0.036232849388309424 1.6816268572638456e-05 2.562949814423823e-06 1.1895076745316895e-09 0.020129360771283012 9.342371429243586e-06 0.28665507113096356 5.339554235540299e-05']
['59906.977680812844 0.30681065870158936 5.257975256459287e-05 0.03622954192740918 1.6817051793772537e-05 2.5627158594232197e-06 1.1895630760939219e-09 0.0201275232930051 9.342806552095853e-06 0.28668313540858426 5.340335583110575e-05']
['59906.97782109305 0.3068366310494947 5.257878870917438e-05 0.03621271040941951 1.6817544281184787e-05 2.561525273073088e-06 1.1895979124521754e-09 0.020118172449677504 9.34308015621377e-06 0.2867184585998172 5.3402454708837486e-05']
['59906.97796137326 0.30698289154194147 5.258413925043139e-05 0.03649009835367645 1.6912894098225124e-05 2.5811464563986837e-06 1.1963425323210098e-09 0.02027227686315358 9.396052276791736e-06 0.2867106146787879 5.341701507101424e-05']
['59906.97810165347 0.30700837221468275 5.2586282696153495e-05 0.036219159186626874 1.6814608572225483e-05 2.5619814307483993e-06 1.189390253522241e-09 0.020121755103681596 9.341449206791934e-06 0.28688661711100116 5.340954784570682e-05']
['59906.97824193368 0.30678211539350153 5.257972359120072e-05 0.036258756026196035 1.6820854657168606e-05 2.5647823341920652e-06 1.1898320736527609e-09 0.020143753347886685 9.344919253982558e-06 0.2866383620456148 5.340369695808075e-05']
['59906.97838221389 0.3069647814811292 5.258379851899796e-05 0.03625984148692078 1.681854541464347e-05 2.56485911483201e-06 1.1896687281582394e-09 0.020144356381622656 9.343636341468593e-06 0.28682042509950656 5.340748455758036e-05']
['59906.9785224941 0.3068965661910022 5.258302438675448e-05 0.03621987702769153 1.6814418030615808e-05 2.562032207616752e-06 1.1893767754604434e-09 0.02012215390427307 9.341343350342115e-06 0.2867744122867291 5.3406321248022666e-05']
['59906.97866277431 0.3069185050628222 5.2580473234372e-05 0.036216847945450464 1.6820269513323813e-05 2.56181794387822e-06 1.1897906831926194e-09 0.020120471080805814 9.344594174068785e-06 0.28679803398201636 5.340437815225031e-05']
['59906.97880305452 0.3069544259469069 5.2582197969070864e-05 0.03623562924945063 1.682275312953494e-05 2.563146449375704e-06 1.1899663631022833e-09 0.020130905138583684 9.345973960852743e-06 0.28682352080832324 5.3406317721178804e-05']
['59906.978943334725 0.3068361328196291 5.257464654356191e-05 0.03615985155549703 1.6815731654090684e-05 2.5577862740117834e-06 1.1894696953135048e-09 0.02008880641972057 9.34207314116149e-06 0.2867473263999086 5.339820024827875e-05']
['59906.97908361493 0.3069221265206228 5.258141422054557e-05 0.03647170249621865 1.6934965554593945e-05 2.579845215666763e-06 1.1979037684909366e-09 0.020262056942343693 9.408314196996637e-06 0.2866600695782791 5.34164908755901e-05']
['59906.97922389514 0.3069532857441448 5.2582259374188e-05 0.036228925064147245 1.6814984921241518e-05 2.5626722252732867e-06 1.1894168747694543e-09 0.020127180591192912 9.341658289578622e-06 0.2868261051529519 5.340562311679955e-05']
['59906.97936417535 0.3068538443582756 5.2582883621429037e-05 0.03622146412893554 1.681404798238953e-05 2.5621444720648285e-06 1.189350599902935e-09 0.02012303562718641 9.341137767994184e-06 0.2867308087310892 5.340614669441522e-05']
['59906.97950445556 0.30694596803789487 5.258238954763332e-05 0.03621493869074388 1.681509535487021e-05 2.5616828917341428e-06 1.1894246863507387e-09 0.0201194103837466 9.341719641594561e-06 0.2868265576541483 5.3405762014984974e-05']
['59906.979644735766 0.3069251878751449 5.257990738724828e-05 0.036213923977146 1.6816747077508573e-05 2.561611115429731e-06 1.1895415218274107e-09 0.02011884665397 9.34263726528254e-06 0.2868063412211749 5.3403478650011665e-05']
['59906.979785015974 0.3069231932098341 5.258036287566258e-05 0.03623268261519455 1.6814289854984157e-05 2.5629380176391086e-06 1.1893677088891718e-09 0.02012926811955253 9.341272141657865e-06 0.28679392509028157 5.3403688312333525e-05']
['59906.97992529618 0.306815907443163 5.2573051288833674e-05 0.03624165661499222 1.681635354634808e-05 2.5635727982733775e-06 1.1895136851920984e-09 0.02013425367499568 9.342418636860046e-06 0.28668165376816734 5.339669004540156e-05']
['59906.98006557639 0.30692688898356724 5.2589778891365346e-05 0.03621535789696155 1.681780314085688e-05 2.561712544508239e-06 1.1896162230283446e-09 0.020119643276089748 9.34322396714271e-06 0.2868072457074775 5.341330057151389e-05']
['59906.9802058566 0.3069860561356632 5.2586775082068664e-05 0.03620448329134032 1.681657064140015e-05 2.56094332351322e-06 1.1895290415257239e-09 0.020113601828522402 9.342539245222305e-06 0.2868724543071408 5.3410223301167696e-05']
['59906.98034613681 0.3069501387067021 5.2582405729630325e-05 0.03620939704814262 1.681824844746581e-05 2.561290900706214e-06 1.189647722027457e-09 0.020116331693412568 9.343471359703227e-06 0.28683380701328953 5.340608438525572e-05']
['59906.980486417015 0.30682575104344045 5.258328869164417e-05 0.03613579899115561 1.6814474876999033e-05 2.556084903118907e-06 1.1893807965195045e-09 0.02007544388397534 9.34137493166613e-06 0.2867503071594651 5.340658700237972e-05']
['59906.98062669722 0.306823547237446 5.257496729799221e-05 0.03620425036457979 1.681433533323942e-05 2.5609268473153012e-06 1.1893709258176733e-09 0.020113472424766552 9.341297407355234e-06 0.2867100748126794 5.339838034657617e-05']
['59906.98076697743 0.30688527512850894 5.258297301751999e-05 0.03616837883989249 1.6816379889965046e-05 2.5583894559952e-06 1.1895155486218134e-09 0.02009354379994027 9.342433272202804e-06 0.28679173132856867 5.340646132076902e-05']
['59906.98090725764 0.3068707586857733 5.25775841366883e-05 0.03618663031638507 1.6812413396497397e-05 2.5596804838629867e-06 1.1892349766030942e-09 0.020103683509102816 9.340229664720776e-06 0.2867670751766705 5.3400770067858266e-05']
['59906.98104753785 0.30688687830855893 5.257810776924358e-05 0.03622122142481281 1.6819333953292428e-05 2.56212730426001e-06 1.1897245058577063e-09 0.02012290079156267 9.344074418495792e-06 0.2867639775169963 5.340195823499902e-05']
['59906.981187818055 0.30688728425699796 5.2580555359147566e-05 0.03634758998532373 1.686200125831035e-05 2.5710660513963306e-06 1.192742600303045e-09 0.020193105547402074 9.367778476839083e-06 0.2866941787095959 5.340852062609029e-05']
['59906.98132809826 0.30689060950234737 5.25786381451075e-05 0.03615640931196221 1.681626534430729e-05 2.5575427850900533e-06 1.1895074461739726e-09 0.020086894062201228 9.342369635726271e-06 0.28680371544014616 5.340218216145005e-05']
['59906.98146837847 0.30689487699497997 5.257823079130204e-05 0.036229536298434124 1.6814259448577438e-05 2.5627154612546843e-06 1.1893655580758692e-09 0.020127520165796737 9.341255249209689e-06 0.28676735682918325 5.340158614474208e-05']
['59906.98160865868 0.3069419756396503 5.2579114887421624e-05 0.03620655172930878 1.6813728110921202e-05 2.561089635569735e-06 1.1893279736250065e-09 0.0201147509607271 9.340960061622888e-06 0.2868272246789232 5.3402404975970105e-05']
['59906.98174893889 0.3068712594540453 5.257675964135367e-05 0.036247165341849144 1.6819093029070835e-05 2.563962460988676e-06 1.1897074639551387e-09 0.020137314078805077 9.34394057170602e-06 0.2867339453752402 5.340060748523607e-05']
['59906.981889219096 0.3068060642935231 5.257566786394508e-05 0.03621887524379367 1.681656441293403e-05 2.561961345901528e-06 1.1895286009518701e-09 0.02012159735766315 9.34253578496335e-06 0.2866844669358599 5.339928675771979e-05']
['59906.982029499304 0.3068737408653838 5.258193299319449e-05 0.03621911533249858 1.6813679994021614e-05 2.5619783287033803e-06 1.1893245700505995e-09 0.02012173074027699 9.340933330012008e-06 0.2867520101251068 5.340517496251206e-05']
['59906.98216977951 0.30696410917509603 5.258322598069397e-05 0.0361942399668932 1.681528888333923e-05 2.560218756526796e-06 1.1894383756896158e-09 0.020107911092718443 9.341827157410683e-06 0.2868561980823776 5.340660435915829e-05']
['59906.98231005972 0.3068621171449611 5.258187351886806e-05 0.036236942084677704 1.682056334242354e-05 2.5632393134716386e-06 1.1898114673497952e-09 0.020131634491487613 9.344757412457521e-06 0.28673048265347345 5.34057853968268e-05']
['59906.98245033993 0.30690412846505244 5.2578837172141835e-05 0.03622758923913494 1.6814984327699182e-05 2.562577734982703e-06 1.1894168327849223e-09 0.02012643846618608 9.341657959832879e-06 0.2867776899988664 5.3402253621107725e-05']
['59906.98259062014 0.3069145244656486 5.2584991445811425e-05 0.036328837447166466 1.682052374608765e-05 2.569739580665998e-06 1.1898086664819795e-09 0.02018268747064804 9.344735414493138e-06 0.28673183699500054 5.340885137618055e-05']
['59906.982730900345 0.3069128546482766 5.258089355897866e-05 0.03624022724398117 1.681364898679094e-05 2.5634716909569678e-06 1.1893223767376959e-09 0.020133459579989535 9.340916103772743e-06 0.2867793950682871 5.340414853846436e-05']
['59906.98287118055 0.30680526554771614 5.257165231679246e-05 0.03623281804908103 1.6822429657443114e-05 2.5629475976268842e-06 1.1899434821323427e-09 0.02012934336060057 9.345794254135063e-06 0.2866759221871156 5.339590337805265e-05']
['59906.98301146076 0.30692557499898243 5.2584273794509434e-05 0.03628783529190385 1.681858548423732e-05 2.566839271471568e-06 1.1896715625022077e-09 0.02015990849550214 9.343658602354065e-06 0.2867656665034803 5.340795639764994e-05']
['59906.98315174097 0.30696011807498547 5.258101520597682e-05 0.03611834159618195 1.6818498004200067e-05 2.554850045028433e-06 1.1896653745553853e-09 0.020065745331212193 9.343610002333371e-06 0.2868943727437733 5.3404739564638546e-05']
['59906.98329202118 0.3068486891148544 5.257671847825052e-05 0.03621304598259949 1.6815168625165596e-05 2.5615490100199155e-06 1.1894298691639352e-09 0.020118358879221934 9.34176034731422e-06 0.2867303302356325 5.340018550836562e-05']
['59906.983432301386 0.3069807376529679 5.2584280327694986e-05 0.03617342127709278 1.6811646997903528e-05 2.5587461354643806e-06 1.189180764992164e-09 0.02009634515394043 9.339803887724181e-06 0.2868843924990275 5.3407288587258927e-05']
['59906.983572581594 0.30678814600414067 5.257760509679179e-05 0.03642100118143583 1.687234879379078e-05 2.5762588312805658e-06 1.193474538712169e-09 0.02023388954524213 9.373527107661545e-06 0.28655425645889854 5.340662475903389e-05']
['59906.98371286181 0.30694409533635614 5.258150335394589e-05 0.03627056463286175 1.6814477860278015e-05 2.5656176222462323e-06 1.1893810075433251e-09 0.02015031368492319 9.341376589043342e-06 0.28679378165143293 5.340482947767318e-05']
['59906.98385314202 0.3068646814828299 5.257634686491241e-05 0.036205348656308305 1.6814182435120418e-05 2.561004535563101e-06 1.1893601104881495e-09 0.020114082586837945 9.341212463955787e-06 0.28675059889599197 5.339972378164842e-05']
['59906.983993422225 0.30683905982990667 5.257436323506569e-05 0.03624330525362966 1.681201696103724e-05 2.563689415601609e-06 1.189206934530605e-09 0.02013516958534981 9.340009422798467e-06 0.28670389024455684 5.3397560296240045e-05']
['59906.98413370243 0.3068511303570659 5.25788659631649e-05 0.03618395044390314 1.6818235491891704e-05 2.5594909216619404e-06 1.1896468056080527e-09 0.020102194691057302 9.343464162162058e-06 0.2867489356660086 5.340259795667311e-05']
['59906.98427398264 0.30694177964246333 5.257988840059844e-05 0.036281765003792266 1.681496918755512e-05 2.5664098864231457e-06 1.1894157618388038e-09 0.020156536113217924 9.341649548641734e-06 0.2867852435292454 5.340328716950882e-05']
['59906.98441426285 0.30687895681673005 5.257720719182646e-05 0.03623444281094721 1.681480953558092e-05 2.56306252601904e-06 1.1894044687717513e-09 0.020130246006081785 9.341560853100511e-06 0.2867487108106483 5.340063178712803e-05']
['59906.98455454306 0.3068788951544783 5.257856559913947e-05 0.03622345488759502 1.681526027469578e-05 2.5622852894342326e-06 1.1894363520420511e-09 0.020124141604219454 9.341811263719877e-06 0.28675475355025887 5.340201305334824e-05']
['59906.984694823266 0.3068457485025584 5.25798504604984e-05 0.03622334320482418 1.681506962803058e-05 2.562277389494216e-06 1.1894228665490953e-09 0.020124079558235655 9.341705348905877e-06 0.28672166894432277 5.340325957536815e-05']
['59906.984835103474 0.30686354122662174 5.2576324604826e-05 0.036236700856890125 1.6816781130867945e-05 2.56322225009617e-06 1.1895439306098432e-09 0.020131500476050068 9.342656183815525e-06 0.2867320407505717 5.339995443369796e-05']
['59906.98497538368 0.3068657757972232 5.257636717988838e-05 0.03621000422942668 1.6815761894699268e-05 2.561333849996308e-06 1.1894718343989884e-09 0.020116669016348156 9.342089941499592e-06 0.286749106780875 5.3399897287443465e-05']
['59906.98511566389 0.30683098378372364 5.2576714053320615e-05 0.036691658978824704 1.727412152750866e-05 2.5954039540987004e-06 1.2218941460769442e-09 0.020384254988235945 9.596734181949254e-06 0.2864467287954877 5.3445375549280544e-05']
['59906.9852559441 0.3070532826795117 5.25892511823991e-05 0.03619732933269287 1.6814944047453467e-05 2.560437284454812e-06 1.1894139835403825e-09 0.020109627407051592 9.341635581918592e-06 0.28694365527246013 5.341250317360939e-05']
['59906.98539622431 0.30691922719281495 5.258072610779551e-05 0.036236973667439096 1.68217211463774e-05 2.5632415474950127e-06 1.189893365226412e-09 0.020131652037466162 9.345400636876332e-06 0.2867875751553488 5.340476824298311e-05']
['59906.985536504515 0.3069625333285605 5.258241779401194e-05 0.036150417420312796 1.681171471872534e-05 2.557118945456953e-06 1.1891855552604048e-09 0.020083565233507107 9.339841510402967e-06 0.28687896809505337 5.340546133592958e-05']
['59906.98567678472 0.3069685430335532 5.2581573256069706e-05 0.03621762174105164 1.681243106895813e-05 2.5618726787203848e-06 1.1892362266739753e-09 0.020120900967250912 9.340239482754516e-06 0.2868476420663023 5.340469941567531e-05']
['59906.98581706493 0.30695356296428733 5.258960565158433e-05 0.03619757298380795 1.6816601049474392e-05 2.5604545192456363e-06 1.1895311924569796e-09 0.02010976276878219 9.342556138596883e-06 0.28684380019550515 5.341301318772407e-05']
['59906.98595734514 0.3069290375244621 5.258624389377686e-05 0.036219107208558476 1.681320054200406e-05 2.561977754052169e-06 1.1892906557579022e-09 0.02012172622697693 9.340666967780034e-06 0.28680731129748516 5.340937283154298e-05']
['59906.98609762535 0.3068939583774234 5.258463478137e-05 0.036232068743342324 1.681566809048756e-05 2.562894595088128e-06 1.1894651991083323e-09 0.020128927079634627 9.342037828048644e-06 0.28676503129778874 5.340802829042427e-05']
['59906.986237905556 0.306926033792593 5.258018420443596e-05 0.03625512328397845 1.681985541145611e-05 2.5645253702449955e-06 1.1897613914774244e-09 0.020141735157765805 9.344364117475616e-06 0.2867842986348272 5.340405332680641e-05']
['59906.986378185764 0.30700738750696877 5.2584863814500686e-05 0.03617704602833014 1.6814387816346533e-05 2.5590025341652274e-06 1.1893746382380848e-09 0.020098358904627855 9.341326564636963e-06 0.2869090286023409 5.3408129384736704e-05']
['59906.98651846597 0.30702909658973815 5.258725235806559e-05 0.03649321552515815 1.6927081162733387e-05 2.581366951176363e-06 1.1973460618518781e-09 0.02027400862508786 9.403933979296326e-06 0.28675508796465027 5.342146651728909e-05']
['59906.98665874618 0.3068994528991817 5.257895025904307e-05 0.036147929055924566 1.6812819960343853e-05 2.556942929682464e-06 1.1892637351123591e-09 0.02008218280884698 9.340455533524363e-06 0.2868172700903347 5.340215463739896e-05']
['59906.98679902639 0.306858410103038 5.257592617776133e-05 0.03629024379575736 1.6818740707290998e-05 2.567009638268787e-06 1.1896825422872188e-09 0.020161246553198533 9.343744837383887e-06 0.2866971635498395 5.339975263084603e-05']
['59906.9869393066 0.3069541993048971 5.258242138752391e-05 0.036203090204326646 1.682266639175598e-05 2.560844782764605e-06 1.1899602276594948e-09 0.02011282789129258 9.345925773197766e-06 0.2868413714136045 5.340652925938227e-05']
['59906.987079586805 0.30686515826891225 5.2576810051606446e-05 0.03618843478541516 1.6816021793226152e-05 2.5598081239366736e-06 1.1894902184591023e-09 0.02010468599189731 9.342234329570084e-06 0.28676047227701496 5.340035858935128e-05']
['59906.98721986701 0.3068811354469432 5.257862804143795e-05 0.03620074405869823 1.6814584246044585e-05 2.560678826909504e-06 1.189388532796936e-09 0.020111524477054568 9.341435692246991e-06 0.2867696109698886 5.340200883405297e-05']
['59906.98736014722 0.30684999922556544 5.2575468129720654e-05 0.03617390711204711 1.681715315413248e-05 2.558780501257496e-06 1.1895702458727304e-09 0.020096615062248396 9.342862863406934e-06 0.286753384163317 5.339914732974395e-05']
['59906.98750042743 0.3068552017522522 5.2584171277492565e-05 0.03624441254016777 1.681418979120412e-05 2.563767740102035e-06 1.1893606308246309e-09 0.02013578474453765 9.341216550668957e-06 0.2867194170077146 5.340742828097198e-05']
['59906.98764070764 0.30682692124739475 5.258013095501879e-05 0.03613097973211664 1.6813840691414317e-05 2.55574401027531e-06 1.1893359370658843e-09 0.020072766517842577 9.341022606341287e-06 0.2867541547295522 5.3403416319362045e-05']
['59906.987780987845 0.30693401847007695 5.258051084901576e-05 0.036182104644512686 1.6817394272659123e-05 2.559360358063297e-06 1.1895873015195686e-09 0.020101169246951493 9.342996818143958e-06 0.28683284922312546 5.3404135707708186e-05']
['59906.98792126805 0.30698371212649755 5.258648604335489e-05 0.03624182890194885 1.681817194212327e-05 2.563584985082612e-06 1.1896423103814843e-09 0.020134349389971582 9.34342885673515e-06 0.28684936273652595 5.3410094337951044e-05']
['59906.98806154826 0.3069190284394798 5.257919835983158e-05 0.03620875091911771 0.0006591803312429686 2.5612451964270187e-06 4.662747026945395e-08 0.02011597273284317 0.00036621129513498256 0.28680305570663667 0.00036996659955272154']
['59906.98820182847 0.30693897093136663 5.2588635335068333e-05 0.036227263329581455 1.681993110852305e-05 2.562554681597619e-06 1.1897667459495938e-09 0.02012625740532303 9.344406171401694e-06 0.2868127135260436 5.3412381458805294e-05']
['59906.98834210868 0.30695447711837254 5.258101192838892e-05 0.036236654811468025 1.681413493907559e-05 2.5632189930488218e-06 1.1893567508302332e-09 0.020131474895260015 9.341186077264217e-06 0.2868230022231125 5.3404312304751686e-05']
['59906.988482388886 0.30685587635485745 5.2576747123416423e-05 0.036196116661193045 1.6813578836498996e-05 2.5603515054932373e-06 1.1893174146195972e-09 0.020108953700662804 9.340877131388332e-06 0.28674692265419466 5.3400059210298364e-05']
['59906.988622669094 0.30704356934601307 5.258868287310881e-05 0.036234497390928086 1.681851007386311e-05 2.563066386762929e-06 1.1896662283094007e-09 0.02013027632829338 9.343616707701726e-06 0.2869132930177197 5.3412290154128856e-05']
['59906.9887629493 0.30690233999932787 5.2577763667728306e-05 0.03626203582088609 1.6819998382334246e-05 2.5650143322086207e-06 1.1897715045983016e-09 0.02014557545604783 9.344443545741247e-06 0.28675676454328003 5.34016840322385e-05']
['59906.98890322951 0.3068672265687483 5.2577244019759824e-05 0.03626768095868735 1.6817422524283917e-05 2.5654136440244005e-06 1.1895892999132292e-09 0.020148711643715192 9.343012513491066e-06 0.28671851492503314 5.340092201021084e-05']
['59906.98904350972 0.3069458394358607 5.259085945414836e-05 0.036227492729935334 1.681295685014583e-05 2.5625709083532934e-06 1.1892734180850896e-09 0.020126384849964075 9.34053158341435e-06 0.2868194545858966 5.341389358946554e-05']
['59906.989183789934 0.30688529425116906 5.2577147814186084e-05 0.03621931748600506 1.6814588200695753e-05 2.561992628138856e-06 1.1893888125312833e-09 0.020121843047780592 9.341437889275418e-06 0.2867634512033885 5.3400551814695355e-05']
['59906.98932407014 0.30695142033296197 5.258758852182017e-05 0.03621381034010424 1.6815804924251784e-05 2.5616030772533253e-06 1.1894748781172028e-09 0.020118783522280137 9.342113846806548e-06 0.28683263681068183 5.341094979184481e-05']
['59906.98946435035 0.3069306494933358 5.258075239468706e-05 0.036236362214887824 1.6817805669951095e-05 2.563198296074568e-06 1.189616401925165e-09 0.020131312341604347 9.343225372195053e-06 0.28679933715173145 5.340441351374452e-05']
['59906.98960463056 0.3068367640284222 5.257388208896519e-05 0.03624630813785194 1.6813287699076296e-05 2.5639018262093906e-06 1.189296820859623e-09 0.02013683785436219 9.340715388375719e-06 0.28669992617406 5.339721005699693e-05']
['59906.98974491077 0.30681520256714323 5.2573424632041185e-05 0.036196239004557346 1.681927144903009e-05 2.560360159515985e-06 1.1897200845855661e-09 0.020109021669198524 9.344039693905605e-06 0.2867061808979447 5.339734127596803e-05']
['59906.989885190975 0.3068315311375134 5.2580215834739575e-05 0.0362144928731884 1.6812931445903677e-05 2.561651356592955e-06 1.18927162110255e-09 0.020119162707326887 9.340517469946488e-06 0.2867123684301865 5.340341153741186e-05']
['59906.99002547118 0.3068463014330707 5.25767184894301e-05 0.0362267503447819 1.681338443385854e-05 2.562518395345806e-06 1.18930366344574e-09 0.02012597241376772 9.34076912992141e-06 0.28672032901930294 5.3400012125984336e-05']
['59906.99016575139 0.30686135282763344 5.258179955792522e-05 0.03614610512911502 1.6815745608131145e-05 2.55681391325243e-06 1.1894706823599562e-09 0.020081169516175012 9.342080893406192e-06 0.28678018331145844 5.340524431335157e-05']
['59906.9903060316 0.30684518680941736 5.2574909207931344e-05 0.0362145115937835 1.6816775547898342e-05 2.5616526808041763e-06 1.1895435356955277e-09 0.020119173107657498 9.342653082165744e-06 0.2867260137017599 5.339856032549871e-05']
['59906.99044631181 0.3069375265758276 5.2581538006940935e-05 0.03624990424500253 1.681461016270908e-05 2.5641561987555704e-06 1.1893903660259416e-09 0.020138835691668074 9.341450090393933e-06 0.28679869088415955 5.340487645306086e-05']
['59906.990586592015 0.30684115182339555 5.2574521103858864e-05 0.03621330246350888 1.6816637300945892e-05 2.561567152333044e-06 1.189533756724039e-09 0.020118501368616044 9.342576278303273e-06 0.2867226504547795 5.339816477011187e-05']
['59906.99072687222 0.3069404169119433 5.2589693382243746e-05 0.03623430858942732 1.6814718169930516e-05 2.5630530317886576e-06 1.189398005974022e-09 0.020130171438570734 9.341510094405841e-06 0.2868102454733726 5.3412916610893824e-05']
['59906.99086715243 0.30698938594805036 5.2584056455291664e-05 0.03627536730411594 1.6815131589522994e-05 2.5659573417440768e-06 1.1894272494281172e-09 0.020152981835619966 9.341739771957218e-06 0.2868364041124304 5.340740674532202e-05']
['59906.99100743264 0.30689289766623207 5.257799792984966e-05 0.03624306228487379 1.681997523712785e-05 2.563672229077825e-06 1.189769867409854e-09 0.02013503460270766 9.34443068729325e-06 0.2867578630635244 5.340191242999545e-05']
['59906.99114771285 0.3068447572709322 5.257488820574797e-05 0.036167207853963476 1.681757782613182e-05 2.558306625684581e-06 1.1896002852717913e-09 0.02009289325220193 9.343098792295455e-06 0.28675186401873026 5.339861763088526e-05']
['59906.991287993056 0.3068749011520574 5.2575772645908615e-05 0.036238189441048535 1.682222920199724e-05 2.5633275458859566e-06 1.1899293028100848e-09 0.020132327467249186 9.345682889998467e-06 0.2867425736848082 5.339994061789472e-05']
['59906.991428273264 0.3068889875713434 5.2583140724381375e-05 0.03622513683569783 1.681729317219461e-05 2.5624042629251597e-06 1.1895801501246013e-09 0.020125076019832128 9.342940651219228e-06 0.28676391155151126 5.340671519998491e-05']
['59906.99156855347 0.3069513807263968 5.258627399631454e-05 0.03622107151700301 1.6815684899009432e-05 2.5621167004515935e-06 1.18946638806804e-09 0.02012281750944612 9.342047166116351e-06 0.2868285632169507 5.3409643867651934e-05']
['59906.99170883368 0.3068435736918882 5.257404623731409e-05 0.03634162496765508 1.6841294023190574e-05 2.5706441127085095e-06 1.1912778630465658e-09 0.020189791648697265 9.356274457328097e-06 0.2866537820431909 5.340009559433475e-05']
['59906.99184911389 0.3068675892136264 5.2576927011314383e-05 0.03623522909952796 1.681371928576031e-05 2.563118144558739e-06 1.1893273493725711e-09 0.02013068283307109 9.340955158755727e-06 0.2867369063805553 5.3400249973487626e-05']
['59906.9919893941 0.30689273191998173 5.257719823623838e-05 0.036186176177116725 1.681617925602217e-05 2.5596483600810273e-06 1.1895013566734751e-09 0.020103431209509293 9.342321808901204e-06 0.28678930071047243 5.340075609159274e-05']
['59906.992129674305 0.30691186620764055 5.258046703276681e-05 0.03621464623162412 1.681517191395396e-05 2.561662204483226e-06 1.1894301017981241e-09 0.020119247906457843 9.341762174418867e-06 0.2867926183011827 5.340387658126777e-05']
['59906.99226995451 0.30692163468532885 5.258001621989123e-05 0.03624567428329462 1.6816916517950387e-05 2.563856990171169e-06 1.1895535072869105e-09 0.02013648571294146 9.342731398861326e-06 0.2867851489723874 5.340360227246186e-05']
['59906.99241023472 0.3068548739166672 5.2577857607902135e-05 0.036231799738830076 1.6813752396413947e-05 2.5628755669113106e-06 1.1893296914722135e-09 0.020128777632683375 9.340973553563302e-06 0.2867260962839838 5.3401169440052544e-05']
['59906.99255051493 0.3069326443634022 5.2580470947709596e-05 0.03624615306765008 1.6813935501443407e-05 2.563890857236434e-06 1.1893426435035662e-09 0.020136751704250045 9.34107527857967e-06 0.2867958926591521 5.3403760283738686e-05']
['59906.99269079514 0.3068756255748274 5.257599067123393e-05 0.03623647505764202 1.681544599497188e-05 2.5632062780666225e-06 1.1894494890642617e-09 0.020131375032023346 9.341914441651044e-06 0.28674425054280406 5.339949588242201e-05']
['59906.992831075346 0.30685498307788345 5.2584520858875565e-05 0.036187888688718736 1.6816591406873194e-05 2.559769495497277e-06 1.1895305103824709e-09 0.02010438260484374 9.342550781596219e-06 0.2867506004730397 5.3408005851784275e-05']
['59906.992971355554 0.3068330230057994 5.258047450471418e-05 0.036186124331136715 1.682259696364067e-05 2.559644692728139e-06 1.1899553166249432e-09 0.020103402406187063 9.345887202022595e-06 0.2867296205996123 5.340460566967823e-05']
['59906.99311163576 0.3068752952830942 5.258353896562319e-05 0.03622956285645453 1.681445004173268e-05 2.5627173398503406e-06 1.1893790397837696e-09 0.02012753492025252 9.341361134295932e-06 0.28674776036284166 5.340683100494306e-05']
['59906.99325191597 0.3069459738140506 5.258296639993911e-05 0.03614511523865015 1.6814527570224227e-05 2.5567438928254946e-06 1.1893845238027298e-09 0.020080619577027857 9.341404205680126e-06 0.28686535423702275 5.340627479941869e-05']
['59906.99339219618 0.3068128516863424 5.2573313586090376e-05 0.03622354964334778 1.681353473625738e-05 2.5622919920326495e-06 1.1893142951656215e-09 0.020124194246304322 9.340852631254098e-06 0.28668865744003813 5.33966743280909e-05']
['59906.99353247639 0.306884914787487 5.2594338695907216e-05 0.03627032229555047 1.681623948411373e-05 2.5656004803880166e-06 1.1895056169394684e-09 0.020150179053083594 9.342355268952072e-06 0.2867347357344034 5.341763814351136e-05']
['59906.993672756595 0.30687130319232236 5.257695129785991e-05 0.036255508325035796 1.68177786500033e-05 2.5645526063283597e-06 1.18961449065483e-09 0.02014194906946433 9.343210361112944e-06 0.28672935412285805 5.3400668419314205e-05']
['59906.9938130368 0.30691609103095363 5.258176570937443e-05 0.0362468721057781 1.6813577904440153e-05 2.5639417187796985e-06 1.1893173486899206e-09 0.020137151169876723 9.340876613577863e-06 0.2867789398610769 5.340500033728706e-05']
['59906.99395331701 0.3069153522103561 5.2578816620076794e-05 0.03622572405045828 1.681625323469921e-05 2.5624457998726185e-06 1.189506589594424e-09 0.0201254022502546 9.342362908166229e-06 0.2867899499601015 5.340235670712991e-05']
['59906.99409359722 0.30687051927495296 5.257691280767821e-05 0.03616283811647723 1.6814047166890733e-05 2.557997529986381e-06 1.189350542218195e-09 0.02009046562026513 9.341137314939297e-06 0.28678005365468784 5.340026785253748e-05']
['59906.99423387743 0.30694116223557044 5.2583753037059495e-05 0.036218162780902646 1.681701457444147e-05 2.561910949461139e-06 1.189560443364803e-09 0.020121201544945917 9.342785874689707e-06 0.28681996069062454 5.340729099442102e-05']
['59906.994374157635 0.3068273740280292 5.2584367215863616e-05 0.036243047368816436 1.6812970214293787e-05 2.5636711739825985e-06 1.1892743634051818e-09 0.02013502631600913 9.340539007940993e-06 0.28669234771202007 5.340750269813839e-05']
['59906.99451443785 0.3068421672107816 5.257570847565202e-05 0.03617200467605218 1.682084201104468e-05 2.5586459314386028e-06 1.1898311791224793e-09 0.02009555815336232 9.344912228358157e-06 0.2867466090574193 5.339974256747373e-05']
['59906.99465471806 0.30687702637084163 5.2577822236816585e-05 0.036178994712118814 1.6816020864374196e-05 2.559140375346334e-06 1.1894901527562666e-09 0.020099441506732672 9.34223381354122e-06 0.286777584864109 5.34013550745031e-05']
['59906.99479499827 0.3069243672812283 5.2579456631101765e-05 0.036242269744944836 1.6814356048114906e-05 2.563616168345696e-06 1.1893723910953752e-09 0.02013459430274713 9.341308915619392e-06 0.2867897729784812 5.340280247214505e-05']
['59906.994935278475 0.3068424218009891 5.257449436994362e-05 0.03618269805579624 1.6817234029620114e-05 2.5594023333251034e-06 1.1895759666432332e-09 0.0201014989198868 9.342907794233397e-06 0.2867409228811023 5.339819645181643e-05']
['59906.99507555868 0.30697423284675246 5.25834473618742e-05 0.03624698417266495 1.6813874884360626e-05 2.5639496458903647e-06 1.1893383557220728e-09 0.020137213429258304 9.34104160242257e-06 0.2868370194174942 5.3406684924990276e-05']
['59906.99521583889 0.30689285043876213 5.257978360498162e-05 0.03622344267685408 1.6815233349737463e-05 2.5622844257009974e-06 1.1894344474908474e-09 0.02012413482047449 9.341796305409701e-06 0.28676871561828765 5.3403209661578026e-05']
['59906.9953561191 0.3068717310719936 5.258656454067535e-05 0.03615154293693907 1.682272630876115e-05 2.5571985594723325e-06 1.1899644659206272e-09 0.020084190520521704 9.345959060422861e-06 0.28678754055147193 5.341061430979534e-05']
['59906.99549639931 0.30683253762347246 5.2576184991935994e-05 0.036269391663762376 1.681497239283657e-05 2.565534651655006e-06 1.1894159885660867e-09 0.02014966203542354 9.341651329353649e-06 0.2866828755880489 5.339964117731027e-05']
['59906.995636679516 0.3069221595561971 5.258039651904874e-05 0.03623519269546718 1.681431799540063e-05 2.563115569498196e-06 1.189369699416453e-09 0.020130662608592878 9.341287775222572e-06 0.28679149694760425 5.3403724171633524e-05']
['59906.995776959724 0.3069272708926951 5.258030044609503e-05 0.036204272462662626 1.6812127880497398e-05 2.560928410434908e-06 1.1892147804774357e-09 0.020113484701479233 9.340071044720776e-06 0.2868137861912159 5.340341676449226e-05']
['59906.99591723993 0.3069279524198665 5.257920805825806e-05 0.03623355307815477 1.6814256890294175e-05 2.562999590298174e-06 1.189365377114346e-09 0.020129751710085984 9.341253827941209e-06 0.2867982007097805 5.340254809568187e-05']
['59906.99605752014 0.30695989242011756 5.258126071978629e-05 0.03621263063711094 1.6813032935821493e-05 2.5615196303365412e-06 1.1892788000457028e-09 0.0201181281317283 9.340573853234161e-06 0.28684176428838926 5.340445017776948e-05']
['59906.99619780035 0.30693083837954066 5.2581782049633165e-05 0.036182038630374405 1.681904077767362e-05 2.559355688518221e-06 1.1897037679248497e-09 0.020101132572430225 9.34391154315201e-06 0.2868297058071104 5.340554733771927e-05']
['59906.99633808056 0.30686101005004673 5.2575600840950775e-05 0.03618909955867193 1.681781454437479e-05 2.559855147025496e-06 1.1896170296622308e-09 0.020105055310373297 9.343230302430438e-06 0.2867559547396734 5.33993422831334e-05']
['59906.996478360765 0.30686084424060217 5.258210294514199e-05 0.03625998636426653 1.681865996772995e-05 2.5648693628078846e-06 1.1896768311315549e-09 0.020144436869036962 9.343699982072194e-06 0.28671640737156523 5.340582626912991e-05']
['59906.99661864097 0.3069017160508468 5.258194171663389e-05 0.03626004651148953 1.6815075057922714e-05 2.5648736173535974e-06 1.1894232506353947e-09 0.02014447028416085 9.341708365512617e-06 0.286757245766686 5.3405319115962335e-05']
['59906.99675892118 0.30682504770566144 5.2574321579199706e-05 0.03617367085808836 1.681255718736288e-05 2.558763789708447e-06 1.189245147726211e-09 0.02009648381004909 9.340309548534932e-06 0.28672856389561235 5.339757177976875e-05']
['59906.99689920139 0.30689825393023495 5.258665722665409e-05 0.03621393131481967 1.6814676877463566e-05 2.5616116344639693e-06 1.1893950851294765e-09 0.02011885073045537 9.341487154146425e-06 0.28677940319977957 5.340992324020597e-05']
['59906.9970394816 0.3068622933472545 5.257888004618768e-05 0.036211443127947385 1.6815008513261684e-05 2.5614356312461646e-06 1.1894185435635105e-09 0.020117468404415213 9.34167139625649e-06 0.2867448249428393 5.340229818450728e-05']
['59906.997179761805 0.3068748040532284 5.2577591868786513e-05 0.03617759458177902 1.6809821518583135e-05 2.5590413363843116e-06 1.1890516387444517e-09 0.0200986636565439 9.338789732546186e-06 0.28677614039668453 5.34005258437536e-05']
['59906.99732004201 0.30682924570989834 5.257370045337639e-05 0.03622053424772435 1.6818756187071064e-05 2.562078696424273e-06 1.18968363725767e-09 0.020122519026513526 9.343753437261702e-06 0.2867067266833848 5.339756275016388e-05']
['59906.99746032222 0.30692794254098876 5.258436715378283e-05 0.03622575098062553 0.0007488113650957818 2.562447704792279e-06 5.296756897705938e-08 0.020125417211458628 0.000416006313942101 0.28680252532953016 0.0004193165497671869']
['59906.99760060243 0.3069145149156344 5.258023398028056e-05 0.0362769902615619 1.682667842897665e-05 2.566072142499611e-06 1.190244021239734e-09 0.0201538834786455 9.348154682764806e-06 0.2867606314369889 5.340476571799513e-05']
['59906.99774088264 0.30689996164835 5.257856827390384e-05 0.03622655807767372 1.6813676586125396e-05 2.5625047952299565e-06 1.1893243289912535e-09 0.02012586559870762 9.34093143673633e-06 0.2867740960496424 5.340186178252006e-05']
['59906.997881162846 0.30687090523419025 5.2576437319851996e-05 0.03618200670927875 1.6818154528912805e-05 2.559353430562593e-06 1.1896410786488086e-09 0.020101114838488195 9.343419182729337e-06 0.28676979039570205 5.3400198906675626e-05']
['59906.998021443054 0.30696471580270257 5.258159353533897e-05 0.03625025599946696 1.681397407181871e-05 2.5641810802941342e-06 1.1893453717995158e-09 0.02013903111081498 9.34109670656595e-06 0.2868256846918876 5.340486931354685e-05']
['59906.99816172326 0.3068938784873093 5.2584062682617435e-05 0.03623721092988699 1.6812769821408023e-05 2.5632583303800763e-06 1.1892601885081464e-09 0.020131783849937218 9.340427678560013e-06 0.2867620946373721 5.340718338789127e-05']
['59906.99830200347 0.3069553234163503 5.2579623423913356e-05 0.03617574294649466 1.6814232937430675e-05 2.5589103599806183e-06 1.189363682795845e-09 0.020097634970274808 9.34124052079482e-06 0.2868576884460755 5.34029547297514e-05']
['59906.99844228368 0.3068328286865372 5.257469023767264e-05 0.03619027799773292 1.6813822147204777e-05 2.5599385045373574e-06 1.1893346253313891e-09 0.02010570999874051 9.341012304002653e-06 0.2867271186877967 5.339805768425252e-05']
['59906.99858256389 0.30690814629760377 5.2577422707029124e-05 0.03620875487960667 1.681279996876704e-05 2.5612454765743052e-06 1.1892623209975723e-09 0.020115974933114816 9.340444427092799e-06 0.286792171364489 5.340064869090291e-05']
['59906.998722844095 0.3069223555591678 5.258800053390999e-05 0.036171036423852866 1.6815345131280255e-05 2.558577441605856e-06 1.1894423544175503e-09 0.020095020235473816 9.341858406266808e-06 0.286827335323694 5.341131077437864e-05']
['59906.9988631243 0.30688681707649995 5.2579191772214475e-05 0.036251359439364014 1.681625196305829e-05 2.5642591327003655e-06 1.189506499644229e-09 0.020139644132980007 9.34236220169905e-06 0.2867471729435199 5.340272595033929e-05']
['59906.99900340451 0.30683516518306375 5.257636648499416e-05 0.03617261649753554 1.6820808880173272e-05 2.5586892089556547e-06 1.1898288355927222e-09 0.02009589805418641 9.344893822318484e-06 0.2867392671288773 5.3400387201918515e-05']
['59906.99914368472 0.3069915050636288 5.2583393148464557e-05 0.03627679089976726 1.681575321291097e-05 2.566058040537353e-06 1.1894712202880897e-09 0.02015377272209292 9.342085118283872e-06 0.2868377323415359 5.340681407239389e-05']
['59906.99928396493 0.3069485847906406 5.2580995289509346e-05 0.03625260247324054 1.6813915467465797e-05 2.5643470593607563e-06 1.1893412263895368e-09 0.020140334707355854 9.34106414859211e-06 0.2868082500832847 5.340427459542463e-05']
['59906.999424245136 0.3069223154994238 5.258260460284252e-05 0.03623806718491155 1.6819008926791875e-05 2.563318898033279e-06 1.1897015149358401e-09 0.020132259547173084 9.343893848217707e-06 0.2867900559522507 5.340635410759319e-05']
['59906.999564525344 0.30690288189849724 5.25800021290734e-05 0.03622309759490986 1.6816457686906562e-05 2.5622600161466886e-06 1.1895210516297244e-09 0.020123943108283256 9.342476492725869e-06 0.286778938790214 5.3403543804793503e-05']
['59906.99970480555 0.3069191225288205 5.258007347433658e-05 0.0361849061221329 1.6815836288190303e-05 2.559558522068283e-06 1.189477096662025e-09 0.020102725623407165 9.342131271216834e-06 0.28681639690541333 5.3403553657554296e-05']
['59906.99984508577 0.3069273653693482 5.258127993812305e-05 0.0362388432145722 1.6815453025276876e-05 2.5633737909028248e-06 1.1894499863566135e-09 0.02013269067476233 9.341918347376042e-06 0.2867946746945859 5.3404704271630433e-05']
['59906.999985365976 0.30691222586776135 5.2580371795118436e-05 0.03622769154163542 1.681869629190948e-05 2.5625849714043215e-06 1.1896794005416552e-09 0.020126495300908567 9.343720162171933e-06 0.2867857305668528 5.340412535171664e-05']
['59907.000125646184 0.30693111276739904 5.257873081341087e-05 0.03623911237622167 1.681748335955979e-05 2.5633928301948264e-06 1.1895936031287268e-09 0.020132840209012036 9.343046310866551e-06 0.286798272558387 5.3402391784601914e-05']
['59907.00026592639 0.30690669976468776 5.25787477336003e-05 0.036237238143218636 1.6818371908696948e-05 2.5632602553295204e-06 1.1896564551231083e-09 0.0201317989684548 9.343539949276081e-06 0.28677490079623297 5.34024948107979e-05']
['59907.0004062066 0.30684826681248556 5.257565479530583e-05 0.03626675037954262 1.6814760473500648e-05 2.5653478190151464e-06 1.1894009983394874e-09 0.020148194655301457 9.341533596389248e-06 0.2867000721571841 5.3399098560627726e-05']
['59907.00054648681 0.3068296492731216 5.257363958090428e-05 0.03625162453180379 1.6818841633269832e-05 2.564277884154662e-06 1.1896896813398488e-09 0.02013979140655766 9.343800907372127e-06 0.286689857866564 5.339751112345437e-05']
['59907.000686767016 0.30695035405607995 5.2582324231474364e-05 0.036266545397486395 1.6816958824170732e-05 2.565333319500705e-06 1.18955649983984e-09 0.020148080776381333 9.342754902317072e-06 0.28680227327969865 5.340587880326159e-05']
['59907.000827047224 0.30687847418809744 5.257585395015655e-05 0.036317752349315044 1.682162671992632e-05 2.5689554703914596e-06 1.189886685921324e-09 0.020176529082952803 9.345348177736843e-06 0.28670194510514463 5.3399962089418395e-05']
['59907.00096732743 0.3068751919880221 5.257839076932197e-05 0.036182748962178546 1.682724982705897e-05 2.5594059342150495e-06 1.1902844393860782e-09 0.020101527201210303 9.348472126143872e-06 0.2867736647868118 5.340300653507076e-05']
['59907.00110760764 0.30694390220913076 5.2580092183833403e-05 0.036218572542680315 1.6813347436158185e-05 2.5619399341777636e-06 1.1893010463937867e-09 0.020121429190377953 9.340748575643435e-06 0.2868224730187528 5.3403330214639266e-05']
['59907.00124788785 0.30683280171731686 5.257450443458481e-05 0.03616101058678686 1.6823019919456392e-05 2.557868258704661e-06 1.189985234628846e-09 0.0200894503259927 9.346122177475773e-06 0.2867433513913242 5.3398768865007386e-05']
['59907.00138816806 0.30696083358995907 5.2581034582663146e-05 0.036209629341072136 1.6812804942918585e-05 2.56130733206976e-06 1.1892626728468196e-09 0.020116460745040074 9.340447190510325e-06 0.286844372844919 5.34042053728162e-05']
['59907.001528448265 0.30702799949145376 5.258792073428309e-05 0.036251797331505665 1.68171130984737e-05 2.5642901072332034e-06 1.1895674125144664e-09 0.020139887406392037 9.342840610263167e-06 0.2868881120850617 5.3411404005362226e-05']
['59907.00166872847 0.3068208503806181 5.258147298298794e-05 0.03621969349477647 1.6815753849858274e-05 2.5620192253186847e-06 1.1894712653428949e-09 0.02012205194154248 9.342085472143485e-06 0.28669879843907564 5.340492357479341e-05']
['59907.00180900868 0.3069108099221891 0.0006659214469258569 0.03618688295117352 1.6812548870150743e-05 2.5596983541187104e-06 1.1892445594038002e-09 0.020103823861763064 9.340304927861522e-06 0.28680698606042604 0.0006659869478991103']
['59907.00194928889 0.3070419022163805 5.261469692078186e-05 0.0361976356716821 1.6818751734210136e-05 2.5604589535056553e-06 1.1896833222821912e-09 0.020109797595378943 9.343750963450076e-06 0.28693210462100155 5.3437926738719066e-05']
['59907.0020895691 0.306831217636636 5.257521228690527e-05 0.036209882375012284 1.6816445983086727e-05 2.5613252305596908e-06 1.1895202237538221e-09 0.02011660131945127 9.342469990603737e-06 0.28671461631718476 5.339882669627195e-05']
['59907.002229849306 0.30696448037472 5.258387800042019e-05 0.03617506533336154 1.6813255542076533e-05 2.558862428656334e-06 1.1892945462171932e-09 0.020097258518534188 9.340697523375853e-06 0.28686722185618585 5.3407048746268265e-05']
['59907.002370129514 0.30688097510002843 5.257559565368031e-05 0.036134623284911176 1.6813628783854495e-05 2.556001738914273e-06 1.1893209476722735e-09 0.02007479071383954 9.340904879919164e-06 0.2868061843861889 5.339893034804148e-05']
['59907.00251040972 0.30692459667931216 5.2580102963423216e-05 0.03621749742952651 1.6818174466899716e-05 2.561863885478737e-06 1.189642488972885e-09 0.020120831905292506 9.34343025938873e-06 0.28680376477401964 5.340380994513638e-05']
['59907.00265068993 0.3069756709310465 5.2583863761015256e-05 0.0362425755572187 1.6815842686972293e-05 2.5636378001390483e-06 1.189477549283262e-09 0.020134764198454832 9.342134826095717e-06 0.28684090673259166 5.3407286124141936e-05']
['59907.00279097014 0.30673336967233017 5.2567393951712316e-05 0.03615720008575572 1.6814571243003758e-05 2.5575987208936556e-06 1.189387613019948e-09 0.020087333380975403 9.341428468335421e-06 0.28664603629135477 5.339094672979257e-05']
['59907.00293125035 0.30682911667241997 5.2574124202053524e-05 0.036198674686812184 1.6817222870822778e-05 2.5605324487918334e-06 1.1895751773197867e-09 0.020110374826006767 9.342901594901543e-06 0.2867187418464132 5.3397830909363386e-05']
['59907.003071530555 0.3068504971700796 5.257734549177797e-05 0.036218821213374885 1.6816277601777594e-05 2.561957524031205e-06 1.1895083132126343e-09 0.020121567340763823 9.342376445431998e-06 0.2867289298293158 5.340091063465068e-05']
['59907.00321181076 0.30686386342774374 5.25767303062693e-05 0.03623765436854875 1.6816764125878603e-05 2.5632896972489547e-06 1.189542727752905e-09 0.020132030204749303 9.342646736599224e-06 0.28673183322299445 5.3400352224897026e-05']
['59907.00335209097 0.3068407774413766 5.2576293344357946e-05 0.03619977808921599 1.6816015053248263e-05 2.5606104985459604e-06 1.1894897417031923e-09 0.02011098782734222 9.342230585137923e-06 0.2867297896140344 5.3399849195834475e-05']
['59907.00349237118 0.30687772793227575 5.2576602259872107e-05 0.036254401851936006 1.6813436442659648e-05 2.5644743393669245e-06 1.1893073423158646e-09 0.02014133436218667 9.340798023699804e-06 0.28673639357008907 5.3399902742536365e-05']
['59907.00363265139 0.30687368879957505 5.257792802246625e-05 0.03622622665729091 1.6817294450736578e-05 2.5624813520334385e-06 1.1895802405629454e-09 0.02012568147627273 9.34294136152032e-06 0.2867480073233023 5.340158301418085e-05']
['59907.003772931595 0.30687632139104615 5.25766664723687e-05 0.036224623061677216 1.6819103579185782e-05 2.5623679208473763e-06 1.1897082102231139e-09 0.020124790589820675 9.34394643288099e-06 0.28675153080122545 5.340051677921524e-05']
['59907.0039132118 0.3069527912811887 5.2579803503082286e-05 0.03621677339833084 1.6814059939595258e-05 2.561812670748184e-06 1.1893514457022223e-09 0.020120429665739355 9.341144410886253e-06 0.28683236161544934 5.340311522119075e-05']
['59907.00405349201 0.3068471534207227 5.257560808163549e-05 0.036181855000976204 1.6811349378208966e-05 2.5593426993953672e-06 1.1891597127052524e-09 0.02010103055609789 9.339638543449426e-06 0.2867461228646248 5.33987210827752e-05']
['59907.00419377222 0.3067945390037644 5.2572488533653185e-05 0.036465172920972865 1.683980769984643e-05 2.5793833426993597e-06 1.1911727271766753e-09 0.02025842940054048 9.355448722136906e-06 0.28653610960322395 5.339841731187946e-05']
['59907.00433405243 0.30697845578919003 5.258476389666914e-05 0.03619313721796575 1.681410552277566e-05 2.560140752996666e-06 1.189354670052659e-09 0.020107298454425417 9.341169734875366e-06 0.2868711573347646 5.340800357703132e-05']
['59907.004474332636 0.3069132709312353 5.25800055642191e-05 0.03622276797970879 1.6815534603873832e-05 2.562236700640658e-06 1.1894557568619273e-09 0.0201237599887271 9.341963668818794e-06 0.2867895109425082 5.340345747536241e-05']
['59907.004614612844 0.30681997504745395 5.2573594924548935e-05 0.03623278022310623 1.681774242461564e-05 2.562944921986499e-06 1.1896119282328249e-09 0.020129322346170125 9.343190235897578e-06 0.2866906527012838 5.339736030062469e-05']
['59907.00475489305 0.306902625870438 5.2579987397453194e-05 0.03620429087676433 1.6811401887789732e-05 2.5609297129661564e-06 1.1891634269982919e-09 0.020113494931535737 9.33966771543874e-06 0.28678913093890224 5.340303800113946e-05']
['59907.00489517326 0.3069658612975114 5.2582398408735784e-05 0.03625254998261632 1.681399464393106e-05 2.564343346408618e-06 1.1893468269787914e-09 0.020140305545897953 9.341108135517255e-06 0.28682555575161345 5.340566377842753e-05']
['59907.00503545347 0.30691981780254673 5.257611772859967e-05 0.03620678760660617 1.6816699703459557e-05 2.561106320475443e-06 1.1895381707989327e-09 0.020114882003670096 9.342610946366419e-06 0.2868049357988766 5.3399742833713515e-05']
['59907.005175733684 0.30695343980318535 5.258216021916058e-05 0.036251497972110976 1.6813294314041657e-05 2.5642689318876806e-06 1.1892972887727054e-09 0.020139721095617208 9.340719063356476e-06 0.2868137187075681 5.340536120965783e-05']
['59907.00531601389 0.3069489155224996 5.259002957518663e-05 0.03621821562555487 1.681487552391333e-05 2.5619146874556355e-06 1.1894091364914355e-09 0.02012123090308604 9.341597513285184e-06 0.28682768461941355 5.3413262911183586e-05']
['59907.0054562941 0.30688946180552046 5.2577491220505077e-05 0.03612814841272054 1.6814343431724677e-05 2.5555437353964824e-06 1.1893714986683222e-09 0.02007119356262252 9.341301906513709e-06 0.2868182682428979 5.340086613858361e-05']
['59907.00559657431 0.3067616076338319 5.257032938821232e-05 0.03626651597863206 1.681602226270936e-05 2.565331238542444e-06 1.1894902516682457e-09 0.02014806443257337 9.342234590394088e-06 0.28661354320125854 5.339397792941725e-05']
['59907.00573685452 0.306866432099105 5.257799085453685e-05 0.03621920516399034 1.681713960651311e-05 2.561984682981584e-06 1.1895692875746901e-09 0.0201217806466613 9.342855336951726e-06 0.2867446514524437 5.340162982669132e-05']
['59907.005877134725 0.30691453706597377 5.2578550048980346e-05 0.03626313350676167 1.681523692336541e-05 2.5650919776010917e-06 1.1894347002733153e-09 0.020146185281534258 9.341798290758562e-06 0.2867683517844395 5.3401995473562136e-05']
['59907.00601741493 0.30731364836076547 5.269292209161999e-05 0.036256648786277365 1.682492020145936e-05 2.5646332774590265e-06 1.1901196520839754e-09 0.02014258265904298 9.347177889699645e-06 0.28717106570172246 5.3515547021919005e-05']
['59907.00615769514 0.30685332007174687 5.2574707972713666e-05 0.03628292747665163 1.681620991887618e-05 2.5664921145572692e-06 1.189503525626713e-09 0.020157181931473128 9.3423388438201e-06 0.2866961381402737 5.3398307215574465e-05']
['59907.00629797535 0.3069112438791072 5.25794425361282e-05 0.03620960533382621 1.6816783441745485e-05 2.561305633904489e-06 1.1895440940709913e-09 0.020116447407681225 9.34265746763638e-06 0.286794796471426 5.34030245020597e-05']
['59907.00643825556 0.3069257963499403 5.258724626669459e-05 0.03614975571601929 1.6815002976654002e-05 2.557072139452875e-06 1.1894181519286304e-09 0.020083197620010717 9.341668320363334e-06 0.2868425987299296 5.341053488705823e-05']
['59907.006578535766 0.30708040111335616 5.2608356225439116e-05 0.03623650279195044 1.681941702297852e-05 2.563208239867635e-06 1.1897303818360008e-09 0.020131390439972467 9.3441205683214e-06 0.2869490106733837 5.34317483705898e-05']
['59907.006718815974 0.3068822752764803 5.25787292144143e-05 0.036186488100468706 1.6817346474690997e-05 2.559670424144731e-06 1.1895839205049477e-09 0.020103604500260393 9.34297026371722e-06 0.28677867077621993 5.34023769054469e-05']
['59907.00685909618 0.30688561983003265 5.257751288424587e-05 0.03612978937874707 1.681690608410965e-05 2.555659809998513e-06 1.1895527692436534e-09 0.02007210521041504 9.34272560228314e-06 0.2868135146196176 5.340113653072e-05']
['59907.00699937639 0.3067550907985166 5.2569037496492935e-05 0.036213636726480716 1.6814359556764467e-05 2.561590796601604e-06 1.1893726392815624e-09 0.020118687070267063 9.34131086486915e-06 0.28663640372824956 5.339254434826835e-05']
['59907.0071396566 0.3068949840564146 5.2578375539977835e-05 0.03619697504216804 1.6817026298305325e-05 2.560412223526671e-06 1.1895612726585294e-09 0.020109430578982245 9.342792387947401e-06 0.28678555347743234 5.340199756588912e-05']
['59907.007279936806 0.3068202382314359 5.258080031519752e-05 0.0361197129795936 1.6815562054890623e-05 2.55494705056125e-06 1.1894576986241563e-09 0.020066507210885334 9.341978919383679e-06 0.2867537310205506 5.340424263967128e-05']
['59907.007420217014 0.3069602588966473 5.258416297089742e-05 0.036211536479044744 1.6814968910695195e-05 2.561442234485537e-06 1.1894157422549703e-09 0.020117520266135967 9.341649394830664e-06 0.28684273863051135 5.340749581066163e-05']
['59907.00756049722 0.3069043358663013 5.257914002393725e-05 0.03624370296458085 1.681378021938858e-05 2.5637175478966326e-06 1.1893316595450778e-09 0.020135390535878248 9.340989010771434e-06 0.286768945330423 5.3402434788651285e-05']
['59907.00770077743 0.30688100335611823 5.257729334142843e-05 0.03627435074533351 1.6813486069073754e-05 2.5658854349195578e-06 1.1893108526665815e-09 0.020152417080740836 9.340825593929864e-06 0.2867285862753774 5.3400587991957814e-05']
['59907.00784105764 0.306864944604481 5.2577326705445075e-05 0.036211139249876685 1.6815998138370568e-05 2.5614141362696984e-06 1.1894885452203492e-09 0.020117299583264824 9.34222118798365e-06 0.2867476450212162 5.3400864976293394e-05']
['59907.00798133785 0.30683325884587764 5.257384416942909e-05 0.036145899415787365 1.6814100421502462e-05 2.556799362011116e-06 1.1893543092113945e-09 0.02008105523099298 9.341166900834701e-06 0.2867522036148847 5.339725170662497e-05']
['59907.008121618055 0.30682983127912855 5.2574336222842396e-05 0.03622647094666115 1.6815214967359696e-05 2.56249863197158e-06 1.1894331472036085e-09 0.02012581719258953 9.341786092977608e-06 0.286704014086539 5.339784449469311e-05']
['59907.00826189826 0.30686124554385863 5.257628824522473e-05 0.03622146629611339 1.6815273391637207e-05 2.562144625361303e-06 1.1894372798758585e-09 0.020123036831174106 9.34181855090956e-06 0.2867382087126845 5.33997720920518e-05']
['59907.00840217847 0.3068316386918512 5.2578600698460846e-05 0.0362319598686707 1.68140877334789e-05 2.562886893780498e-06 1.18935341171732e-09 0.02012886659370594 9.341159851932722e-06 0.28670277209814526 5.340193366150281e-05']
['59907.00854245868 0.30691980749081416 5.258595850966033e-05 0.03616576926974523 1.6814405847480197e-05 2.558204866667075e-06 1.1893759136798857e-09 0.020092094038747347 9.341336581933442e-06 0.2868277134520668 5.340920895797545e-05']
['59907.00868273889 0.3069150852504365 5.258749208322071e-05 0.036214128395050546 1.6820666546370922e-05 2.5616255750386047e-06 1.1898187675357386e-09 0.020118960219472525 9.344814747983846e-06 0.28679612503096397 5.3411327321804475e-05']
['59907.008823019096 0.3068311788085081 5.2574926958508183e-05 0.03621117706096444 1.6816837933354935e-05 2.5614168108570406e-06 1.1895479485638805e-09 0.020117320589424687 9.34268774075274e-06 0.2867138582190834 5.339858386618209e-05']
['59907.008963299304 0.3068505252601831 5.2574159112874116e-05 0.036207867415390824 1.6816794128019843e-05 2.561182701322408e-06 1.1895448499702745e-09 0.020115481897439346 9.342663404455468e-06 0.28673504336274375 5.339782360653621e-05']
['59907.00910357951 0.30686461695053424 5.257683295573527e-05 0.03616873895191368 1.68133986646127e-05 2.558414928709973e-06 1.1893046700656816e-09 0.020093743862174267 9.340777035895946e-06 0.28677087308835997 5.340012621042773e-05']
['59907.00924385972 0.30681304299582635 5.258321424833754e-05 0.036226146856906116 1.6819120385554948e-05 2.562475707310905e-06 1.1897093990305487e-09 0.020125637142725618 9.343955769752749e-06 0.2866874058531007 5.3406965183519496e-05']
['59907.00938413993 0.3068295574898925 5.257490747719052e-05 0.036183248176550165 1.681724308970794e-05 2.559441246408341e-06 1.18957660751335e-09 0.020101804542527867 9.342912827615523e-06 0.28672775294736463 5.3398604067330884e-05']
['59907.00952442014 0.3069116311621249 5.259290766448015e-05 0.03621097655064097 1.6813720482707342e-05 2.5614026276529866e-06 1.1893274340392542e-09 0.020117209194800537 9.340955823726301e-06 0.28679442196732435 5.341598442699845e-05']
['59907.009664700345 0.30686174434889146 5.257419145459593e-05 0.03620624055515276 1.681570921774224e-05 2.5610676245008046e-06 1.1894681082665004e-09 0.02011457808619598 9.342060676523465e-06 0.2867471662626955 5.3397749997432984e-05']
['59907.00980498055 0.307013413028221 5.258733749691031e-05 0.03618155792841164 1.682236435475461e-05 2.5593216858099863e-06 1.1899388629120439e-09 0.020100865515784244 9.345757974863672e-06 0.2869125475124368 5.3411340154864834e-05']
['59907.00994526076 0.30683561937481785 5.2573532591410155e-05 0.03615287218047621 1.6813329252800012e-05 2.5572925842187813e-06 1.1892997601843045e-09 0.020084928989153452 9.340738473777785e-06 0.2867506903856644 5.339686998669096e-05']
['59907.01008554097 0.3069527487560069 5.258182215360726e-05 0.03615715102792469 1.681075629842693e-05 2.557595250761964e-06 1.189117760892382e-09 0.020087306126624828 9.339309054681628e-06 0.2868654426293821 5.3404781757932896e-05']
['59907.01022582118 0.30701364925457997 5.258496731524067e-05 0.036227463709260624 1.6816139570132635e-05 2.562568855560479e-06 1.189498549471035e-09 0.020126368727367012 9.342299761184797e-06 0.28688728052721296 5.3408401514862456e-05']
['59907.010366101385 0.3068965689118772 5.257950906504439e-05 0.0362744734500329 1.6812539012581755e-05 2.5658941145015353e-06 1.189243862123431e-09 0.020152485250018278 9.340299451434309e-06 0.28674408366185894 5.340267752990995e-05']
['59907.01050638159 0.3068717814426299 5.2583681612732715e-05 0.0362692848022389 1.6815762066119126e-05 2.5655270927484784e-06 1.189471846524463e-09 0.0201496026679105 9.342090036732847e-06 0.2867221787747194 5.3407098949518574e-05']
['59907.01064666181 0.3068824046442616 5.2577074485134343e-05 0.0362142464313739 1.6813952480408503e-05 2.5616339244005276e-06 1.1893438445196655e-09 0.02011902579520772 9.341084711338056e-06 0.28676337884905384 5.3400417835441685e-05']
['59907.01078694202 0.3068527047820843 5.2582339076999747e-05 0.036175281646227714 1.6816325498846805e-05 2.5588777296616257e-06 1.189511701237223e-09 0.02009737869234873 9.342403054914891e-06 0.2867553260897356 5.340583186927302e-05']
['59907.010927222225 0.3068222576132772 5.2574957540939024e-05 0.03624115836840951 1.6815793490127456e-05 2.5635375545371474e-06 1.1894740693183552e-09 0.020133976871338614 9.342107494515252e-06 0.2866882807419386 5.339851245934309e-05']
['59907.01106750243 0.30683845523020314 5.257418709566722e-05 0.03614731979411011 1.6816218666530656e-05 2.5568998332249492e-06 1.1895041443966909e-09 0.02008184433006117 9.342343703628141e-06 0.286756610900142 5.339779522271441e-05']
['59907.01120778264 0.3068441763672921 5.2576700380580164e-05 0.03617693797963728 1.6814060903712678e-05 2.5589948912836436e-06 1.1893515138995794e-09 0.020098298877576266 9.341144946507043e-06 0.28674587748971586 5.340006003574296e-05']
['59907.01134806285 0.30686789924632685 5.257601101318438e-05 0.03621820679719501 1.6816494592429383e-05 2.561914062976919e-06 1.1895236621614507e-09 0.02012122599844167 9.342496995794101e-06 0.28674667324788516 5.33996178279855e-05']
['59907.01148834306 0.30691430531431657 5.257946477119159e-05 0.036244601406186364 1.681547362641759e-05 2.563781099640009e-06 1.1894514435892259e-09 0.020135889670103532 9.341929792454215e-06 0.286778415644213 5.340291909504686e-05']
['59907.011628623266 0.306987133700784 5.259086521540754e-05 0.03620280246605412 1.681533447583414e-05 2.5608244294453205e-06 1.189441600698919e-09 0.020112668036696733 9.34185248657452e-06 0.28687446566408725 5.3414130265184335e-05']
['59907.011768903474 0.3068978028830449 5.2576934313037974e-05 0.03623177291845336 1.6815042557557065e-05 2.5628736697577414e-06 1.1894209517047968e-09 0.020128762732474086 9.341690309753925e-06 0.2867690401505708 5.340038576265962e-05']
['59907.01190918368 0.30695432391365507 5.2586506605928575e-05 0.036205016575417345 1.681230852486387e-05 2.5609810456451887e-06 1.1892275584524873e-09 0.020113898097454078 9.340171402702152e-06 0.286840425816201 5.340954482905864e-05']
['59907.01204946389 0.30688813613403065 5.2579937089397574e-05 0.03616461781889185 1.6818205495096373e-05 2.55812341818039e-06 1.1896446837688286e-09 0.020091454343828807 9.343447497275762e-06 0.28679668179020185 5.34036496455004e-05']
['59907.0121897441 0.3069156529545679 5.2580049026503595e-05 0.03628074605114095 1.6815235818315363e-05 2.5663378102670416e-06 1.189434622107014e-09 0.020155970028411636 9.341797676841869e-06 0.2867596829261563 5.3403471230478734e-05']
['59907.01233002431 0.30685897296471176 5.2585968218270064e-05 0.03611296673086355 1.6819072926468276e-05 2.554469851080043e-06 1.1897060419868872e-09 0.020062759294924192 9.343929403593488e-06 0.2867962136697876 5.3409672065574866e-05']
['59907.012470304515 0.30688057721219064 5.257727898281072e-05 0.036241293252302215 1.681686401490303e-05 2.5635470956208217e-06 1.1895497934560152e-09 0.02013405180683456 9.342702230501683e-06 0.28674652540535606 5.340090214784888e-05']
['59907.01261058472 0.30694465525751713 5.258090043111854e-05 0.036258459901013146 1.6811599553411972e-05 2.5647613876202295e-06 1.1891774089808958e-09 0.020143588833896192 9.339777529673318e-06 0.2868010664236209 5.3403956168536726e-05']
['59907.01275086493 0.3069460393944631 5.258150860644385e-05 0.03621527944927177 1.681268709348352e-05 2.5617069954693046e-06 1.189254336704539e-09 0.020119599694039873 9.340381718601955e-06 0.2868264397004232 5.340466063911203e-05']
['59907.01289114514 0.30691037328267756 5.257927180430902e-05 0.03627296414643996 1.681656184852667e-05 2.565787353111561e-06 1.1895284195571557e-09 0.020151646748022202 9.342534360292595e-06 0.28675872653465534 5.3402834866181526e-05']
['59907.01303142535 0.3068290783402253 5.257329866679594e-05 0.03623370960043381 1.6818617368749632e-05 2.56301066198458e-06 1.1896738178700934e-09 0.020129838666907672 9.343676315972018e-06 0.2866992396733177 5.33971536676421e-05']
['59907.013171705556 0.3068952912328936 5.257817743416728e-05 0.03635336225629012 1.68620786001157e-05 2.57147435604396e-06 1.192748071116658e-09 0.020196312364605624 9.367821444508723e-06 0.286698978868288 5.340618710332141e-05']
['59907.013311985764 0.3068623278099426 5.2576917062743384e-05 0.03622116387894034 1.6815340745049687e-05 2.5621232337222064e-06 1.1894420441552053e-09 0.02012286882163352 9.341855969472049e-06 0.2867394589883091 5.340039775860249e-05']
['59907.01345226597 0.3068787582323849 5.257686923332907e-05 0.036209193040934465 1.6821452288817385e-05 2.5612764701481676e-06 1.1898743474443394e-09 0.020116218356074703 9.345251271565213e-06 0.28676253987631023 5.3400944745456295e-05']
['59907.01359254618 0.3068438961443763 5.257487942690234e-05 0.036289241516729964 1.6826813551667627e-05 2.5669387415303123e-06 1.1902535792149309e-09 0.020160689731516645 9.348229750926459e-06 0.28668320641285966 5.339950698489103e-05']
['59907.01373282639 0.30690060180106415 5.258642257242793e-05 0.03635614899959117 1.6867288891706872e-05 2.571671477809067e-06 1.1931166238551846e-09 0.020197860555328427 9.370716050948261e-06 0.28670274124573575 5.3414812161735224e-05']
['59907.013873106596 0.30692976556690355 5.258059638892743e-05 0.0362094672623725 1.6815495673432662e-05 2.5612958673469967e-06 1.1894530030965279e-09 0.020116370701318057 9.341942040795923e-06 0.2868133948655855 5.3404035406595244e-05']
['59907.014013386804 0.3068542774839307 5.257617694538233e-05 0.03612530401161835 1.6814827884484517e-05 2.5553425351762385e-06 1.189405766691177e-09 0.020069613339787972 9.341571046935843e-06 0.2867846641441427 5.339961921041294e-05']
['59907.01415366701 0.3069139767585307 5.257989250013959e-05 0.03621128706141802 1.681522741909756e-05 2.5614245917974537e-06 1.189434027983889e-09 0.02011738170078779 9.341793010609755e-06 0.2867965950577429 5.340331630132451e-05']
['59907.01429394722 0.306949939987595 5.2581830721563895e-05 0.036200284456367866 1.6817030646348826e-05 2.560646316694956e-06 1.1895615802196921e-09 0.020111269142426592 9.342794803527126e-06 0.2868386708451684 5.340539988401935e-05']
['59907.01443422743 0.306883657325655 5.2576278296587644e-05 0.03625654967476625 1.6815601828959082e-05 2.564626266753733e-06 1.1894605120639794e-09 0.020142527597092362 9.342001016088379e-06 0.28674112972856264 5.339979421781351e-05']
['59907.01457450764 0.3068476286616627 5.25770861168802e-05 0.03619384935097525 1.6813488372004705e-05 2.5601911261027106e-06 1.1893110155656234e-09 0.02010769408387514 9.340826873335946e-06 0.28673993457778757 5.340038418606623e-05']
['59907.014714787845 0.3069170539951346 5.25809061058754e-05 0.03619508368493279 1.681779725523548e-05 2.5602784373697188e-06 1.189615806705794e-09 0.02010837982496266 9.343220697353044e-06 0.2868086741701719 5.340456403636613e-05']
['59907.01485506805 0.3068801808857895 5.257658264823851e-05 0.03617554573325911 1.6813827414649945e-05 2.558896409997827e-06 1.1893349979269162e-09 0.020097525407366174 9.34101523036108e-06 0.2867826554784233 5.339992142785317e-05']
['59907.01499534826 0.30691389809465264 5.258132776692165e-05 0.036199221487174804 1.6814511568990296e-05 2.5605711270054313e-06 1.1893833919469628e-09 0.020110678603986 9.34139531610572e-06 0.2868032194906666 5.340465987331263e-05']
['59907.01513562847 0.3070713377167572 5.260759638172968e-05 0.036170481127173186 1.681636218518115e-05 2.5585381624007655e-06 1.1895142962645364e-09 0.020094711737318437 9.342423436211751e-06 0.2869766259794388 5.343070346462281e-05']
['59907.01527590868 0.30693131982508215 5.2580025091789975e-05 0.0361749659485244 1.6809787727442995e-05 2.558855398617179e-06 1.1890492485102358e-09 0.02009720330473578 9.338770959690553e-06 0.28683411652034635 5.3402918288149976e-05']
['59907.015416188886 0.30696733899090034 5.2584540874784065e-05 0.03623487525988338 1.6817301167402193e-05 2.563093115523851e-06 1.1895807156698493e-09 0.020130486255490763 9.342945093001219e-06 0.2868368527354096 5.340809453652762e-05']
['59907.015556469094 0.30691074557528575 5.257911816753701e-05 0.03619094590323879 1.681217512168418e-05 2.559985749187481e-06 1.189218122107833e-09 0.020106081057354883 9.340097289824545e-06 0.28680466451793085 5.3402257299286594e-05']
['59907.0156967493 0.3069338578233897 5.2578930407264955e-05 0.03624118791762411 1.6817083719033183e-05 2.563539644716511e-06 1.1895653343441625e-09 0.020133993287568947 9.342824288351767e-06 0.2867998645358208 5.340254945651029e-05']
['59907.01583702951 0.3068987930384389 5.25837548603728e-05 0.03613187549530982 1.6814963670302328e-05 2.55580737255977e-06 1.189415371573002e-09 0.02007326416406101 9.341646483501293e-06 0.2868255288743779 5.340709348240636e-05']
['59907.015977309726 0.3068777728873171 5.2582506717761405e-05 0.03623065158149068 1.681617373082266e-05 2.5627943513930828e-06 1.189500965845558e-09 0.02012813976749482 9.342318739345921e-06 0.28674963311982227 5.3405982175697856e-05']
['59907.016117589934 0.3068768876380998 5.2579935068284364e-05 0.03622040995416141 1.6822377558096843e-05 2.5620699044531907e-06 1.189939796857458e-09 0.020122449974534117 9.345765310053802e-06 0.2867544376635657 5.3404053226469665e-05']
['59907.01625787014 0.30688350245442264 5.2576625748105925e-05 0.03620871515963085 1.681221537579695e-05 2.561242666960754e-06 1.189220969503845e-09 0.020115952866461586 9.340119653220527e-06 0.2867675495879611 5.339980721119573e-05']
['59907.01639815035 0.3069102216415509 5.257938265403132e-05 0.03618146928132547 1.6824735073482335e-05 2.5593154153113396e-06 1.190106556958354e-09 0.020100816267403038 9.34707504082352e-06 0.2868094053741479 5.340373855918549e-05']
['59907.01653843056 0.30688356248466103 5.2579466880067606e-05 0.03616445243408259 1.6812775343090317e-05 2.558111719598209e-06 1.1892605790872713e-09 0.020091362463379215 9.340430746161288e-06 0.2867922000212818 5.3402658959231244e-05']
['59907.01667871077 0.30679036449694486 5.257238258682063e-05 0.036223768583316454 1.681441080473608e-05 2.5623074788674293e-06 1.1893762643340093e-09 0.020124315879620252 9.341339335964488e-06 0.2866660486173246 5.339584282923791e-05']
['59907.016818990975 0.30687784523613576 5.259002054032117e-05 0.03619650010595517 1.6813025532976154e-05 2.5603786286618123e-06 1.1892782764015125e-09 0.020109166725530647 9.340569740542309e-06 0.2867686785106051 5.3413074275025e-05']
['59907.01695927118 0.30694913059295587 5.257876657466109e-05 0.036209575785636286 1.6814441425325728e-05 2.5613035437976062e-06 1.1893784302976549e-09 0.020116430992020158 9.34135634740318e-06 0.2868326996009357 5.340213135186524e-05']
['59907.01709955139 0.30691582971027587 5.259548430514993e-05 0.036205849810013874 1.6812556564790458e-05 2.5610399849362076e-06 1.1892451036882208e-09 0.020114361005563262 9.340309202661366e-06 0.2868014687047126 5.341840829989783e-05']
['59907.0172398316 0.30694400949922335 5.258373590264232e-05 0.036191429917390966 1.68133344485503e-05 2.56001998618519e-06 1.1893001277084561e-09 0.020106349954106092 9.340741360305722e-06 0.28683765954511725 5.34069165056265e-05']
['59907.01738011181 0.3068759377759275 5.257617752425049e-05 0.03620505870966066 1.6813433493031547e-05 2.560984026033232e-06 1.1893071336723568e-09 0.020113921505367033 9.340796385017526e-06 0.2867620162705604 5.339948426874419e-05']
['59907.017520392015 0.3069456207445484 5.2583026970326344e-05 0.03622205117509625 1.6814155349578418e-05 2.562185997086295e-06 1.1893581945779735e-09 0.02012336176394236 9.341197416432454e-06 0.28682225898060604 5.340629826654186e-05']
['59907.01766067222 0.30690811332857176 5.2579675940355005e-05 0.03620724775513054 1.6823040810670793e-05 2.561138869325314e-06 1.1899867123799746e-09 0.020115137641739188 9.346133783705996e-06 0.2867929756868326 5.3403862582173566e-05']
['59907.01780095243 0.3069222962214206 5.257966277538206e-05 0.036212968827359596 1.6812378464037485e-05 2.5615435524031093e-06 1.189232505637019e-09 0.020118316015199773 9.340210257798602e-06 0.28680398020622083 5.3402813270770526e-05']
['59907.01794123264 0.306863942188341 5.257479033530942e-05 0.03622963290115981 1.6812408369729306e-05 2.5627222944997103e-06 1.1892346210319878e-09 0.02012757383397767 9.340226872071836e-06 0.28673636835436334 5.3398018847364715e-05']
['59907.01808151285 0.30688331851988077 5.25776871671846e-05 0.036231410972243736 1.681511702923342e-05 2.5628480673006775e-06 1.1894262194983133e-09 0.02012856165124652 9.341731682907455e-06 0.2867547568686342 5.340113424531135e-05']
['59907.018221793056 0.30687490785271204 5.258439066113996e-05 0.03621843064850821 1.682104481565585e-05 2.5619298972182587e-06 1.1898455246141901e-09 0.02012135036028234 9.345024897586582e-06 0.2867535574924297 5.340831051006853e-05']
['59907.018362073264 0.3068927004003734 5.2577454169336655e-05 0.03623797239789163 1.681668066006824e-05 2.563312193223163e-06 1.18953682375455e-09 0.020132206887717573 9.342600366704577e-06 0.28676049351265587 5.3401056811084224e-05']
['59907.01850235347 0.3068879403647505 5.258901210672331e-05 0.036209247457609305 1.6812827117743167e-05 2.5612803193405176e-06 1.1892642413947948e-09 0.020116248587560726 9.340459509857314e-06 0.28677169177718975 5.3412062104138756e-05']
['59907.01864263368 0.3069217648488174 5.2580596791256646e-05 0.03621112442604811 1.6815015035961924e-05 2.5614130876983235e-06 1.1894190049501709e-09 0.020117291347804503 9.341675019978846e-06 0.2868044735010129 5.340398909354624e-05']
['59907.01878291389 0.30689547441067344 5.2576630061635656e-05 0.036163464881750484 1.68150548324374e-05 2.558041864560335e-06 1.1894218199749663e-09 0.020090813823194713 9.341697129131888e-06 0.2868046605874787 5.3400087395907145e-05']
['59907.0189231941 0.3067894334116631 5.257532487188872e-05 0.036135369503984105 1.6818459846747185e-05 2.556054523116089e-06 1.1896626754677223e-09 0.020075205279991168 9.343588803748436e-06 0.2867142281316719 5.339913329931651e-05']
['59907.019063474305 0.30681489203597057 5.257491636617817e-05 0.03619203456238307 1.681165275357707e-05 2.5600627560693274e-06 1.1891811721227842e-09 0.020106685867990595 9.339807085320594e-06 0.28670820616798 5.339806950912771e-05']
['59907.01920375451 0.3069675921394079 5.258219167670382e-05 0.036212270298643594 1.68157531999818e-05 2.561494141603979e-06 1.1894712193735377e-09 0.020117927943690887 9.342085111100999e-06 0.286849664195717 5.340563112396178e-05']
['59907.01934403472 0.30688584473893904 5.25775560596899e-05 0.03625126416434425 1.681709997425781e-05 2.5642523933713216e-06 1.189566484166096e-09 0.02013959120241347 9.342833319032117e-06 0.28674625353652555 5.3401197885787644e-05']
['59907.01948431493 0.3068911070242213 5.2585992562963215e-05 0.03620370423922892 1.6812546878470844e-05 2.560888216849017e-06 1.1892444185212666e-09 0.020113169021793845 9.340303821372691e-06 0.28677793800242746 5.340906186507653e-05']
['59907.01962459514 0.3068806151761692 5.257686633937969e-05 0.03621183512977812 1.682309462117519e-05 2.5614633597035254e-06 1.189990518694537e-09 0.020117686183210064 9.346163678430662e-06 0.28676292899295913 5.340110157640022e-05']
['59907.019764875346 0.3069040764146196 5.257891137661212e-05 0.036221876256916516 0.0006432566643854942 2.562173624156099e-06 4.550110125055811e-08 0.02012326458717584 0.0003573648135474968 0.28678081182744375 0.00036121205943792455']
['59907.019905155554 0.3069342584351216 5.258045526483589e-05 0.03641777668472165 1.6870291445585265e-05 2.5760307447956567e-06 1.1933290110959163e-09 0.020232098158178696 9.372384136436259e-06 0.28670216027694295 5.340923010359099e-05']
['59907.02004543576 0.30679849098060386 5.257362997174191e-05 0.03614679241001245 1.681337811812638e-05 2.556862528431149e-06 1.1893032166990765e-09 0.020081551338895803 9.340765621181322e-06 0.2867169396417081 5.3396970614403604e-05']
['59907.02018571597 0.3069015739579611 5.258050318162828e-05 0.036244014674394406 1.6815214493884775e-05 2.5637395968555827e-06 1.189433113712109e-09 0.020135563707996892 9.341785829935987e-06 0.2867660102499642 5.3403916310750235e-05']
['59907.02032599618 0.30683702715845285 5.257666651104478e-05 0.036212148239768524 1.6814449968772287e-05 2.5614855077047276e-06 1.1893790346228776e-09 0.020117860133204733 9.341361093762382e-06 0.28671916702524813 5.340006449900295e-05']
['59907.020466276386 0.3069717474470063 5.259209964784393e-05 0.03616129418283172 1.6813366057379378e-05 2.5578883190212747e-06 1.1893023635757421e-09 0.020089607879350956 9.340758920766322e-06 0.28688213956765535 5.341515442816412e-05']
['59907.020606556594 0.3068472244401976 5.2577422726687376e-05 0.03617486187975745 1.6815997620125768e-05 2.558848037257765e-06 1.1894885085620284e-09 0.020097145488754138 9.342220900069871e-06 0.28675007895144344 5.340095946634746e-05']
['59907.0207468368 0.30696272516864725 5.2582568461923915e-05 0.036233232462497475 1.6814289419862393e-05 2.5629769113796445e-06 1.189367678110603e-09 0.020129573590276374 9.341271899923552e-06 0.28683315157837086 5.3405859854150996e-05']
['59907.02088711701 0.30690855229513025 5.258504846169129e-05 0.036233390374329696 1.6818029781058703e-05 2.5629880813568314e-06 1.1896322545431994e-09 0.02012966131907205 9.343349878365946e-06 0.2867788909760582 5.3408665108463274e-05']
['59907.02102739722 0.30686272918996427 5.257472520086665e-05 0.03626588695946455 1.6815906686442926e-05 2.565286744538084e-06 1.1894820763197538e-09 0.020147714977480302 9.34217038135718e-06 0.28671501421248397 5.339829470480261e-05']
['59907.02116767743 0.3069610198899311 5.258389921850079e-05 0.036258626712662785 1.6815466629771052e-05 2.5647731871307207e-06 1.189450948677723e-09 0.02014368150703488 9.341925905428362e-06 0.2868173383828962 5.340728449045094e-05']
['59907.02130795764 0.30686549517150774 5.2575958631639494e-05 0.03619967690524094 1.6814947188900923e-05 2.560603341243831e-06 1.1894142057523342e-09 0.020110931614022744 9.341637327167179e-06 0.286754563557485 5.3399415858117685e-05']
['59907.02144823785 0.30696800286967607 5.258102353811968e-05 0.03624409262375421 1.682742752484647e-05 2.563745110644882e-06 1.1902970089333037e-09 0.02013560701319678 9.348570847136928e-06 0.2868323958564793 5.340561593316038e-05']
['59907.02158851806 0.3068702770165999 5.2578352454479926e-05 0.03616534953146456 1.6817294163239972e-05 2.5581751762572203e-06 1.1895802202267206e-09 0.020091860850813645 9.342941201799984e-06 0.28677841616578625 5.3402000871950544e-05']
['59907.02172879827 0.3069119123569445 5.2576704063096384e-05 0.036191336594553064 1.6815860935151245e-05 2.560013384944765e-06 1.1894788400778765e-09 0.020106298108085036 9.342144963972914e-06 0.2868056142488594 5.340023860121133e-05']
['59907.021869078475 0.3071305325876593 5.2618569871085186e-05 0.036165968857241285 1.681522774319492e-05 2.5582189845944424e-06 1.1894340509090876e-09 0.0200922049206896 9.341793190663844e-06 0.28703832766696974 5.3441397767043924e-05']
['59907.02200935868 0.3069014961061537 5.257816934639841e-05 0.03625294165769014 1.6816178981613272e-05 2.564371051752656e-06 1.1895013372630164e-09 0.02014052314316119 9.342321656451818e-06 0.2867609729629925 5.340171219868477e-05']
['59907.02214963889 0.30696242064698165 5.258154475677851e-05 0.036226585403270915 1.6814408788561773e-05 2.562506728120564e-06 1.1893761217188505e-09 0.020125880779594953 9.341338215867651e-06 0.2868365398673867 5.340486353013488e-05']
['59907.0222899191 0.3068953949291541 5.257697318088986e-05 0.03620488013727989 1.6822304659115267e-05 2.560971394621188e-06 1.1899346403093404e-09 0.020113822298488827 9.345724810619592e-06 0.2867815726306652 5.34011299608898e-05']
['59907.02243019931 0.3067878306232223 5.257354237553529e-05 0.03662535453186988 1.6950463136607538e-05 2.5907138738845517e-06 1.1989999981724632e-09 0.020347419184372155 9.416923964781964e-06 0.28644041143885013 5.3410259453317485e-05']
['59907.022570479516 0.3069140207631186 5.258386194229979e-05 0.03621194025116191 1.681410668226027e-05 2.56147079552035e-06 1.189354752069418e-09 0.020117744583978837 9.341170379033484e-06 0.2867962761791397 5.340711563843321e-05']
['59907.022710759724 0.30689565439825617 5.258245399563133e-05 0.03618829607081527 1.6815109835660238e-05 2.559798311885895e-06 1.1894257106570999e-09 0.020104608928230707 9.34172768647791e-06 0.2867910454700255 5.340582687657774e-05']
['59907.02285103993 0.3068334974153988 5.2573949310760636e-05 0.036201417649545764 1.681547827766534e-05 2.560726473715285e-06 1.1894517725977019e-09 0.020111898694192092 9.341932376480743e-06 0.28672159872120667 5.339748914187977e-05']
['59907.02299132014 0.30691723752545363 5.2587606594532704e-05 0.036188063141062043 1.6812740269835154e-05 2.5597818354762865e-06 1.1892580981619694e-09 0.020104479522812246 9.340411261019531e-06 0.2868127580026414 5.341066981293457e-05']
['59907.02313160035 0.3068652634417002 5.2575924204087084e-05 0.036218471639629976 1.6827916772162833e-05 2.561932796746993e-06 1.1903316161016563e-09 0.020121373133127764 9.348842651201574e-06 0.2867438903085724 5.3400642925257334e-05']
['59907.02327188056 0.30695117444747244 5.2581717945566e-05 0.03626054040410654 1.6817370874245274e-05 2.5649085531097545e-06 1.1895856464203576e-09 0.020144744668948077 9.342983819025151e-06 0.2868064297785244 5.340532191410911e-05']
['59907.023412160765 0.30691936834915645 5.258202132090111e-05 0.03613892911639034 1.6814392691133556e-05 2.556306314187175e-06 1.1893749830587297e-09 0.020077182842439076 9.341329272851975e-06 0.28684218550671736 5.340533118309014e-05']
['59907.02355244097 0.30694735301157683 5.2581210486044796e-05 0.0362112089916167 1.6812657187053655e-05 2.56141906948866e-06 1.1892522212573643e-09 0.020117338328675946 9.340365103918698e-06 0.28683001468290087 5.340436420792077e-05']
['59907.02369272118 0.3068931250201945 5.257877990450647e-05 0.03615509204763419 1.6818689124849284e-05 2.557449607699314e-06 1.189678893575852e-09 0.02008616224868566 9.343716180471825e-06 0.28680696277150886 5.340255731992378e-05']
['59907.02383300139 0.30695146489561487 5.258323815850963e-05 0.036197283493440965 1.6815481665794713e-05 2.560434041991022e-06 1.1894520122588298e-09 0.020109601940800536 9.341934258774841e-06 0.28684186295481434 5.3406635083384675e-05']
['59907.0239732816 0.3069136318331236 5.2578366667055785e-05 0.036240520472712215 1.6817952765806366e-05 2.5634924326467467e-06 1.1896268068284872e-09 0.020133622484840116 9.343307092114648e-06 0.28678000934828346 5.340207888081627e-05']
['59907.024113561805 0.30697307022124076 5.2583361313632253e-05 0.03618026998796372 1.6824634890519176e-05 2.559230582659455e-06 1.1900994704633315e-09 0.020100149993313176 9.347019383621763e-06 0.2868729202279276 5.3407646066811424e-05']
['59907.02425384201 0.3067893686330536 5.2569888723612475e-05 0.03628955585612642 1.6817785270262785e-05 2.5669609764942035e-06 1.1896149589423952e-09 0.02016086436451468 9.34321403903488e-06 0.2866285042685389 5.339371544472455e-05']
['59907.02439412222 0.30685653775995847 5.2584327320165855e-05 0.036209038026785795 1.681417406756057e-05 2.5612655051401633e-06 1.1893595186043664e-09 0.020116132237103217 9.341207815311427e-06 0.28674040552285524 5.340758039045746e-05']
['59907.02453440243 0.3069056631578667 5.258135242404554e-05 0.036157965864789164 1.681542328992703e-05 2.5576528886796506e-06 1.1894478830108745e-09 0.02008775881377176 9.341901827737237e-06 0.28681790434409493 5.3404772750202395e-05']
['59907.02467468264 0.30693315127219234 5.2581100136346125e-05 0.036265614557752096 1.6817180649593414e-05 2.5652674760585092e-06 1.1895721907787392e-09 0.020147563643195608 9.342878138663007e-06 0.28678558762899675 5.340469514436315e-05']
['59907.024814962846 0.30694346418840374 5.2583911980500417e-05 0.036541123477271925 1.7012987090070213e-05 2.5847557455729484e-06 1.2034226631747887e-09 0.020300624154039958 9.451659494483451e-06 0.2866428400343638 5.342660073757898e-05']
['59907.024955243054 0.30682174539933843 5.257420169612936e-05 0.036160842072131265 1.681198783526617e-05 2.5578563387311405e-06 1.189204874303744e-09 0.020089356706739593 9.339993241814538e-06 0.2867323886925988 5.339739841736142e-05']
['59907.02509552326 0.30683222412454414 5.257436925672829e-05 0.036266487753419646 1.6815435760138413e-05 2.565329242017077e-06 1.1894487650978892e-09 0.020148048751899805 9.34190875563245e-06 0.28668417537264435 5.339789847869838e-05']
['59907.02523580347 0.30692697071937125 5.257846559436795e-05 0.036226565758142246 1.6817357102230424e-05 2.56250533851197e-06 1.1895846722495843e-09 0.02012586986563458 9.34297616790579e-06 0.28680110085373667 5.340211838431309e-05']
['59907.02537608368 0.306950720387725 5.258433211459051e-05 0.03626819399744961 1.6813797493618845e-05 2.565449934093295e-06 1.1893328814469154e-09 0.020148996665249785 9.340998607566024e-06 0.2868017237224752 5.340754852007444e-05']
['59907.02551636389 0.30683154754722297 5.257620219402334e-05 0.03625894957942736 1.681332767529259e-05 2.564796025282517e-06 1.1892996485984805e-09 0.020143860877459643 9.340737597384772e-06 0.28668768666976335 5.339949827489039e-05']
['59907.025656644095 0.30690148138159673 5.258051093202615e-05 0.03624266151219693 1.6815959429353212e-05 2.5636438802100123e-06 1.1894858071174806e-09 0.020134811951220518 9.342199682974008e-06 0.2867666694303762 5.3403996337254396e-05']
['59907.0257969243 0.30691131842169084 5.257955238148274e-05 0.03621226939942722 1.681816614044045e-05 2.561494077997432e-06 1.1896418999963737e-09 0.020117927444126233 9.343425633578027e-06 0.2867933909775646 5.340326704619569e-05']
['59907.02593720451 0.3069523456801916 5.2513297759056307e-05 0.03617896513061566 1.6787187084531803e-05 2.5591382828830225e-06 1.1874505800496265e-09 0.020099425072564254 9.326215046962112e-06 0.28685292060762735 5.3335023470825344e-05']
['59907.02607748472 0.3068686923957772 5.251351109334743e-05 0.036244537945845826 1.6789316973966224e-05 2.5637766107391705e-06 1.187601238908172e-09 0.020135854414358792 9.327398318870125e-06 0.2867328379814184 5.3335440438323796e-05']
['59907.02621776493 0.30689518205569705 5.250740500508409e-05 0.03621881574625425 1.678926504566479e-05 2.5619571373115277e-06 1.1875975657322343e-09 0.02012156430347458 9.327369469813772e-06 0.2867736177522225 5.332942341329356e-05']
['59907.026358045136 0.3068994818997171 5.250882459402057e-05 0.0362179721854277 1.679107660870749e-05 2.5618974675891527e-06 1.1877257076046646e-09 0.020121095658570943 9.328375893726382e-06 0.28677838624114615 5.333099715044033e-05']
['59907.026498325344 0.3069604599792949 5.2514665129298046e-05 0.03619655391688739 1.67891551603001e-05 2.5603824350066374e-06 1.1875897929326948e-09 0.020109196620492997 9.327308422388944e-06 0.2868512633588019 5.333656096945771e-05']
['59907.02663860556 0.3068883208041709 5.250912989197342e-05 0.03620906879051424 1.6788930961411187e-05 2.5612676812288077e-06 1.1875739341054033e-09 0.020116149328063465 9.32718386745066e-06 0.28677217147610745 5.333108925298046e-05']
['59907.02677888577 0.30688243165434037 5.251167281862514e-05 0.03622251574936513 1.678861453552069e-05 2.562218858993551e-06 1.1875515515522499e-09 0.020123619860758404 9.327008075289271e-06 0.286758811793582 5.3333562245989586e-05']
['59907.026919165975 0.3069030281158457 5.25063725596747e-05 0.03623387363441674 1.678902323314109e-05 2.5630222650153436e-06 1.1875804609951462e-09 0.020129929796898188 9.327235129522829e-06 0.2867730983189475 5.3328383385742764e-05']
['59907.02705944618 0.3068749162443399 5.2512902574691033e-05 0.03621627930299398 1.6787098921933437e-05 2.5617777206525307e-06 1.1874443438214817e-09 0.02012015516832999 9.326166067740799e-06 0.2867547610760099 5.3334625810462684e-05']
['59907.02719972639 0.306973507536155 5.251212736675317e-05 0.036221455383382846 1.6790008621548174e-05 2.5621438534435214e-06 1.1876501629666363e-09 0.020123030768546026 9.327782567526764e-06 0.28685047676760894 5.333414523744769e-05']
['59907.0273400066 0.3068427237108392 5.251511314758909e-05 0.03621181292676997 1.678857257509786e-05 2.5614617891619706e-06 1.1875485834594908e-09 0.020117673848205536 9.326984763943254e-06 0.2867250498626337 5.3336945485197356e-05']
['59907.02748028681 0.3068748254316706 5.2506503404878304e-05 0.036151428308655476 1.6789234739520107e-05 2.5571904511799094e-06 1.18759542201102e-09 0.02008412683814193 9.327352633066726e-06 0.2867906985935287 5.332853276575377e-05']
['59907.027620567016 0.3068550940321132 5.250510184468307e-05 0.03622781300018929 1.6791370569122807e-05 2.5625935628395346e-06 1.1877465010505184e-09 0.02012656277788294 9.328539205068225e-06 0.28672853125423026 5.3327360364273015e-05']
['59907.027760847224 0.3068203825881267 5.2506217679820026e-05 0.036228277802801426 1.6787977902678824e-05 2.5626264408987714e-06 1.1875065189905977e-09 0.02012682100155635 9.326654390377125e-06 0.2866935615865704 5.3328129323633564e-05']
['59907.02790112743 0.30693377668675204 5.251660163120346e-05 0.036263083019362 1.6791295865062256e-05 2.5650884063481046e-06 1.1877412168191826e-09 0.020146157232978888 9.328497702812365e-06 0.2867876194537731 5.3338675614247276e-05']
['59907.02804140764 0.3068837762554262 5.251496934788726e-05 0.03627148094683108 1.679305977920538e-05 2.5656824382007408e-06 1.187865988221435e-09 0.02015082274823949 9.3294776551141e-06 0.2867329535071867 5.333723988853203e-05']
['59907.02818168785 0.3069159045960609 5.250937190091445e-05 0.036243239734412014 1.67881668158956e-05 2.5636847810650063e-06 1.18751988186716e-09 0.020135133185784453 9.326759342164222e-06 0.2867807714102764 5.333125328787232e-05']
['59907.02832196806 0.30693346048039505 5.251301884552291e-05 0.036138762266729664 1.6787963603694718e-05 2.556294511987953e-06 1.1875055075443746e-09 0.02007709014818315 9.326646446497064e-06 0.2868563703322119 5.333482429152833e-05']
['59907.028462248265 0.30693417851112265 5.2512223622661426e-05 0.036166564153174555 1.679300081608543e-05 2.558261093167946e-06 1.1878618174338793e-09 0.02009253564065253 9.329444897825238e-06 0.2868416428704701 5.333453076476775e-05']
['59907.02860252847 0.30687406113852145 5.2512542705392597e-05 0.03620723339140311 1.6787271380846052e-05 2.5611378532994375e-06 1.187456542794114e-09 0.020115129661890614 9.326261878247806e-06 0.28675893147663084 5.333428823943692e-05']
['59907.02874280868 0.30684468280183014 5.25071092894116e-05 0.0362236783363417 1.6793677851213548e-05 2.5623010951998158e-06 1.1879097078726735e-09 0.020124265742412058 9.329821028451971e-06 0.2867204170594181 5.332956109282317e-05']
['59907.02888308889 0.3068998956565122 5.250880265082402e-05 0.03620254149701348 1.679576424267866e-05 2.5608059696618487e-06 1.1880572898792946e-09 0.020112523053896377 9.330980134821478e-06 0.28678737260261583 5.333143112742819e-05']
['59907.0290233691 0.30697185653056425 5.2512430601423585e-05 0.03622023441747257 1.6786425997137896e-05 2.5620574877724246e-06 1.187396744129242e-09 0.020122352454151428 9.325792220632165e-06 0.2868495040764128 5.333409573820233e-05']
['59907.029163649306 0.30691942844454706 5.250691580373943e-05 0.036226862160010004 1.678855084024367e-05 2.5625263046552572e-06 1.1875470460330546e-09 0.02012603453333889 9.326972689024261e-06 0.28679339391120817 5.33288723560023e-05']
['59907.029303929514 0.3069026769200265 5.2509067765555755e-05 0.03615477544497764 1.678931952994258e-05 2.5574272126425205e-06 1.1876014197065147e-09 0.02008598635832091 9.327399738856988e-06 0.28681669056170556 5.3331065838741266e-05']
['59907.02944420972 0.306959144374113 5.2513093975912904e-05 0.03622077864574896 1.6790072586797233e-05 2.5620959840481397e-06 1.187654687582447e-09 0.02012265480319387 9.32781810377624e-06 0.2868364895709191 5.3335103163865685e-05']
['59907.02958448993 0.30698320334428186 5.251289647032018e-05 0.036161454445598595 1.679082865800181e-05 2.557899655293071e-06 1.1877081686800192e-09 0.020089696914221442 9.328238143334338e-06 0.2868935064300604 5.333498216519176e-05']
['59907.02972477014 0.30681071504861085 5.250100658850081e-05 0.03618642705404795 1.679065713779374e-05 2.5596661059937878e-06 1.1876960361071504e-09 0.02010357058558219 9.328142854329854e-06 0.28670714446302864 5.332325892063042e-05']
['59907.02986505035 0.30698173116457467 5.251873237131615e-05 0.03621362870257312 1.6791158626479254e-05 2.5615902290262455e-06 1.1877315091752413e-09 0.02011868261254062 9.32842145915514e-06 0.28686304855203404 5.334076018214923e-05']
['59907.030005330555 0.306902711474917 5.2510258612964584e-05 0.03628376571509924 1.679209034477792e-05 2.5665514077983478e-06 1.1877974147631533e-09 0.020157647619499577 9.328939080432178e-06 0.2867450638554174 5.3332507572463115e-05']
['59907.03014561076 0.30693543274776613 5.251919538177577e-05 0.036283260548265694 1.679036753612399e-05 2.5665156745545057e-06 1.1876755509794757e-09 0.02015736697125872 9.327981964513328e-06 0.28677806577650744 5.334113919930304e-05']
['59907.03028589097 0.3068759731508529 5.250659986728177e-05 0.036235885304113535 1.6789480869567254e-05 2.5631645615380607e-06 1.1876128321504185e-09 0.020131047391174186 9.327489371981808e-06 0.28674492575967875 5.332865165750272e-05']
['59907.03042617118 0.30672756301579884 5.249937354101636e-05 0.03623166268986083 1.6785938767974323e-05 2.5628658726797993e-06 1.187362279715997e-09 0.02012870149436713 9.325521537763513e-06 0.2865988615214317 5.332119254246345e-05']
['59907.03056645139 0.30698724040105724 5.252442028869549e-05 0.036220738068251865 1.6788898761095934e-05 2.5620931137773657e-06 1.187571656399029e-09 0.020122632260139925 9.32716597838663e-06 0.2868646081409173 5.334614092745509e-05']
['59907.030706731595 0.306869611219279 5.250728847254955e-05 0.03620126727023052 1.6793227139491697e-05 2.5607158365546805e-06 1.1878778265400326e-09 0.020111815150128064 9.329570633050943e-06 0.28675779606915097 5.3329693707508026e-05']
['59907.0308470118 0.30691187710007867 5.251015666079796e-05 0.03627537344517218 1.6788311396253383e-05 2.565957776134946e-06 1.1875301088354333e-09 0.020152985247317876 9.326839664585212e-06 0.28675889185276077 5.333204000102025e-05']
['59907.03098729201 0.30691435576053455 5.250949462024228e-05 0.036221349758327887 1.678813324175263e-05 2.5621363819992496e-06 1.1875175069823538e-09 0.020122972087959937 9.326740689862571e-06 0.2867913836725746 5.333137085402166e-05']
['59907.03112757222 0.3069533213829392 5.2516955611727685e-05 0.03624579192371506 1.6789168967980983e-05 2.563865311528689e-06 1.1875907696263238e-09 0.02013655106873059 9.327316093322768e-06 0.2868167703142086 5.3338817499349705e-05']
['59907.03126785243 0.3069302342524888 5.2510432661010043e-05 0.036239851045846205 1.6790417653448366e-05 2.5634450803824074e-06 1.1876790960549909e-09 0.02013325058102567 9.328009807471314e-06 0.2867969836714631 5.3332516396798224e-05']
['59907.031408132636 0.3068822958707148 5.252071134402123e-05 0.036235451665395615 1.679068325901677e-05 2.563133887873406e-06 1.1876978838057128e-09 0.020130806480775344 9.328157366120427e-06 0.28675148938993944 5.3342662475068745e-05']
['59907.031548412844 0.30679778763860743 5.2503292899655134e-05 0.03619193945292534 1.678760320912998e-05 2.560056028451402e-06 1.187480014843734e-09 0.02010663302940297 9.326446227294434e-06 0.28669115460920447 5.3325213216053735e-05']
['59907.03168869305 0.30693946416476936 5.251179594863758e-05 0.036243031834522224 1.6790904926221986e-05 2.5636700751560604e-06 1.1877135635530157e-09 0.02013501768584568 9.32828051456777e-06 0.28680444647892367 5.333390601774649e-05']
['59907.03182897326 0.3068252108823311 5.250482986884429e-05 0.036252769351854106 1.6795015916613308e-05 2.5643588636079765e-06 1.1880043566382522e-09 0.020140427417696723 9.330564398118504e-06 0.2866847834646344 5.3327446887543e-05']
['59907.031969253476 0.3068977467336551 5.250732217686516e-05 0.03626778514493328 1.6800138185246078e-05 2.5654210136937525e-06 1.188366683026141e-09 0.02014876952496293 9.333410102914488e-06 0.2867489772086922 5.3330398707812994e-05']
['59907.032109533684 0.30685937036987876 5.2511172361095326e-05 0.0362176822082229 1.6790408025967604e-05 2.561876955897807e-06 1.1876784150500341e-09 0.020120934560123833 9.32800445887089e-06 0.28673843580975494 5.333324375960435e-05']
['59907.03224981389 0.30688709365831823 5.2516773907586057e-05 0.03622467112931445 1.678841405697477e-05 2.5623713209371843e-06 1.187537370595998e-09 0.020124817294063582 9.326896698319318e-06 0.28676227636425466 5.3338565257059845e-05']
['59907.0323900941 0.3068767568373283 5.250691168994236e-05 0.03627178578744868 1.6792951102831923e-05 2.565704001263472e-06 1.1878583009405314e-09 0.020150992104138152 9.329417279351069e-06 0.2867257647331901 5.332929590748091e-05']
['59907.03253037431 0.3067910513806306 5.2503016366898954e-05 0.03620039899735091 1.678891554269009e-05 2.5606544188121288e-06 1.1875728434539906e-09 0.020111332776306064 9.327175301494496e-06 0.28667971860432456 5.33250684643505e-05']
['59907.03267065452 0.3069105829976625 5.251183979287772e-05 0.03626087881770773 1.679428146772722e-05 2.564932490975283e-06 1.1879524050068436e-09 0.020144932676504294 9.330156370959565e-06 0.2867656503211582 5.333427731149465e-05']
['59907.032810934725 0.3068521725079951 5.250635787615091e-05 0.036207234231552914 1.678944060252728e-05 2.5611379127278794e-06 1.1876099838399938e-09 0.020115130128640506 9.327467001404043e-06 0.2867370423793546 5.332840948388313e-05']
['59907.03295121493 0.3068567398695251 5.250517520276779e-05 0.036215087905398874 1.6787942979155776e-05 2.5616934465118867e-06 1.1875040486566762e-09 0.020119493280777154 9.326634988419876e-06 0.28673724658874794 5.332709952060546e-05']
['59907.03309149514 0.30691917411907654 5.250825181918518e-05 0.03620946453557901 1.6787328362384687e-05 2.561295674465813e-06 1.1874605734134646e-09 0.020116369186432784 9.326293534658159e-06 0.28680280493264376 5.3330069006157965e-05']
['59907.03323177535 0.30682923212298197 5.251135479976901e-05 0.036231631539514614 1.6788372435086798e-05 2.5628636692435418e-06 1.1875344264496817e-09 0.020128684188619232 9.326873575048222e-06 0.2867005479343627 5.333322560648434e-05']
['59907.03337205556 0.3068817365724039 5.250702989421585e-05 0.03625371503821669 1.6789811013790625e-05 2.5644257572342966e-06 1.1876361850771219e-09 0.020140952799009272 9.327672785439234e-06 0.2867407837733946 5.3329107135824996e-05']
['59907.033512335765 0.306865139701176 5.250769100475562e-05 0.03619257463299977 1.6787483971365e-05 2.560100958250779e-06 1.1874715804972007e-09 0.020106985907222093 9.326379984091667e-06 0.2867581537939539 5.332953195236726e-05']
['59907.03365261597 0.3068820815678678 5.250928541074364e-05 0.03614163823573775 1.6790033407134393e-05 2.5564979451807603e-06 1.1876519161882204e-09 0.020078687908743197 9.327796337296885e-06 0.2868033936591246 5.3331349494054846e-05']
['59907.03379289618 0.30685956082826 5.250765336036555e-05 0.03622109268728811 1.6790918534444794e-05 2.562118197942936e-06 1.187714526137872e-09 0.02012282927071562 9.328288074691552e-06 0.28673673155754437 5.332982861229483e-05']
['59907.03393317639 0.3068988585039637 5.250969908622861e-05 0.036235707960703745 1.6787149680919437e-05 2.5631520170579305e-06 1.187447934285272e-09 0.020130948867057637 9.326194267177465e-06 0.28676790963690607 5.333147661217915e-05']
['59907.0340734566 0.3068947037271895 5.2510094875246165e-05 0.03617583889079114 1.6786404695935842e-05 2.5589171466513056e-06 1.1873952373774195e-09 0.020097688272661743 9.325780386631025e-06 0.2867970154545278 5.3331793928453465e-05']
['59907.034213736806 0.30680159956267833 5.25025015127916e-05 0.03619345062535856 1.6784586876049684e-05 2.5601629220347843e-06 1.1872666529238493e-09 0.020107472569643643 9.32477048669427e-06 0.2866941269930347 5.332414096570342e-05']
['59907.034354017014 0.3068674975202684 5.2504658319531305e-05 0.03624195706227411 1.6788117431609808e-05 2.5635940505711777e-06 1.1875163886435178e-09 0.02013442059015228 9.326731906449893e-06 0.28673307693011607 5.3326607554817495e-05']
['59907.03449429722 0.30688436471167146 5.250653527285625e-05 0.03624799089211306 1.678813945796061e-05 2.564020856724353e-06 1.1875179466891215e-09 0.020137772717840587 9.32674414331145e-06 0.2867465919938309 5.332845771888113e-05']
['59907.03463457743 0.30692323829490914 5.2510508925434615e-05 0.036223170902496056 1.67921923805729e-05 2.5622652015976706e-06 1.1878046323192169e-09 0.02012398383472003 9.328995766984944e-06 0.2867992544601891 5.333276394139508e-05']
['59907.03477485764 0.3069447335828809 5.252006836793665e-05 0.03627197258473122 1.678712747101254e-05 2.5657172144683044e-06 1.1874463632557306e-09 0.02015109588040623 9.3261819283403e-06 0.2867936377024746 5.3341683988539774e-05']
['59907.03491513785 0.3068647833285099 5.250763343113979e-05 0.03619067702134733 1.6785416681517638e-05 2.5599667296843107e-06 1.18732534965364e-09 0.020105931678526295 9.32523148973202e-06 0.2867588516499836 5.3329274426678997e-05']
['59907.035055418055 0.3070190439167762 5.252835681560543e-05 0.03621025602341964 1.6788905296048025e-05 2.561351660777917e-06 1.1875721186523305e-09 0.020116808901899798 9.327169608915568e-06 0.2869022350148764 5.3350017456989084e-05']
['59907.03519569826 0.3068339460835203 5.250297670981733e-05 0.036231433847075556 1.678791857737203e-05 2.5628496853640357e-06 1.1875023225835637e-09 0.02012857435948642 9.32662143187335e-06 0.28670537172403393 5.332493254309002e-05']
['59907.03533597847 0.3067625578419836 5.250491613658186e-05 0.03618030106695074 1.6789664267372338e-05 2.5592327810480825e-06 1.1876258048914102e-09 0.02010016725941708 9.327591259651298e-06 0.2866623905825665 5.3327011703419287e-05']
['59907.03547625868 0.3069254631842858 5.251069433427508e-05 0.03633483546276871 1.6930445453550805e-05 2.5701638534801487e-06 1.1975840367468073e-09 0.02018601970153817 9.405803029750447e-06 0.28673944348274766 5.334643521456828e-05']
['59907.03561653889 0.3067307155273924 5.249730079873458e-05 0.03620633448462631 1.678815223741123e-05 2.5610742686519237e-06 1.1875188506503378e-09 0.02011463026923684 9.32675124300624e-06 0.2866160852581556 5.3319366837029654e-05']
['59907.035756819096 0.3067300550725076 5.2497726963403756e-05 0.03621017706125506 1.678954920602746e-05 2.5613460753473346e-06 1.1876176659661673e-09 0.02011676503403059 9.327527336681921e-06 0.286613290038477 5.331992219180968e-05']
['59907.035897099304 0.30668439114637525 5.2501509801713415e-05 0.03619860318864661 1.6787339984115775e-05 2.5605273913311787e-06 1.1874613954827756e-09 0.020110335104803673 9.326299991175429e-06 0.2865740560415716 5.332343202556273e-05']
['59907.03603737951 0.30665634102466016 5.249507414711441e-05 0.03617828301761274 1.6789832427569764e-05 2.559090033258062e-06 1.1876376997921443e-09 0.02009904612089597 9.327684681983202e-06 0.2865572949037642 5.3317337810861706e-05']
['59907.03617765972 0.3065848040901445 5.248922200004475e-05 0.036133028563822306 1.678754804119643e-05 2.5558889354724302e-06 1.1874761125107007e-09 0.02007390475767906 9.326415578442461e-06 0.28651089933246543 5.3311353891190907e-05']
['59907.03631793993 0.3066499419426458 5.249266794376961e-05 0.036136837486644195 1.6787000447907282e-05 2.5561583616479673e-06 1.1874373782090244e-09 0.02007602082591344 9.32611135994849e-06 0.28657392111673236 5.331469348081275e-05']
['59907.03645822014 0.3065721692086534 5.2488191718331785e-05 0.036193992366329704 1.6787206847564264e-05 2.5602012423696436e-06 1.1874519779982072e-09 0.020107773536849834 9.32622602642459e-06 0.28646439567180354 5.331030633710814e-05']
['59907.036598500345 0.30651925469808583 5.248673479152297e-05 0.036209753292874756 1.6788868025948973e-05 2.561316099866245e-06 1.187569482332111e-09 0.02011652960715264 9.327148903304985e-06 0.2864027250909332 5.3309033340889715e-05']
['59907.03673878055 0.30640538037294346 5.24790296204707e-05 0.03615217536496538 1.6791485854409787e-05 2.5572432946041267e-06 1.1877546558164245e-09 0.02008454186942521 9.328603252449882e-06 0.28632083850351825 5.330170155396411e-05']
['59907.03687906076 0.3063450986651428 5.247708024591961e-05 0.0362484101692646 1.6793231584253625e-05 2.5640505145159943e-06 1.1878781409426244e-09 0.020138005649591444 9.329573102363124e-06 0.28620709301555136 5.329995202070095e-05']
['59907.03701934097 0.30636407346219485 5.247631730937857e-05 0.03607355239952937 1.6787259799724977e-05 2.551681857453156e-06 1.1874557235973739e-09 0.02004086244418298 9.326255444291655e-06 0.2863232110180119 5.32986202351127e-05']
['59907.03715962118 0.3063877855139426 5.2497021164878886e-05 0.03616511362457714 1.6787223399668505e-05 2.558158489258446e-06 1.1874531488200776e-09 0.020091729791431742 9.326235222038057e-06 0.2862960557225108 5.331900125286036e-05']
['59907.037299901385 0.306300979704087 5.246902766696883e-05 0.03607967971705238 1.6786572134882864e-05 2.5521152765072364e-06 1.1874070812601236e-09 0.020044266509473545 9.325873408268257e-06 0.28625671319461343 5.3291376217397366e-05']
['59907.0374401816 0.3063938166534522 5.247477559491637e-05 0.03620968256533291 1.6789192157727303e-05 2.5613110969160686e-06 1.1875924099653263e-09 0.02011649031407384 9.327328976515167e-06 0.28627732633937836 5.329729017101123e-05']
['59907.03758046181 0.30627310590033385 5.246808277011893e-05 0.036101794521545105 1.6786323559251066e-05 2.5536795789296932e-06 1.1873894981309978e-09 0.020056552511969503 9.325735310695036e-06 0.2862165533883643 5.3290421734653174e-05']
['59907.03772074202 0.30619535408482573 5.246889124282211e-05 0.036099392942360475 1.6783289577731824e-05 2.5535097019525996e-06 1.187174887839426e-09 0.020055218301311375 9.324049765406569e-06 0.2861401357835144 5.3290922794401615e-05']
['59907.037861022225 0.30609565919788845 5.2459130023281435e-05 0.03619307129720842 1.6790551919768724e-05 2.5601360900569406e-06 1.187688593454358e-09 0.020107261831782453 9.328084399871514e-06 0.285988397366106 5.328201836802613e-05']
['59907.03800130243 0.3060936971917676 5.245863641262802e-05 0.03606851573122482 1.6788856723708092e-05 2.5513255860498745e-06 1.1875686828621092e-09 0.020038064295124898 9.327142624282273e-06 0.2860556328966427 5.328136751065991e-05']
['59907.03814158264 0.30605103107659437 5.246142796145584e-05 0.036121442626268346 1.6785256514261312e-05 2.555069398035956e-06 1.1873140201378331e-09 0.02006746812570464 9.32514250792295e-06 0.2859835629508897 5.328376588181519e-05']
['59907.03828186285 0.30590128642025216 5.244608669410239e-05 0.0361275815415237 1.678962495011694e-05 2.5555036374617836e-06 1.1876230237645011e-09 0.020070878634179834 9.327569416731633e-06 0.2858304077860723 5.326908635174111e-05']
['59907.03842214306 0.3059650070617471 5.245655568647416e-05 0.03612394050874332 1.6784844167766923e-05 2.555246087077358e-06 1.1872848525899004e-09 0.020068855838190732 9.32491342653718e-06 0.2858961512235564 5.3278928713897554e-05']
['59907.038562423266 0.30590920536427557 5.2446561127918286e-05 0.036170745398863016 1.679240113544107e-05 2.5585568557988794e-06 1.1878193987055121e-09 0.0200948585549239 9.329111741911707e-06 0.2858143468093517 5.326982354051442e-05']
['59907.038702703474 0.30586011578516054 5.244288336946159e-05 0.03605327560658359 1.678338969266444e-05 2.550247567752102e-06 1.1871819695222719e-09 0.020029597559213106 9.324105384813578e-06 0.2858305182259474 5.32653260323267e-05']
['59907.03884298368 0.30588522937513485 5.244636016426535e-05 0.03610908674598937 1.6782851273141418e-05 2.554195398292556e-06 1.1871438841318069e-09 0.020060603747771875 9.323806262856343e-06 0.285824625627363 5.3268696790020294e-05']
['59907.03898326389 0.3058233955494436 5.244058629018271e-05 0.03611507621775863 1.6781943808944553e-05 2.55461906675415e-06 1.1870796941706468e-09 0.020063931232088127 9.323302116080305e-06 0.2857594643173555 5.326292381014965e-05']
['59907.0391235441 0.3056857907848566 5.243295964912089e-05 0.03602408403123469 1.6781709239578096e-05 2.5481826861905838e-06 1.1870631017821271e-09 0.02001338001735261 9.323171799765608e-06 0.285672410767504 5.325539212112032e-05']
['59907.03926382431 0.3056309027690344 5.2449229192637015e-05 0.036076824694965086 1.679050850360266e-05 2.551913325005979e-06 1.1876855223888293e-09 0.020042680386091714 9.328060279779255e-06 0.2855882223829427 5.327226625069523e-05']
['59907.039404104515 0.3057040720390676 5.24336262884536e-05 0.0361324756390346 1.6785720382997503e-05 2.555849824044376e-06 1.1873468321388601e-09 0.020073597577241444 9.325400212776391e-06 0.28563047446182616 5.325643862375386e-05']
['59907.03954438472 0.3055527833422944 5.242312579284804e-05 0.036063924580686677 1.678575467325199e-05 2.5510008285820415e-06 1.187349257678194e-09 0.020035513655937042 9.325419262917772e-06 0.2855172696863574 5.324610372902384e-05']
['59907.03968466493 0.305633377346706 5.243251207122706e-05 0.03602361518753497 1.6780962746230985e-05 2.548149522282873e-06 1.1870102981793814e-09 0.020013119548630536 9.322757081239435e-06 0.2856202577980754 5.3254878853445634e-05']
['59907.03982494514 0.3055633554611463 5.242791829181077e-05 0.036008641934658116 1.677829383514662e-05 2.547090381300866e-06 1.186821511338604e-09 0.020004801074810064 9.321274352859234e-06 0.28555855438633626 5.325009645037328e-05']
['59907.03996522535 0.30544312082296315 5.2416449938310054e-05 0.03602913186289247 1.678403082870587e-05 2.5485397472395753e-06 1.1872273206201333e-09 0.020016184368273595 9.324461571503262e-06 0.2854269364546896 5.3239363329530954e-05']
['59907.040105505555 0.3054287842740501 5.241591060717795e-05 0.03598735082710375 1.679634734109454e-05 2.5455843435181198e-06 1.1880985356549373e-09 0.019992972681724303 9.331304078385855e-06 0.28543581159232584 5.3240031185030034e-05']
['59907.04024578576 0.3053494518313987 5.241261932411748e-05 0.036131717044350246 1.678847202016947e-05 2.5557961644471235e-06 1.1875414706533107e-09 0.020073176135750135 9.32692890009415e-06 0.28527627569564856 5.323602414833648e-05']
['59907.04038606597 0.30540873353522413 5.241454535894756e-05 0.03609422083024109 1.6783217441657228e-05 2.5531438498592547e-06 1.1871697852559383e-09 0.020052344905689492 9.32400968980957e-06 0.28535638862953466 5.323740904552769e-05']
['59907.04052634618 0.305307491016886 5.2409084868624124e-05 0.03607350838292625 1.6779652876248184e-05 2.551678743915394e-06 1.1869176438315723e-09 0.020040837990514582 9.322029375693435e-06 0.2852666530263714 5.3231686131926516e-05']
['59907.04066662639 0.3054023807227373 5.241402537365576e-05 0.035978522870421796 1.6784186856396418e-05 2.5449598933210825e-06 1.1872383573215599e-09 0.019988068261345443 9.324548253553566e-06 0.2854143124613918 5.323699142516488e-05']
['59907.040806906596 0.3053372568846039 5.2410387528895334e-05 0.03601509313900493 1.6782350758167733e-05 2.547546710661173e-06 1.1871084799397388e-09 0.02000838507722496 9.323528198982074e-06 0.2853288718073789 5.3233231153164104e-05']
['59907.040947186804 0.30541747142231657 5.2434833804008395e-05 0.03601691818362889 1.6782592456786995e-05 2.547675806160403e-06 1.1871255766197361e-09 0.02000939899090494 9.323662475992775e-06 0.28540807243141164 5.325732323371328e-05']
['59907.04108746701 0.3052792020557639 5.2407188175406404e-05 0.03597565127983268 1.678288409047909e-05 2.5447567698380632e-06 1.1871462054835892e-09 0.01998647293324038 9.323824494710607e-06 0.28529272912252357 5.323013315463923e-05']
['59907.04122774722 0.30527729059953884 5.240584291502389e-05 0.03597272270750168 1.6780705471712398e-05 2.544549615721316e-06 1.186992099729886e-09 0.019984845948612044 9.322614150951332e-06 0.2852924446509268 5.322859669615269e-05']
['59907.04136802743 0.30521451766811125 5.240753109954013e-05 0.036007742480031316 1.6797080857185183e-05 2.547026757900892e-06 1.1881504213045655e-09 0.020004301377795176 9.331711587325101e-06 0.28521021629031607 5.3231852842995077e-05']
['59907.04150830764 0.30514067571236164 5.239965121805634e-05 0.03600961566600752 1.6781068485235838e-05 2.5471592587042e-06 1.1870177776839592e-09 0.020005342036670846 9.32281582513102e-06 0.28513533367569077 5.322253604144833e-05']
['59907.041648587845 0.3052128934715795 5.2402259467686104e-05 0.0359545201181289 1.6783305052246804e-05 2.5432620459098715e-06 1.1871759824374487e-09 0.019974733398960498 9.324058362359336e-06 0.285238160072619 5.322532162104219e-05']
['59907.04178886805 0.3052612208289814 5.2405131695343186e-05 0.036042849781522696 1.6786026590851382e-05 2.54951009148799e-06 1.1873684919137749e-09 0.020023805434179275 9.325570328250767e-06 0.28523741539480213 5.3228414309966196e-05']
['59907.04192914826 0.3051682888295766 5.2399054417269455e-05 0.03601501900038721 1.6780891922626724e-05 2.547541466426736e-06 1.1870052884341789e-09 0.020008343889104007 9.322717734792624e-06 0.2851599449404726 5.322193128576398e-05']
['59907.04206942847 0.30514201188700674 5.239929001548233e-05 0.03602941613912261 1.678042376908205e-05 2.5485598556694552e-06 1.1869721733449518e-09 0.02001634229951256 9.322457649490027e-06 0.2851256695874942 5.322211768384607e-05']
['59907.04220970868 0.30516380441675345 5.240036970279417e-05 0.0360153024493106 1.6780636427012228e-05 2.5475615163366343e-06 1.1869872158164076e-09 0.020008501360728112 9.32257579278457e-06 0.2851553030560253 5.322320137310158e-05']
['59907.042349988886 0.30516450791041566 5.2400208725695764e-05 0.0360341985417833 1.6782436094010603e-05 2.5488981414575907e-06 1.1871145162158345e-09 0.02001899918987961 9.323575607783668e-06 0.28514550872053607 5.322321802193608e-05']
['59907.042490269094 0.30520120563548825 5.240315159229682e-05 0.03603889292272325 1.6780275085188706e-05 2.549230200982635e-06 1.1869616561109146e-09 0.020021607179290694 9.322375047327059e-06 0.28517959845619756 5.322590509637452e-05']
['59907.0426305493 0.3051719725549892 5.239843129881336e-05 0.03607271426240162 1.6782327022573456e-05 2.5516225713789914e-06 1.1871068009898914e-09 0.020040396812445342 9.32351501254081e-06 0.28513157574254383 5.3221457465626934e-05']
['59907.04277082952 0.30508204842918196 5.239653357807326e-05 0.036025740732965494 1.67888547790326e-05 2.5482998738659994e-06 1.187568545304457e-09 0.02001430040720305 9.327141543906999e-06 0.28506774802197893 5.322022454272656e-05']
['59907.042911109726 0.30513836231494434 5.2401087595969786e-05 0.035988870073075635 1.6785502938628345e-05 2.545691808187541e-06 1.187331451096105e-09 0.01999381670726424 9.32527941034908e-06 0.2851445456076801 5.3224381793700324e-05']
['59907.043051389934 0.30512921062083215 5.239741884680982e-05 0.03596820450141826 1.6784237178504894e-05 2.544230018018167e-06 1.1872419168825868e-09 0.01998233583412125 9.324576210280496e-06 0.2851468747867109 5.322064658860648e-05']
['59907.04319167014 0.30512144779511524 5.2397474972959645e-05 0.03606437670307712 1.6780344452339453e-05 2.5510328096990734e-06 1.1869665628331055e-09 0.020035764835042845 9.32241358463303e-06 0.2850856829600724 5.322032298459755e-05']
['59907.04333195035 0.3051805678996054 5.240124029575521e-05 0.03602594539040506 1.6782325385076684e-05 2.5483143504185096e-06 1.187106685160689e-09 0.02001441410578059 9.32351410282038e-06 0.2851661537938248 5.3224222866651326e-05']
['59907.04347223056 0.30520588957442996 5.2400399669682725e-05 0.036026091091159625 1.6785349034263347e-05 2.5483246566386432e-06 1.1873205645892371e-09 0.020014495050644236 9.325193907924082e-06 0.2851913945237857 5.3223689527905424e-05']
['59907.043612510766 0.30508312758952927 5.239590344501758e-05 0.03599289838699862 1.6780287015548445e-05 2.5459767531089497e-06 1.1869625000112368e-09 0.01999605465944368 9.322381675304692e-06 0.2850870729300856 5.321877016541872e-05']
['59907.043752790974 0.30509838448991017 5.239641614450391e-05 0.03603788914255634 1.6781731462270454e-05 2.549159198060261e-06 1.1870646737160549e-09 0.02002104952364241 9.323184145705807e-06 0.28507733496626775 5.32194155116605e-05']
['59907.04389307118 0.30515503054757886 5.2411010808624676e-05 0.03599740689721771 1.6783373926747383e-05 2.5462956649699938e-06 1.1871808543117688e-09 0.019998559387343174 9.324096625970769e-06 0.2851564711602357 5.323394435763906e-05']
['59907.04403335139 0.3051771395058145 5.2400876769799056e-05 0.035975147486864326 1.6786099868758725e-05 2.5447211337753035e-06 1.1873736752654075e-09 0.019986193048257956 9.325611038199291e-06 0.28519094645755655 5.322423233339726e-05']
['59907.0441736316 0.3051797241915618 5.240103924979469e-05 0.036011458271195396 1.6779992711956458e-05 2.5472895963592297e-06 1.1869416822905993e-09 0.020006365706219664 9.322218173309143e-06 0.28517335848534214 5.322379793033656e-05']
['59907.04431391181 0.30512138321998095 5.239857266047329e-05 0.035955104420927066 1.6783284020242924e-05 2.543303376878134e-06 1.1871744947275017e-09 0.01997505801162615 9.324046677912735e-06 0.2851463252083548 5.3221689782520007e-05']
['59907.044454192015 0.30511707115390746 5.239983550916281e-05 0.03601485251092806 1.6779159244314434e-05 2.5475296897065595e-06 1.1868827265149838e-09 0.02000825139496003 9.321755135730241e-06 0.2851088197589474 5.322253169662105e-05']
['59907.04459447222 0.3050898269322419 5.2396041904288556e-05 0.036021001258884466 1.6779170906766813e-05 2.54796462465371e-06 1.186883551464737e-09 0.020011667366046926 9.321761614870452e-06 0.285078159566195 5.3218797871057124e-05']
['59907.04473475243 0.3050327441889472 5.239278779761416e-05 0.0359457742895029 1.6790320811371934e-05 2.5426434050844215e-06 1.1876722458793627e-09 0.019969874605279388 9.327956006317742e-06 0.28506286958366783 5.321667949488794e-05']
['59907.04487503264 0.3050833109755474 5.239711696561282e-05 0.03599174985321613 1.6780915384251118e-05 2.5458955109628203e-06 1.1870069480046212e-09 0.019995416585120072 9.322730769028399e-06 0.28508789439042737 5.3220026073837095e-05']
['59907.04501531285 0.3050839960393903 5.2396596625901865e-05 0.03595982531143893 1.6780919223503246e-05 2.543637311571805e-06 1.1870072195761562e-09 0.019977680728577186 9.322732901946248e-06 0.2851063153108131 5.321951415353678e-05']
['59907.045155593056 0.3051972317269298 5.240066704168395e-05 0.036043480830123334 1.6784040684956286e-05 2.549554729045378e-06 1.1872280178072328e-09 0.020024156016735187 9.324467047197936e-06 0.2851730757101946 5.322382541801841e-05']
['59907.045295873264 0.3050902405001156 5.239587973611912e-05 0.03606990772913079 1.6782470290303492e-05 2.5514240497598785e-06 1.1871169351087451e-09 0.020038837627294883 9.323594605724162e-06 0.2850514028728207 5.3218959306752204e-05']
['59907.04543615347 0.30513823381015426 5.239784296531622e-05 0.03600204353047441 1.6781629782912815e-05 2.5466236396820417e-06 1.1870574813727755e-09 0.020001135294708008 9.323127657173786e-06 0.2851370985154463 5.322081037272824e-05']
['59907.04557643368 0.3051528627458857 5.239898224715708e-05 0.03591949910045859 1.678263297095744e-05 2.5407848156546103e-06 1.1871284424110657e-09 0.019955277278032552 9.323684983865245e-06 0.2851975854678532 5.322202967020552e-05']
['59907.04571671389 0.3051804879362575 5.239959802011538e-05 0.03595659875951723 1.6780005579471223e-05 2.5434090797107022e-06 1.1869425924810794e-09 0.019975888199731798 9.322225321928457e-06 0.28520459973652573 5.322238023259091e-05']
['59907.0458569941 0.3052275929717492 5.2404323620777096e-05 0.03597868913498045 1.6787371504466642e-05 2.544971654132803e-06 1.1874636250915084e-09 0.019988160630544694 9.326317502481468e-06 0.28523943234120447 5.322774964535161e-05']
['59907.045997274305 0.3051022148166588 5.2397602280630174e-05 0.03600170008903346 1.6781948701531502e-05 2.5465993461696017e-06 1.187080040250379e-09 0.020000944493907477 9.323304834184168e-06 0.2851012703227513 5.3220604447809705e-05']
['59907.04613755451 0.3050952805835479 5.240764094879506e-05 0.035984458523898165 1.6781343367175958e-05 2.5453797549171913e-06 1.1870372216037532e-09 0.01999136584661009 9.322968537319976e-06 0.2851039147369378 5.323042900602698e-05']
['59907.04627783472 0.3051804485964292 5.240131828906749e-05 0.03606610416406085 1.67890497288838e-05 2.551155002567766e-06 1.1875823351855564e-09 0.02003672453558936 9.327249849379888e-06 0.2851437240608398 5.322495418678081e-05']
['59907.04641811493 0.3050898006107935 5.2396273594650954e-05 0.03600549388707883 1.677926669364395e-05 2.5468677024860517e-06 1.1868903270002835e-09 0.02000305215948824 9.321814829802196e-06 0.28508674845130527 5.32190353006012e-05']
['59907.04655839514 0.305127194180033 5.239709453988267e-05 0.036035175410156384 1.6778431175048215e-05 2.5489672407599578e-06 1.1868312261493694e-09 0.020019541894531322 9.321350652804564e-06 0.28510765228550167 5.3219762252512384e-05']
['59907.046698675345 0.3051131359457837 5.2397006401725395e-05 0.03596863985655492 1.6784107997609598e-05 2.544260813094612e-06 1.1872327792034582e-09 0.019982577698086066 9.324504443116443e-06 0.2851305582476976 5.322022794926897e-05']
['59907.04683895555 0.3051357623690024 0.0006662609038782585 0.036033033352286165 1.6781832991614614e-05 2.548815721160654e-06 1.1870718554480513e-09 0.020018351862381205 9.323240550897007e-06 0.2851174105066212 0.0006663261324989767']
['59907.04697923576 0.30519683086440286 5.2401744336536385e-05 0.036070727023062014 1.678061366750587e-05 2.551482002950545e-06 1.1869856059106568e-09 0.020039292790590007 9.322563148614372e-06 0.28515753807381283 5.32245525408305e-05']
['59907.04711951597 0.30499410321994314 5.2389510919701555e-05 0.03598525788279072 1.6778559512912216e-05 2.5454362979923267e-06 1.1868403041962323e-09 0.019991809934883732 9.321421951617897e-06 0.2850022932850594 5.3212308365693296e-05']
['59907.04725979618 0.305103175005481 5.239950014506711e-05 0.03596845246405744 1.6785148077371253e-05 2.5442475577869357e-06 1.1873063497969147e-09 0.019982473591143024 9.325082265206252e-06 0.285120701414338 5.32227843569439e-05']
['59907.047400076386 0.3055596053278743 5.2551169002441096e-05 0.03599494891741324 1.6782825184221046e-05 2.5461217984651483e-06 1.1871420387181905e-09 0.019997193843007355 9.323791769011693e-06 0.28556241148486694 5.3371888260347466e-05']
['59907.047540356594 0.305169301962786 5.239796982339574e-05 0.03602309559924335 1.6792462417390987e-05 2.5481127689295466e-06 1.187823733516735e-09 0.020012830888468523 9.329145787439438e-06 0.2851564710743175 5.3221989841951505e-05']
['59907.0476806368 0.3051092108170759 5.239762348566219e-05 0.03597793005634024 1.678360164436554e-05 2.5449179603026765e-06 1.1871969620382395e-09 0.019987738920189024 9.324223135758635e-06 0.2851214718968869 5.322078620267305e-05']
['59907.04782091701 0.3051295144384861 5.239729116583049e-05 0.035980020867096604 1.6778453123665543e-05 2.5450658549102072e-06 1.1868327786964547e-09 0.019988900481720334 9.321362846480858e-06 0.2851406139567658 5.3219957974735115e-05']
['59907.04796119722 0.30506566188347933 5.239359944696998e-05 0.03599891975611798 1.678094352249896e-05 2.5464026778465173e-06 1.187008938378503e-09 0.01999939986450999 9.322746401388311e-06 0.28506626201896934 5.321656568658045e-05']
['59907.048101477434 0.3051961840450406 5.240183359784994e-05 0.03597827492362107 1.678062863352079e-05 2.5449423546726565e-06 1.186986664539658e-09 0.01998793051312282 9.322571463067105e-06 0.2852082535319178 5.322464187855798e-05']
['59907.04824175764 0.30514027450260095 5.2400781890621476e-05 0.036034953726575336 1.678252267635045e-05 2.548951559854302e-06 1.187120640663555e-09 0.0200194187369863 9.323623709083584e-06 0.28512085576561463 5.3223790750162366e-05']
['59907.04838203785 0.3051059825208201 5.2396591055037193e-05 0.03603276839655322 1.6783826300458946e-05 2.5487969793763878e-06 1.1872128532061332e-09 0.02001820466475179 9.324347944699414e-06 0.2850877778560683 5.321979160784664e-05']
['59907.04852231806 0.30519103910505285 5.2408779060794456e-05 0.0359502809305601 1.6782955359132597e-05 2.542962184729308e-06 1.187151246709586e-09 0.01997237829475561 9.323864088406998e-06 0.28521866081029723 5.3231706380523375e-05']
['59907.04866259827 0.30508518379053173 5.2395115023780345e-05 0.036026775091855937 1.678168546750277e-05 2.5483730397905974e-06 1.1870614202517735e-09 0.020014875051031077 9.323158593057093e-06 0.2850703087395007 5.3218130035792e-05']
['59907.048802878475 0.3050700145502858 5.239285149636013e-05 0.03598896099037084 1.677951515624278e-05 2.5456982392706276e-06 1.1869079021339623e-09 0.01999386721687269 9.321952864579323e-06 0.28507614733341313 5.321569029082574e-05']
['59907.04894315868 0.30508070213410765 5.239553102245869e-05 0.03600264893063451 1.678452042596747e-05 2.5466664629833877e-06 1.187261952542048e-09 0.020001471628130284 9.324733569981929e-06 0.2850792305059774 5.32188155380837e-05']
['59907.04908343889 0.30508982575337307 5.239433844278466e-05 0.035980124341941366 1.6778197305760493e-05 2.5450731742582204e-06 1.1868146832812902e-09 0.0199889579677452 9.321220725422495e-06 0.2851008677856279 5.321702600361193e-05']
['59907.0492237191 0.30517392180115865 5.240009238106287e-05 0.03597330731672531 1.6783556635260104e-05 2.544590968364746e-06 1.1871937782952997e-09 0.019985170731514058 9.324198130700058e-06 0.2851887510696446 5.3223212532920945e-05']
['59907.04936399931 0.3051810342773781 5.240474735456302e-05 0.03596225768669787 1.678430032227806e-05 2.5438093669255444e-06 1.1872463833908646e-09 0.019979032048165483 9.324611290154479e-06 0.2852020022292126 5.322786789838624e-05']
['59907.049504279516 0.3050715573696273 5.239283520142315e-05 0.035973333819028216 1.6779117760243813e-05 2.5445928430191956e-06 1.186879792117251e-09 0.019985185455015677 9.32173208902434e-06 0.28508637191461167 5.321563557435944e-05']
['59907.049644559724 0.30502103217292326 5.2393142534642913e-05 0.03597572729695826 1.67790601677641e-05 2.54476214694975e-06 1.1868757182826592e-09 0.01998651516497681 9.321700093202279e-06 0.28503451700794646 5.321593255109804e-05']
['59907.04978483993 0.3050893292511324 5.2401405412601556e-05 0.03602088361194051 1.6784835139720956e-05 2.547956302834745e-06 1.1872842139862816e-09 0.020011602006633614 9.324908410956086e-06 0.2850777272444988 5.322462969423599e-05']
['59907.04992512014 0.3050259051755304 5.23906163958266e-05 0.03605266099649339 1.678326925767283e-05 2.5502040929814666e-06 1.1871734504892782e-09 0.020029256109162993 9.324038476484906e-06 0.2849966490663674 5.321385514925249e-05']
['59907.05006540035 0.3051299184720836 5.240470428575848e-05 0.036021731689089426 1.6785155864984584e-05 2.548016292021578e-06 1.1873069006578732e-09 0.020012073160605236 9.325086591658102e-06 0.2851178453114784 5.322790876241255e-05']
['59907.050205680556 0.3050636244681298 5.239255926307637e-05 0.03600622038725024 1.6782862014499687e-05 2.5469190918609125e-06 1.18714464392748e-09 0.020003455770694574 9.323812230277604e-06 0.2850601686974352 5.321572832011645e-05']
['59907.050345960764 0.3051278107487074 5.242301542252446e-05 0.03604490105584819 1.6785418943922318e-05 2.549655189465119e-06 1.1873255096860348e-09 0.020024945031026774 9.32523274662351e-06 0.2851028657176806 5.324596239874848e-05']
['59907.05048624097 0.30512707613765766 5.239704601482783e-05 0.03603452721419344 1.6784971488201703e-05 2.5489213902748047e-06 1.187293858668368e-09 0.02001918178566302 9.324984160112057e-06 0.28510789435199463 5.3220351000968845e-05']
['59907.05062652118 0.30513415632698426 5.239734395340351e-05 0.03603035022278427 1.6785749970802294e-05 2.548625928572573e-06 1.1873489250479214e-09 0.020016861234880154 9.325416650445719e-06 0.2851172950921041 5.322072011045775e-05']
['59907.05076680139 0.30510052559833023 5.240546088632457e-05 0.03596061062433114 1.678016830519912e-05 2.5436928610956573e-06 1.1869541029717295e-09 0.0199781170135173 9.32231572511062e-06 0.2851224085848129 5.3228168305764e-05']
['59907.0509070816 0.30503390485756693 5.2402727269094845e-05 0.036000455660242334 1.6779270822472676e-05 2.5465113208391865e-06 1.1868906190551727e-09 0.020000253144579073 9.321817123595932e-06 0.28503365171298783 5.322538961552938e-05']
['59907.051047361805 0.30525831250413255 5.242116786034223e-05 0.03599157637464279 1.678304265822917e-05 2.545883239863946e-06 1.1871574218574735e-09 0.019995320208134885 9.323912587905094e-06 0.28526299229599766 5.324391219462627e-05']
['59907.05118764201 0.3051581881014335 5.2399931888059114e-05 0.03597020261506313 1.678070986111962e-05 2.5443713556463633e-06 1.1869924102169335e-09 0.019983445897257295 9.322616589510901e-06 0.2851747422041762 5.322277747307311e-05']
['59907.05132792222 0.3051562233152416 5.2399382891768724e-05 0.03605378328955841 1.6783830034477692e-05 2.5502834789765315e-06 1.1872131173339292e-09 0.02002987960531023 9.324350019154273e-06 0.2851263437099314 5.322254062629749e-05']
['59907.05146820243 0.30503790443798645 5.23938808949707e-05 0.03597900068635207 1.6784805898089907e-05 2.5449936918842785e-06 1.1872821455640038e-09 0.01998833371464004 9.324892165605505e-06 0.2850495707233464 5.321721872793191e-05']
['59907.05160848264 0.30516909565340805 5.239876274364854e-05 0.03603100067380187 1.678216957703493e-05 2.5486719385702127e-06 1.1870956639962362e-09 0.020017222596556594 9.323427542797183e-06 0.28515187305685147 5.322176846188934e-05']
['59907.051748762846 0.30512362632442697 5.2397422947973926e-05 0.03597303330281171 1.6780096238092025e-05 2.544571585845268e-06 1.1869490052666947e-09 0.01998501850156206 9.322275687828902e-06 0.28513860782286493 5.322024760923939e-05']
['59907.051889043054 0.30503658952700546 5.239270542678867e-05 0.0359881365791147 1.678114054450101e-05 2.5456399241032696e-06 1.1870228748342913e-09 0.019993409210619276 9.322855858056116e-06 0.2850431803163862 5.3215704667779624e-05']
['59907.05202932326 0.30513101592445924 5.239920264563779e-05 0.03596096113080654 1.6779127651768448e-05 2.5437176543570555e-06 1.186880491799491e-09 0.019978311739336965 9.321737584315804e-06 0.2851527041851223 5.322190554169834e-05']
['59907.05216960347 0.3051306930045982 5.239835065842632e-05 0.03604649874681859 1.678158028701165e-05 2.5497682029831064e-06 1.1870539802539607e-09 0.02002583263712144 9.323100159450915e-06 0.2851048603674768 5.322130539836993e-05']
['59907.05230988368 0.30512405581866825 5.240183742966402e-05 0.035978063450520695 1.677949606085813e-05 2.5449273960107648e-06 1.1869065514118035e-09 0.019987813028067052 9.321942256032294e-06 0.2851362427906012 5.322453544588001e-05']
['59907.05245016389 0.3051265211234657 5.2396107758942195e-05 0.0359725726994745 1.6780512813045834e-05 2.54453900482397e-06 1.1869784719169468e-09 0.01998476261081917 9.322507118358797e-06 0.28514175851264656 5.321899329429798e-05']
['59907.052590444095 0.3050924634823929 5.239519528081816e-05 0.03600663798746301 1.678184853472788e-05 2.5469486310334007e-06 1.18707295489841e-09 0.02000368777081278 9.323249185959932e-06 0.2850887757115801 5.321822492246967e-05']
['59907.0527307243 0.30505417715315886 5.239410932218667e-05 0.035935304457605406 1.6778512135767375e-05 2.5419028159733873e-06 1.1868369529487697e-09 0.019964058032003004 9.321395630981875e-06 0.28509011912115584 5.3216831060995507e-05']
['59907.05287100451 0.30511321580174255 5.239922489972392e-05 0.03601977535081206 1.6782935843077487e-05 2.5478779093961544e-06 1.1871498662310792e-09 0.020010986306006697 9.32385324615416e-06 0.2851022294957359 5.322229804741305e-05']
['59907.05301128472 0.30508668315058785 5.240131723441872e-05 0.03667671491506286 1.771299566501002e-05 2.5943468778242215e-06 1.2529381409118481e-09 0.020375952730590476 9.840553147227787e-06 0.2847107304199974 5.331730051442593e-05']
['59907.05315156493 0.30504015830854136 5.239433618060802e-05 0.03599059210911451 1.6780631992713047e-05 2.5458136173198833e-06 1.1869869021539038e-09 0.019994773393952506 9.322573329285026e-06 0.28504538491458886 5.321726070821822e-05']
['59907.053291845135 0.30510019266075566 5.2395728661943306e-05 0.03602602826808248 1.678203059973639e-05 2.548320212814969e-06 1.1870858333633295e-09 0.02001446014893471 9.323350333186884e-06 0.28508573251182096 5.3218767774642465e-05']
['59907.05343212535 0.3050708347563579 5.239542619707703e-05 0.035993468659064755 1.6786574608216607e-05 2.546017091605942e-06 1.1874072562126975e-09 0.019996371477258197 9.32587478234256e-06 0.2850744632790997 5.3218912304079264e-05']
['59907.05357240556 0.3050069637989295 5.239630838469833e-05 0.036009707288298255 1.678157099027263e-05 2.547165739655519e-06 1.1870533226441964e-09 0.020005392937943477 9.323094994595905e-06 0.28500157086098604 5.321929380048807e-05']
['59907.05371268577 0.3050383187862622 5.2392496431104614e-05 0.03607930888024245 1.6787347558716667e-05 2.552089045168845e-06 1.1874619312761863e-09 0.020044060489023584 9.326304199287037e-06 0.2849942582972386 5.321610312960682e-05']
['59907.053852965975 0.3050562012634527 5.239189065131518e-05 0.036000822945175245 1.6788809637958662e-05 2.5465373009336737e-06 1.1875653522266555e-09 0.020000457191764024 9.32711646553259e-06 0.28505574407168865 5.321564908540509e-05']
['59907.05399324618 0.3050220906084377 5.239169057604901e-05 0.03595937565682723 1.6777320566940735e-05 2.543605505014411e-06 1.1867526666959724e-09 0.019977430920459574 9.320733648300407e-06 0.28504465968797815 5.3214333756601914e-05']
['59907.05413352639 0.30502526001819324 5.238999282743723e-05 0.03602344291908881 1.678295917165649e-05 2.5481373367829864e-06 1.1871515163904852e-09 0.020013023843938226 9.323866206475829e-06 0.28501223617425503 5.321321104289034e-05']
['59907.0542738066 0.30500684778933207 5.2398531046163744e-05 0.035984300218449755 1.6778154893996105e-05 2.5453685570973546e-06 1.1868116832626468e-09 0.01999127789913875 9.32119716333117e-06 0.28501556989019333 5.322114967147439e-05']
['59907.05441408681 0.30503622909080963 5.239250746649749e-05 0.03598514225105648 1.6779532700952437e-05 2.54542811872029e-06 1.186909143168303e-09 0.019991745695031378 9.321962611640242e-06 0.28504448339577826 5.321535328793574e-05']
['59907.054554367016 0.30504379455563246 5.239984220092158e-05 0.03594913795888274 1.6782833051209147e-05 2.5428813360216344e-06 1.1871425951937654e-09 0.01997174331049041 9.323796139560638e-06 0.28507205124514207 5.322289579808269e-05']
['59907.054694647224 0.30507687807466205 5.239262885722912e-05 0.03601499789809876 1.6783241700291866e-05 2.547539973745173e-06 1.187171501203323e-09 0.020008332165610425 9.324023166828815e-06 0.2850685459090516 5.3215833795844236e-05']
['59907.05483492743 0.305084284347909 5.2396317852638196e-05 0.03603711325540793 1.6784689147034296e-05 2.5491043152713935e-06 1.1872738871161764e-09 0.020020618475226626 9.324827303907944e-06 0.2850636658726824 5.3219606619763725e-05']
['59907.05497520764 0.3051021570891804 5.2395505155162704e-05 0.035979409830149404 1.6781989372495613e-05 2.545022632887737e-06 1.1870829171325918e-09 0.01998856101674967 9.32332742916423e-06 0.28511359607243075 5.3218543711906354e-05']
['59907.05511548785 0.30665907912039414 5.4081618064576054e-05 0.03596279148645343 1.6786401936786197e-05 2.5438471255343082e-06 1.187395042207506e-09 0.01997932860358524 9.32577885377011e-06 0.2866797505168089 5.4879791943046806e-05']
['59907.05525576806 0.305141614636979 5.240638797816595e-05 0.03598000928205297 1.678228190450846e-05 2.545065035436003e-06 1.1871036095396396e-09 0.019988894045584984 9.323489946949145e-06 0.285152720591394 5.322928672928953e-05']
['59907.055396048265 0.3050807535147273 5.2403450121990055e-05 0.036071339023357754 1.6785895440828934e-05 2.5515252931159853e-06 1.187359214947393e-09 0.020039632790754307 9.325497467127186e-06 0.285041120723973 5.322674598073129e-05']
['59907.05553632847 0.3050337674423093 5.238968601064189e-05 0.03598358241822209 1.6777366429191567e-05 2.5453177831176277e-06 1.186755910786604e-09 0.019990879121234494 9.320759127328647e-06 0.2850428883210748 5.321236464397468e-05']
['59907.05567660868 0.30507013554620954 5.2393951599312944e-05 0.03608428385052394 1.678293602613932e-05 2.552440952329749e-06 1.187149879180055e-09 0.020046824361402187 9.323853347855178e-06 0.28502331118480734 5.32171063234695e-05']
['59907.05581688889 0.3050889587293291 5.2393402205475974e-05 0.03599409442820984 1.6780292777688468e-05 2.5460613557182418e-06 1.1869629075992668e-09 0.019996719126783243 9.322384876493594e-06 0.28509223960254587 5.32163081625384e-05']
['59907.0559571691 0.30496182577001013 5.2387430163075704e-05 0.036003996045336294 1.6778458793803446e-05 2.5467617518561434e-06 1.1868331797766658e-09 0.02000222002518683 9.321365996557469e-06 0.2849596057448233 5.321024998186826e-05']
['59907.056097449306 0.30500995868044106 5.239079454358959e-05 0.036009207106523784 1.678265920721618e-05 2.547130359032474e-06 1.1871302982467397e-09 0.02000511505917988 9.323699559564545e-06 0.28500484362126116 5.3213971157823214e-05']
['59907.056237729514 0.3049798196439135 5.238938427500316e-05 0.03600357809117377 1.6787585503869825e-05 2.5467321876468317e-06 1.1874787624527683e-09 0.020001987828429872 9.32643639103879e-06 0.28497783181548364 5.3213062310583485e-05']
['59907.05637800972 0.3050891197927158 5.240435665748928e-05 0.0360204450465266 1.677918903635932e-05 2.5479252806776374e-06 1.1868848338710764e-09 0.020011358359181445 9.32177168686629e-06 0.28507776143353436 5.3226985863069533e-05']
['59907.05651828993 0.3051228388284769 5.2397792895028856e-05 0.03600649507941751 1.6782072921313698e-05 2.5469385223570234e-06 1.187088827002542e-09 0.02000360837745417 9.323373845174276e-06 0.2851192304510227 5.322080420406306e-05']
['59907.05665857014 0.3050527401767351 5.239255082553095e-05 0.03602695293235037 1.678584712548874e-05 2.5483856194322736e-06 1.1873557973361846e-09 0.020014973851305764 9.325470625271523e-06 0.2850377663254294 5.321601060196683e-05']
['59907.056798850346 0.30504558018587036 5.2391344657730524e-05 0.03604224228295968 1.6784343004876984e-05 2.5494671197550004e-06 1.1872494025671325e-09 0.0200234679349776 9.324635002709436e-06 0.28502211225089275 5.321467666893094e-05']
['59907.056939130554 0.30515071785115766 5.2409531095529967e-05 0.03595568244408962 1.678718716532776e-05 2.5433442636530417e-06 1.1874505857647712e-09 0.019975379135605344 9.326215091848755e-06 0.28517533871555234 5.3232858626911536e-05']
['59907.05707941076 0.30498237469672757 5.238894026074452e-05 0.0360261655341759 1.678330844399045e-05 2.548329922404874e-06 1.187176222354234e-09 0.0200145364078755 9.324060246661361e-06 0.2849678382888521 5.3212208760088404e-05']
['59907.05721969097 0.30509236666367734 5.2395856042236434e-05 0.036077233449462426 1.6782796936786988e-05 2.5519422384720957e-06 1.1871400406209637e-09 0.02004290747192357 9.32377607599277e-06 0.2850494591917538 5.3218967771970354e-05']
['59907.05735997118 0.30508622609102765 5.239487074158659e-05 0.035995011358314906 1.6784191012632873e-05 2.5461262152554376e-06 1.1872386513151493e-09 0.019997228532397167 9.324550562573817e-06 0.2850889975586305 5.321813340602582e-05']
['59907.05750025139 0.30500098881076754 5.238926481175609e-05 0.03600371368393768 1.6780119647069177e-05 2.5467417788728863e-06 1.1869506611131065e-09 0.020002063157743152 9.322288692816209e-06 0.28499892565302437 5.3212217901422917e-05']
['59907.057640531595 0.30504600492819045 5.239122367577125e-05 0.03604811149276646 1.6781571797614334e-05 2.5498822814229087e-06 1.18705337975194e-09 0.020026728607092478 9.323095443119074e-06 0.28501927632109797 5.321428780775142e-05']
['59907.0577808118 0.30504665659003666 5.24017078290826e-05 0.035958486474995506 1.6784598294425657e-05 2.5435426082660436e-06 1.1872674606087285e-09 0.01997693693055306 9.324776830236476e-06 0.2850697196594836 5.322490438073376e-05']
['59907.05792109201 0.30509953204603135 5.239551362988663e-05 0.03600989382304824 1.67807848753958e-05 2.5471789342899715e-06 1.1869977163915364e-09 0.020005496568360134 9.32265826410878e-06 0.2850940354776712 5.321843482900443e-05']
['59907.05806137222 0.30502356783575324 5.2393916150857554e-05 0.03594649684093991 1.6781543721066815e-05 2.5426945151434606e-06 1.1870513937424632e-09 0.019970276022744392 9.323079845037119e-06 0.28505329181300887 5.321693590784826e-05']
['59907.05820165243 0.30507081380604933 5.2401488246024084e-05 0.03602828846243315 1.6780150343414606e-05 2.548480088860861e-06 1.1869528324353776e-09 0.02001571581246286 9.322305746341447e-06 0.28505509799358647 5.322425532430182e-05']
['59907.058341932636 0.3050728463348148 5.239373978904131e-05 0.035998124645504254 1.677959454993893e-05 2.5463464352756373e-06 1.186913518089159e-09 0.01999895813639125 9.321996972188295e-06 0.28507388819842355 5.321657257500955e-05']
['59907.058482212844 0.3051093722580984 5.2404673731933485e-05 0.03594289885461588 1.6779872305629547e-05 2.5424400096729513e-06 1.1869331652852182e-09 0.019968277141453265 9.322151280905303e-06 0.28514109511664515 5.322736451727141e-05']
['59907.05862249305 0.3051058453059491 5.239459945834613e-05 0.03595840590474435 1.6780373309830604e-05 2.5435369090866043e-06 1.186968604083044e-09 0.019976892169302415 9.322429616572557e-06 0.28512895313664666 5.3217494739572934e-05']
['59907.05876277327 0.3050022949661889 5.2390310072048636e-05 0.03599956021323275 1.6782998687576376e-05 2.5464479809201415e-06 1.187154311570032e-09 0.019999755674018196 9.323888159764652e-06 0.28500253929217073 5.321352722627209e-05']
['59907.058903053476 0.3050182179988443 5.239189559455552e-05 0.03595177588834605 1.678325743565819e-05 2.543067931361018e-06 1.1871726142528037e-09 0.019973208826858914 9.324031908698995e-06 0.2850450091719854 5.321511340799006e-05']
['59907.059043333684 0.3050711014259522 5.239518239770548e-05 0.03598148858429264 1.6777768537517625e-05 2.5451696746643454e-06 1.186784354132271e-09 0.01998971588016258 9.320982520843124e-06 0.2850813855457896 5.321781519042932e-05']
['59907.05918361389 0.30511448477956693 5.239576093468528e-05 0.036043429785692936 1.678100098765193e-05 2.5495511183905263e-06 1.18701300320657e-09 0.020024127658718294 9.322778326473294e-06 0.2850903571208486 5.3218699341953594e-05']
['59907.0593238941 0.304995602176076 5.2397424585880634e-05 0.036019690990374206 1.6782942984633178e-05 2.54787194211585e-06 1.1871503713928077e-09 0.02001093943909678 9.323857213685098e-06 0.28498466273697926 5.322052627111306e-05']
['59907.05946417431 0.3050960763479025 5.239683252428108e-05 0.03598472646301588 1.6793062139182875e-05 2.545398707732761e-06 1.1878661551556945e-09 0.019991514701675487 9.329478966212708e-06 0.285104561646227 5.3220928555959684e-05']
['59907.05960445452 0.30499620946953343 5.238816218821428e-05 0.035968650830217705 1.6780435306478806e-05 2.544261589322468e-06 1.1869729894488293e-09 0.01998258379456539 9.322464059154893e-06 0.285013625674968 5.321116305431483e-05']
['59907.059744734725 0.3050215234413646 5.238867019166258e-05 0.035988350119572736 1.6792520869430887e-05 2.5456550290008016e-06 1.1878278681527724e-09 0.019993527844207076 9.329178260794938e-06 0.2850279955971575 5.321283991174014e-05']
['59907.05988501493 0.30497807426495477 5.238827740431285e-05 0.0359896779945268 1.678153949687306e-05 2.5457489569398e-06 1.1870510949418781e-09 0.01999426555251489 9.32307749826281e-06 0.2849838087124399 5.321138396461655e-05']
['59907.06002529514 0.30505571061250847 5.239511776053504e-05 0.03601636912611065 1.678415302135708e-05 2.5476369682857053e-06 1.1872359639821109e-09 0.020009093958950362 9.32452945630949e-06 0.2850466166535581 5.321837290562272e-05']
['59907.06016557535 0.3050114061779757 5.239221791722655e-05 0.03598767558749284 1.677822400120687e-05 2.545607315616451e-06 1.1868165715978452e-09 0.01999315310416269 9.321235556226039e-06 0.285018253073813 5.321494085856722e-05']
['59907.06030585556 0.30491185132110904 5.239044598914654e-05 0.036039543133620885 1.6778482399322305e-05 2.549276193995262e-06 1.1868348495255596e-09 0.020021968407567158 9.321379110734614e-06 0.2848898829135419 5.321322147237207e-05']
['59907.060446135765 0.30502818690684613 5.239112836516248e-05 0.03597507328832826 1.6777632962624817e-05 2.5447158853025105e-06 1.186774764170338e-09 0.019986151826849034 9.320907201458231e-06 0.2850420350799971 5.321381063627307e-05']
['59907.06058641597 0.3050040425891239 5.238997397627327e-05 0.03603099772936827 1.6782852352103373e-05 2.5486717302941407e-06 1.187143960452753e-09 0.020017220960760147 9.32380686227965e-06 0.28498682162836375 5.321318208526609e-05']
['59907.06072669618 0.3050589677984086 5.2400041653582296e-05 0.036035811336230544 1.6783717513105132e-05 2.5490122233280216e-06 1.1872051580749754e-09 0.020019895186794746 9.32428750728063e-06 0.2850390726116138 5.322317824797378e-05']
['59907.06086697639 0.30510546148871825 5.23958832653684e-05 0.0359458130917288 1.678152085761811e-05 2.542646149780446e-06 1.1870497764842957e-09 0.019969896162071555 9.323067143121174e-06 0.2851355653266467 5.321887037614814e-05']
['59907.0610072566 0.305041441693488 5.239112685067201e-05 0.03600635397672024 1.6782619671521486e-05 2.5469285413829104e-06 1.1871275016684111e-09 0.020003529987066795 9.323677595289713e-06 0.28503791170642123 5.3214294476053265e-05']
['59907.061147536806 0.3049547953344052 5.2386741768122155e-05 0.03599232848154148 1.678366053372614e-05 2.5459364405442387e-06 1.1872011276083883e-09 0.019995738045300818 9.324255852070078e-06 0.2849590572891044 5.3210078559186304e-05']
['59907.061287817014 0.3049805251045423 5.238836699281584e-05 0.03599931843876873 1.677921869896839e-05 2.546430878875225e-06 1.1868869320714577e-09 0.01999962135487152 9.321788166093549e-06 0.2849809037496708 5.3211246281096234e-05']
['59907.06142809722 0.305010450797338 5.2390485499458654e-05 0.03600803032886633 1.6778279890740932e-05 2.547047119040872e-06 1.1868205249736733e-09 0.02000446129381463 9.321266605967184e-06 0.2850059895035234 5.321324066441083e-05']
['59907.06156837743 0.3051137131522873 5.239659959006362e-05 0.03602934004540319 1.678261911399372e-05 2.548554473139862e-06 1.187127462231389e-09 0.02001630002522399 9.323677285552066e-06 0.2850974131270633 5.321968251245562e-05']
['59907.06170865764 0.30507449305797196 5.239355216231285e-05 0.03606730108383551 1.67851874575681e-05 2.551239667322709e-06 1.1873091353760207e-09 0.020037389491019728 9.32510414309339e-06 0.2850371035669522 5.321693222522823e-05']
['59907.06184893785 0.30505658574698 5.239198267215543e-05 0.03601583106946904 1.6789762884806774e-05 2.5475989085638493e-06 1.1876327806479282e-09 0.020008795038593912 9.327646047114874e-06 0.2850477907083861 5.3215832504055525e-05']
['59907.061989218055 0.30506104249021904 5.239272869419927e-05 0.03638064138938493 1.7006063403844454e-05 2.573403959988538e-06 1.2029329125582345e-09 0.020211467438547185 9.447813002135807e-06 0.28484957505167185 5.323776094603621e-05']
['59907.06212949826 0.3050341913759457 5.239634220168027e-05 0.035980356501458144 1.6777054956806113e-05 2.5450895961847455e-06 1.1867338786222567e-09 0.019989086945254524 9.320586087114506e-06 0.28504510443069114 5.321888763515162e-05']
['59907.06226977847 0.30506975795723923 5.2391837682749765e-05 0.03599050967010677 1.6781358404105216e-05 2.5458077859529566e-06 1.1870382852489179e-09 0.019994727594503763 9.322976891169564e-06 0.28507503036273546 5.321487154817608e-05']
['59907.06241005868 0.3050146569889475 5.239072671852996e-05 0.03604912123878419 1.6781918165327115e-05 2.5499537063429036e-06 1.1870778802557695e-09 0.020027289577102328 9.323287869626174e-06 0.28498736741184516 5.321383225060574e-05']
['59907.06255033889 0.30504709210680825 5.2394071800187005e-05 0.03604878826616909 1.6779575293557533e-05 2.5499301533484117e-06 1.1869121559788098e-09 0.020027104592316162 9.321986274198629e-06 0.2850199875144921 5.321689757867795e-05']
['59907.062690619096 0.3049921339386895 5.2407109922590685e-05 0.03602306801316453 1.6784918563104385e-05 2.548110817613634e-06 1.1872901149835448e-09 0.020012815562869185 9.324954757280214e-06 0.28497931837582036 5.3230254101063856e-05']
['59907.062830899304 0.30505741069766207 5.239361021319524e-05 0.036040167122904324 1.678342789338507e-05 2.5493203322081045e-06 1.187184671670502e-09 0.02002231506828018 9.324126607436148e-06 0.2850350956293819 5.3216818095069675e-05']
['59907.06297117951 0.30509684671949244 5.23953620305853e-05 0.036021675512148396 1.6787893985640826e-05 2.5480123183158658e-06 1.1875005830744167e-09 0.020012041951193556 9.326607769800458e-06 0.2850848047682989 5.3218977581383524e-05']
['59907.06311145972 0.30498775565770314 5.239067790763116e-05 0.0360087151577951 1.6782054789871282e-05 2.547095560778288e-06 1.187087544465348e-09 0.02000484175433061 9.323363772150712e-06 0.28498291390337255 5.3213797493216023e-05']
['59907.06325173993 0.30506468179270574 5.2393604632069636e-05 0.036020137357728854 1.6781889668519188e-05 2.547903516147373e-06 1.18707586451895e-09 0.020011187420960475 9.323272038066216e-06 0.28505349437174526 5.321666287768725e-05']
['59907.063392020136 0.3050879651899173 5.239393525432138e-05 0.03591361633682058 1.6778197284731745e-05 2.540368695249263e-06 1.1868146817938106e-09 0.019952009076011433 9.321220713739858e-06 0.2851359561139059 5.321662904608177e-05']
['59907.063532300344 0.30507300204547994 5.239636844941959e-05 0.03601856780463432 1.677812860695989e-05 2.547792492976955e-06 1.1868098238352012e-09 0.020010315447019065 9.321182559422162e-06 0.28506268659846085 5.321901794465404e-05']
['59907.06367258055 0.3049881464852032 5.238810824276661e-05 0.0359951892088264 1.6784672836640218e-05 2.546138795605676e-06 1.1872727333918023e-09 0.01999732733823689 9.324818242577898e-06 0.28499081914696633 5.3211522441224555e-05']
['59907.06381286076 0.30508987427288103 5.240249670789307e-05 0.0360528660240754 1.6782892911549007e-05 2.5502185957161985e-06 1.1871468294466471e-09 0.02002937001337522 9.323829395305004e-06 0.2850605042595058 5.3225515082650895e-05']
['59907.06395314097 0.3050733088627808 5.239546232136589e-05 0.03602735900043684 1.6780718459949908e-05 2.5484143428736926e-06 1.1869930184597534e-09 0.020015199444687132 9.322621366638837e-06 0.2850581094180936 5.3218377850281985e-05']
['59907.06409342118 0.30503871443587716 5.239251712659259e-05 0.035969304387392584 1.6783773253351833e-05 2.54430781903579e-06 1.1872091008908826e-09 0.019982946881884768 9.324318474084351e-06 0.28505576755399237 5.3215775535704156e-05']
['59907.06423370139 0.30508651116986085 5.239586472358294e-05 0.035963693069854474 1.6782587252313177e-05 2.5439108995142576e-06 1.1871252084785208e-09 0.019979829483252484 9.323659584618432e-06 0.28510668168660835 5.321895591029432e-05']
['59907.0643739816 0.30514996063597916 5.2398708338786886e-05 0.03603018470617259 1.678031099171072e-05 2.5486142206672785e-06 1.186964195977789e-09 0.020016769281206995 9.322394995394845e-06 0.28513319135477216 5.322153402546207e-05']
['59907.06451426181 0.3050358321368585 5.240027805017799e-05 0.03599546707526312 1.6782500663073126e-05 2.5461584506354193e-06 1.1871190835427107e-09 0.01999748170847951 9.32361147948507e-06 0.285038350428379 5.3223292558393556e-05']
['59907.06465454202 0.3049259467677361 5.2384192686060214e-05 0.03601672732050988 1.6783469466591543e-05 2.547662305356472e-06 1.1871876123733067e-09 0.02000929295583882 9.324149703661969e-06 0.2849166538118973 5.3207550320105736e-05']
['59907.064794822225 0.3050067026323613 5.239025628394772e-05 0.03602254365309435 1.6780324123821643e-05 2.5480737267260207e-06 1.1869651248846186e-09 0.020012524251719083 9.322402291012023e-06 0.2849941783806422 5.321321394139984e-05']
['59907.06493510243 0.30495341303432083 5.2387993718803816e-05 0.03595467749151846 1.678265153923459e-05 2.5432731778000314e-06 1.187129755847996e-09 0.019974820828621367 9.323695299574774e-06 0.2849785922056995 5.321121291533149e-05']
['59907.06507538264 0.304955308070335 5.2389604106350694e-05 0.03600135993193236 1.6784491300991213e-05 2.546575284976683e-06 1.1872598923714083e-09 0.020000755517740203 9.324717389439563e-06 0.2849545525525948 5.321297748494322e-05']
['59907.06521566285 0.30502148441689264 5.239821995447254e-05 0.03594633671573465 1.6782030139298825e-05 2.542683188602158e-06 1.1870858007940342e-09 0.019970187064297026 9.323350077388236e-06 0.2850512973525956 5.322122049580242e-05']
['59907.06535594306 0.3049979879725497 5.2396024798597635e-05 0.036008964294765765 1.6784162210813572e-05 2.547113183614016e-06 1.1872366140031885e-09 0.02000498016375876 9.324534561563095e-06 0.28499300780879094 5.321926680709763e-05']
['59907.065496223266 0.3050700073143607 5.23949359781456e-05 0.035928680493682176 1.67812615538938e-05 2.541434266372834e-06 1.1870314344978572e-09 0.019960378052045653 9.322923085496554e-06 0.28510962926231503 5.3217912501450685e-05']
['59907.065636503474 0.3049584800664024 5.238839878186971e-05 0.0359946086868996 1.6785405222746725e-05 2.546097732079354e-06 1.1873245391114035e-09 0.01999700482605533 9.32522512374818e-06 0.2849614752403471 5.321187978766388e-05']
['59907.06577678368 0.3049859671634569 5.238769797821118e-05 0.036018592634899385 1.6780947535455163e-05 2.547794249358921e-06 1.187009222237088e-09 0.02001032924161077 9.322748630808424e-06 0.2849756379218461 5.3210755881583874e-05']
['59907.06591706389 0.30506192875431865 5.2394664539926336e-05 0.0360180840275253 1.677929433310819e-05 2.547758272746619e-06 1.1868922820924425e-09 0.020010046681958497 9.321830185060105e-06 0.28505188207236015 5.321745381217061e-05']
['59907.0660573441 0.30502630997110575 5.23911238134503e-05 0.03605548329675229 1.6787745595614444e-05 2.5504037298868414e-06 1.1874900866272149e-09 0.02003082405375127 9.326525330896914e-06 0.28499548591735446 5.321479051151231e-05']
['59907.06619762431 0.3050511396261113 5.2392767389079435e-05 0.036033602376289005 1.678342147010428e-05 2.548855971375227e-06 1.1871842173163291e-09 0.020018667986827225 9.324123038946821e-06 0.2850324716392841 5.321598768351109e-05']
['59907.066337904515 0.30510213209831205 5.239632197054393e-05 0.03600408557117093 1.678177553523381e-05 2.5467680845135283e-06 1.1870677912404882e-09 0.020002269761761626 9.32320863068545e-06 0.28509986233655044 5.3219327083421416e-05']
['59907.06647818472 0.3050289989190883 5.239251793903435e-05 0.03602733631899145 1.678068003064409e-05 2.548412738489626e-06 1.1869903001424287e-09 0.02001518684388414 9.322600017024494e-06 0.28501381207520415 5.321547525926515e-05']
['59907.06661846493 0.30499421000177135 5.238994317592493e-05 0.03599814163616398 1.678098977744929e-05 2.546347637118963e-06 1.1870122102469419e-09 0.019998967575646655 9.32277209858294e-06 0.2849952424261247 5.321297046377659e-05']
['59907.06675874514 0.30510570374119284 5.240660425962719e-05 0.03605368415901698 1.6786735092691888e-05 2.5502764669251183e-06 1.1874186081671556e-09 0.020029824532787212 9.325963940384383e-06 0.2850758792084056 5.322993305878305e-05']
['59907.06689902535 0.3050609823516364 5.240941440543321e-05 0.03596656665177682 1.678138203515623e-05 2.5441141638552887e-06 1.187039956803842e-09 0.019981425917653787 9.32299001953124e-06 0.28507955643398264 5.3232178813427404e-05']
['59907.067039305555 0.30502560795901773 5.2392243267999565e-05 0.0360351348501404 1.6778788355915e-05 2.5489643717257197e-06 1.1868564915273814e-09 0.02001951936118911 9.321549086619445e-06 0.2850060885978286 5.321502073688877e-05']
['59907.06717958576 0.3050726450453314 5.239402557901807e-05 0.03595403905619056 1.6779838716822613e-05 2.5432280177385737e-06 1.1869307893631488e-09 0.01997446614232809 9.322132620457007e-06 0.28509817890300326 5.3216877707811724e-05']
['59907.06731986597 0.3049827653983857 5.238847586728506e-05 0.035961212785802485 1.6785275030682557e-05 2.5437354553066372e-06 1.1873153299067086e-09 0.019978451547668048 9.325152794823643e-06 0.28500431385071767 5.321194300477963e-05']
['59907.06746014618 0.30509277907756926 5.2398516791724136e-05 0.035994232046492575 1.6779796785059684e-05 2.546071090220445e-06 1.1869278232976632e-09 0.019996795581384764 9.322109325033157e-06 0.2850959834961845 5.322129540175123e-05']
['59907.06760042639 0.30490962116569326 5.238704191757437e-05 0.03602366073616873 1.677776777400228e-05 2.5481527441896347e-06 1.186784300124608e-09 0.02001314485342707 9.320982096667932e-06 0.28489647631226617 5.320980048938446e-05']
['59907.067740706596 0.3050701531953137 5.239440091796033e-05 0.035993225508966505 1.6781065495429776e-05 2.5459998922548086e-06 1.187017566198442e-09 0.01999623639387028 9.322814164127653e-06 0.28507391680144345 5.321736663431235e-05']
['59907.067880986804 0.3048959441532768 5.238954007351085e-05 0.0360086110038613 1.6778104089788175e-05 2.5470881933945517e-06 1.1868080896000591e-09 0.020004783891034054 9.321168938771207e-06 0.28489116026224276 5.321229274800244e-05']
['59907.06802126701 0.3050649504848766 5.239389017046885e-05 0.035989823772599475 1.6783922985084746e-05 2.5457592686290718e-06 1.1872196922444074e-09 0.019994346540333042 9.324401658380413e-06 0.28507060394454353 5.321714191387921e-05']
['59907.06816154722 0.3051334879386648 5.239866567778109e-05 0.03595147977880665 1.677901178707119e-05 2.543046985895733e-06 1.1868722960486918e-09 0.01997304432155925 9.32167321503955e-06 0.2851604436171055 5.322136560010331e-05']
['59907.06830182743 0.3050267180290351 5.238992590673261e-05 0.036016494133617835 1.6780428891043288e-05 2.5476458107580127e-06 1.186972535649596e-09 0.020009163407565464 9.322460495024049e-06 0.2850175546214696 5.32128988704263e-05']
['59907.06844210764 0.30497903180425023 5.23940217941408e-05 0.03601563753022316 1.6782018607372204e-05 2.5475852184626654e-06 1.1870849850770897e-09 0.020008687516790646 9.323343670762335e-06 0.2849703442874596 5.3217086137518324e-05']
['59907.068582387845 0.3051099020213005 5.239799467048439e-05 0.03599301709568409 1.6786649255558965e-05 2.545985150030763e-06 1.187412536432042e-09 0.01999612060871338 9.325916253088314e-06 0.28511378141258714 5.322144830280108e-05']
['59907.06872266805 0.30506567504773807 5.239378261898548e-05 0.03596739731754148 1.6779714984059933e-05 2.5441729214386234e-06 1.18692203706057e-09 0.019981887398634154 9.322063880033297e-06 0.2850837876491039 5.321662646306064e-05']
['59907.06886294826 0.30505476736500914 5.239376080305158e-05 0.03600086338368186 1.6784769203924948e-05 2.546540161372882e-06 1.1872795499827877e-09 0.02000047965760103 9.324871779958304e-06 0.2850542877074081 5.321709692194837e-05']
['59907.06900322847 0.30506231078328083 5.239331604352912e-05 0.03605418969552658 1.678321303084311e-05 2.5503122263181922e-06 1.1871694732546627e-09 0.020030105386403655 9.324007239357282e-06 0.2850322053968772 5.3216507561439174e-05']
['59907.06914350868 0.3050595126122757 5.239348340203494e-05 0.036018122474582304 1.6780630229478304e-05 2.5477609923195834e-06 1.186986777430559e-09 0.02001006804143461 9.322572349710168e-06 0.2850494445708411 5.3216420945182804e-05']
['59907.069283788886 0.3050792005578148 5.2398087933030475e-05 0.03604245394232637 1.677858382264402e-05 2.5494820915925388e-06 1.186842023758002e-09 0.020023585523514652 9.321435457024454e-06 0.28505561503430016 5.3220755143243375e-05']
['59907.069424069094 0.30506881325660173 5.239175935526745e-05 0.03602000042456757 1.678106719529788e-05 2.547893830107599e-06 1.1870176864395137e-09 0.020011111346981986 9.322815108498823e-06 0.28505770190961977 5.3214766088817006e-05']
['59907.06956434931 0.30507719716278925 5.240483582697462e-05 0.0360227412749842 1.6782278197547833e-05 2.5480877056151907e-06 1.1871033473258138e-09 0.020012634041657887 9.323487887526573e-06 0.2850645631211314 5.322775821355824e-05']
['59907.06970462952 0.3050878801316795 5.239510592290069e-05 0.036011852120880344 1.6778775048260747e-05 2.5473174555255383e-06 1.186855550203401e-09 0.02000658451160019 9.321541693478192e-06 0.2850812956200793 5.321783783859727e-05']
['59907.069844909725 0.305054170103379 5.239834243305086e-05 0.035968095586498716 1.6780269962292513e-05 2.54422231386358e-06 1.1869612937401358e-09 0.01998227532583262 9.322372201273618e-06 0.28507189477754635 5.322116978412197e-05']
['59907.06998518993 0.30499943671249474 5.238814488399906e-05 0.03599891932274077 1.6780585818234588e-05 2.5464026471913505e-06 1.1869836359776852e-09 0.019999399623744873 9.322547676796993e-06 0.2850000370887499 5.321116066741102e-05']
['59907.07012547014 0.30510260146996526 5.240132351903305e-05 0.03605896844877359 1.6781147567181904e-05 2.5506502539631157e-06 1.1870233715873484e-09 0.020032760249318663 9.322859759545502e-06 0.2850698412206466 5.32241901830598e-05']
['59907.07026575035 0.30507571301135705 5.2394833755446106e-05 0.036027739150083185 1.678399054745448e-05 2.5484412329605062e-06 1.1872244713044564e-09 0.020015410638935104 9.324439193030266e-06 0.28506030237242197 5.3218077478666526e-05']
['59907.07040603056 0.3051169622634422 5.2396844998167606e-05 0.036044582947936984 1.677994677609956e-05 2.5496326879333386e-06 1.1869384329934036e-09 0.020024768304409437 9.322192653388644e-06 0.2850921939590328 5.321966405031974e-05']
['59907.070546310766 0.30501851104264643 5.239341577283509e-05 0.03594032050836414 1.6783494088285976e-05 2.5422576289836325e-06 1.1871893540019183e-09 0.019966844726868965 9.324163382381098e-06 0.2850516663157775 5.3216633105886184e-05']
['59907.070686590974 0.3049688065798124 5.2388591830125794e-05 0.035953292660324904 1.6784194230973384e-05 2.5431752210312304e-06 1.187238878966172e-09 0.01997405147795828 9.32455235054077e-06 0.2849947551018541 5.321195195143191e-05']
['59907.07082687118 0.30506002514119723 5.236565773754446e-05 0.03596785748752208 1.6781194305599155e-05 2.5442054718062125e-06 1.1870266776540762e-09 0.019982143048623377 9.322885725332864e-06 0.28507788209257384 5.318908072652944e-05']
['59907.07096715139 0.30509785911557663 5.236688837408132e-05 0.035997270219615816 1.6772474400958846e-05 2.5462859970073484e-06 1.1864098705755007e-09 0.01999848345534212 9.318041333866025e-06 0.2850993756602345 5.318944342896558e-05']
['59907.0711074316 0.304988162261947 5.236093488124914e-05 0.03598897960945929 1.6773005710343382e-05 2.5456995563017226e-06 1.1864474530265496e-09 0.01999387756081072 9.318336505746324e-06 0.2849942847011363 5.3183633731372076e-05']
['59907.07124771181 0.30504083279118455 5.236206657857151e-05 0.03596517379847877 1.676915420742354e-05 2.544015639638673e-06 1.1861750149252046e-09 0.019980652110265982 9.316196781901965e-06 0.28506018068091854 5.3184373070084e-05']
['59907.071387992015 0.30504863625496664 5.2365500566134344e-05 0.03606331357085429 1.6776713839972047e-05 2.5509576084775514e-06 1.1867097495421173e-09 0.020035174206030158 9.320396577762248e-06 0.28501346204893646 5.318848975021361e-05']
['59907.07152827222 0.3050551022883432 5.236332355267292e-05 0.03603736501406162 1.677403297956842e-05 2.549122123553261e-06 1.1865201174599054e-09 0.020020758341145344 9.318907210871343e-06 0.28503434394719784 5.3186085446164774e-05']
['59907.07166855243 0.3050813042939716 5.236690385938615e-05 0.03605607133408817 1.677337653311589e-05 2.5504453250196094e-06 1.1864736833719966e-09 0.020031150741160093 9.318542518397717e-06 0.28505015355281155 5.3189546477530506e-05']
['59907.07180883264 0.30501405042368346 5.2367190165645304e-05 0.03605911671971699 1.677686215155105e-05 2.5506607419869194e-06 1.1867202404403023e-09 0.020032842622064992 9.320478973083916e-06 0.28498120780161845 5.319016764527592e-05']
['59907.07194911285 0.3050494287510773 5.236238657411422e-05 0.03603533197701532 1.677221422462212e-05 2.548978315599746e-06 1.1863914668643603e-09 0.02001962887611962 9.317896791456732e-06 0.2850297998749577 5.3184985929801814e-05']
['59907.072089393056 0.30499254443803314 5.236101789692345e-05 0.03642571349898181 1.6860555984079042e-05 2.5765921595609485e-06 1.192640368063918e-09 0.02023650749943434 9.366975546710579e-06 0.2847560369385988 5.319225908057122e-05']
['59907.072229673264 0.3050835302808335 5.237902954990192e-05 0.035988621843063937 1.6773388152521087e-05 2.5456742495060367e-06 1.1864745052767844e-09 0.019993678801702188 9.318548973622826e-06 0.28508985147913135 5.32014858022152e-05']
['59907.07236995347 0.3049759067769221 5.236147703843189e-05 0.03600957584462467 1.6775701449701473e-05 2.547156441917568e-06 1.1866381375794951e-09 0.02000531991368037 9.319834138723041e-06 0.2849705868632417 5.3184429920979104e-05']
['59907.07251023368 0.3050811923825214 5.236646987389798e-05 0.035999086817232004 1.6772437211349584e-05 2.546414495003004e-06 1.1864072399487691e-09 0.019999492676240002 9.31802067297199e-06 0.2850816997062814 5.318902778126141e-05']
['59907.07265051389 0.3050979054522068 5.236832825173524e-05 0.035922836343887266 1.677312521134044e-05 2.5410208773381543e-06 1.1864559059929436e-09 0.019957131302159592 9.318402895189134e-06 0.2851407741500472 5.319092437999702e-05']
['59907.0727907941 0.30504867010670267 5.236342090921444e-05 0.03602224506466143 1.6771535450751208e-05 2.5480526059148876e-06 1.1863434534346728e-09 0.02001235836925635 9.317519694861783e-06 0.2850363117374463 5.3185938203435805e-05']
['59907.072931074305 0.3050361528163772 5.236588962439979e-05 0.03600467558624858 1.6772917330533987e-05 2.5468098195429092e-06 1.1864412014338674e-09 0.020002597547915876 9.318287405852214e-06 0.2850335552684613 5.318850323456081e-05']
['59907.07307135451 0.30505133080591484 5.2363851889932355e-05 0.03599455467039252 1.6773933524422522e-05 2.546093911193083e-06 1.186513082447423e-09 0.01999697481688473 9.318851958012513e-06 0.2850543559890301 5.3186595929483266e-05']
['59907.07321163472 0.30498542507188814 5.236002184101328e-05 0.03596342459876409 1.6774682478822082e-05 2.5438919090693187e-06 1.1865660601340188e-09 0.019979680332646715 9.319268043790045e-06 0.28500574473924145 5.3182898041225564e-05']
['59907.07335191493 0.3049850259429767 5.2361024183127176e-05 0.0359942676196122 1.67736781769284e-05 2.5460736065039247e-06 1.186495020307025e-09 0.019996815344229 9.318710098293556e-06 0.28498821059874774 5.3183787110378546e-05']
['59907.07349219514 0.3050163561113892 5.236536905855612e-05 0.03597797312771208 1.6775596196823838e-05 2.5449210069790025e-06 1.186630692461384e-09 0.019987762848728934 9.319775664902132e-06 0.2850285932626603 5.318825147608153e-05']
['59907.073632475345 0.305093321494612 5.2366572564913104e-05 0.03601046913563702 1.677153607527979e-05 2.547219629331006e-06 1.1863434976110333e-09 0.020005816186465013 9.317520041822106e-06 0.28508750530814697 5.318904118261643e-05']
['59907.07377275555 0.30501821779946825 5.236353697550453e-05 0.03603388166904013 1.6779062914598685e-05 2.548875727296077e-06 1.18687591258146e-09 0.020018823149466743 9.321701619221492e-06 0.2849993946500015 5.318678525407252e-05']
['59907.07391303576 0.30498774611257984 5.2360402044318024e-05 0.036005419356364164 1.6773270462970135e-05 2.5468624305164292e-06 1.1864661804439916e-09 0.02000301075353565 9.318483590538964e-06 0.2849847353590442 5.3183134908256084e-05']
['59907.07405331597 0.30493584498812853 5.235787613769823e-05 0.035978049211167 1.676944832208072e-05 2.5449263887825305e-06 1.1861958192814386e-09 0.019987805117315 9.316360178933733e-06 0.2849480398708135 5.318027604887147e-05']
['59907.07419359618 0.3049295051802079 5.236552480412716e-05 0.035992603781638086 1.6773714586788823e-05 2.545955914042554e-06 1.1864975957778088e-09 0.019995890989798936 9.31873032599379e-06 0.28493361419040897 5.3188221655741165e-05']
['59907.074333876386 0.3050302342983571 5.2363607151437714e-05 0.03601025501158514 1.6774000867886098e-05 2.547204483152654e-06 1.1865178460230288e-09 0.02000569722865841 9.318889371047832e-06 0.28502453706969866 5.318636153206879e-05']
['59907.074474156594 0.30495680098340644 5.2358556719655154e-05 0.036036080928988815 1.677274274244428e-05 2.549031293114733e-06 1.1864288518527645e-09 0.020020044960549342 9.318190412469046e-06 0.2849367560228571 5.318126676122313e-05']
['59907.0746144368 0.3049157298037787 5.2358062426388985e-05 0.03594046043808299 1.6777469891092018e-05 2.5422675269864947e-06 1.1867632292189945e-09 0.01996692246560166 9.320816606162233e-06 0.284948807338177 5.3181240332013274e-05']
['59907.07475471701 0.30508631910882045 5.23689400046321e-05 0.036014850268135154 1.6773425821513674e-05 2.547529531061414e-06 1.1864771698129495e-09 0.02000825014896397 9.31856990084093e-06 0.2850780689598565 5.319155592954219e-05']
['59907.074894997226 0.3049873060057924 5.236661166459565e-05 0.03602675284375029 1.677550830228809e-05 2.5483714660590467e-06 1.1866244751947904e-09 0.02001486269097238 9.319726834604493e-06 0.28497244331482 5.318946630209982e-05']
['59907.075035277434 0.30493554807647716 5.235746536856528e-05 0.03600346763979212 1.6772612160000436e-05 2.5467243748097824e-06 1.186419615034356e-09 0.02000192646655118 9.31811786666691e-06 0.28493362160992597 5.318017958222414e-05']
['59907.07517555764 0.3049004047497036 5.236008994632872e-05 0.03595970518175584 1.6773289945818528e-05 2.543628814134971e-06 1.1864675585736036e-09 0.019977613989864355 9.318494414343626e-06 0.28492279075983923 5.318282953489582e-05']
['59907.07531583785 0.3050359291906275 5.236286833645378e-05 0.03599761468043643 1.677312169347759e-05 2.546310362626149e-06 1.1864556571550493e-09 0.01999867482246468 9.318400940820884e-06 0.2850372543681628 5.318554856833466e-05']
['59907.07545611806 0.30507117116981936 5.236766421481382e-05 0.03601306709399872 1.6775968695442282e-05 2.5474033972933223e-06 1.1866570413486818e-09 0.020007259496665958 9.319982608579045e-06 0.28506391167315337 5.319054738522351e-05']
['59907.07559639827 0.30499020338406835 5.236025231166379e-05 0.0359733574502248 1.677538281922322e-05 2.5445945145844163e-06 1.1866155990836578e-09 0.01998519858345822 9.319657121790677e-06 0.28500500480061014 5.318319312535528e-05']
['59907.075736678475 0.30527723571186666 5.242297725634178e-05 0.03603774355726594 1.677554023434222e-05 2.549148900007546e-06 1.1866267339255719e-09 0.020020968642925522 9.319744574634567e-06 0.28525626706894114 5.3244963924819765e-05']
['59907.07587695868 0.3050745453121375 5.236451535245837e-05 0.03597492156792462 1.6772302482955453e-05 2.544705153279307e-06 1.186397709864369e-09 0.019986067537735897 9.31794582386414e-06 0.2850884777744016 5.3187090374209375e-05']
['59907.07601723889 0.30510352745683045 5.237797683746251e-05 0.036017619759365335 1.677253861047919e-05 2.54772543249214e-06 1.18641441246997e-09 0.020009788755202963 9.318077005821771e-06 0.28509373870162746 5.320036669678306e-05']
['59907.0761575191 0.3050164483401376 5.236954806341959e-05 0.03600440905553687 1.677614782335111e-05 2.546790966351685e-06 1.1866697120562977e-09 0.02000244947529826 9.32008212408395e-06 0.2850139988648393 5.319241952728306e-05']
['59907.07629779931 0.30503062029701594 5.236339952666731e-05 0.035918546116421576 1.6780973501629158e-05 2.54071740582342e-06 1.1870110589681743e-09 0.019954747842456433 9.322763056460643e-06 0.2850758724545595 5.3186835974668486e-05']
['59907.076438079515 0.3050655920972869 5.236500965005862e-05 0.03600455810348854 1.6774140224497408e-05 2.5468015093375814e-06 1.1865277034868255e-09 0.020002532279715858 9.318966791387449e-06 0.285063059817571 5.318775590029828e-05']
['59907.07657835972 0.30505165469258333 5.2366088029667e-05 0.03601519628625874 1.6775364042056633e-05 2.5475540068368666e-06 1.1866142708708226e-09 0.020008442381254855 9.319646690031462e-06 0.28504321231132845 5.3188936725204876e-05']
['59907.07671863993 0.3049309456310746 5.2363009160322627e-05 0.03599169699161578 1.6773487793956883e-05 2.5458917717694887e-06 1.1864815534665817e-09 0.01999538721756432 9.318604329976047e-06 0.28493555841351026 5.318572284911318e-05']
['59907.07685892014 0.3050597864084422 5.236639699886216e-05 0.03600598614810884 1.6770980843476213e-05 2.5469025228310373e-06 1.1863042229949883e-09 0.020003325637838243 9.317211579709006e-06 0.285056460770604 5.318881429646184e-05']
['59907.07699920035 0.30507645984828546 5.2364960975731196e-05 0.03603242856982705 1.677090277692444e-05 2.548772941552715e-06 1.1862987009160528e-09 0.020018015872126142 9.317168209402467e-06 0.2850584439761593 5.31873928805704e-05']
['59907.077139480556 0.30500432951253087 5.23623555825801e-05 0.035990001980687185 1.677152617797195e-05 2.5457718742726532e-06 1.186342797519715e-09 0.019994445544826215 9.317514543317751e-06 0.28500988396770466 5.318488844983597e-05']
['59907.077279760764 0.30535032899676146 5.24541612571189e-05 0.03602217082864563 1.6775548905748045e-05 2.5480473547909454e-06 1.186627347302061e-09 0.02001231712702535 9.319749392082246e-06 0.2853380118697361 5.327566763466274e-05']
['59907.07742004097 0.30503186388693626 5.2362365864236806e-05 0.03596078622623439 1.6780681824462902e-05 2.543705282389399e-06 1.1869904270291536e-09 0.019978214570130215 9.322601013590502e-06 0.28505364931680605 5.318578991195666e-05']
['59907.07756032118 0.3049846667279096 5.236147763831434e-05 0.036046447410485 1.6771433248997366e-05 2.549764571680328e-06 1.186336224139421e-09 0.02002580411693611 9.317462916109649e-06 0.2849588626109735 5.3184015038926604e-05']
['59907.07770060139 0.305056705913525 5.236458035090371e-05 0.03597077828081106 1.6773182250050992e-05 2.544412075668297e-06 1.1864599406563798e-09 0.0199837657115617 9.318434583361662e-06 0.28507294020196333 5.3187239996174285e-05']
['59907.0778408816 0.3051014121163922 5.236687087368654e-05 0.0360109377860407 1.677324925529521e-05 2.547252779565818e-06 1.1864646803078599e-09 0.020006076547800386 9.318471808497339e-06 0.2850953355685918 5.318950161401326e-05']
['59907.077981161805 0.30495644204419947 5.236578989705488e-05 0.03600573057875832 1.6773110603945914e-05 2.5468844449975092e-06 1.1864548727311458e-09 0.020003183654865732 9.318394779969951e-06 0.2849532583893337 5.318842386100444e-05']
['59907.07812144201 0.3049963970872299 5.236103638750337e-05 0.03599110805983903 1.6774867103363574e-05 2.5458501133679717e-06 1.1865791196488607e-09 0.019995060033243906 9.319370612979762e-06 0.285001337053986 5.318391486338254e-05']
['59907.07826172222 0.30503039071902105 5.2370837317725194e-05 0.03594135010932582 1.6773549716206945e-05 2.5423304583536167e-06 1.1864859335697748e-09 0.019967416727403237 9.31863873122608e-06 0.28506297399161784 5.3193435959361985e-05']
['59907.07840200243 0.3050507935065153 5.2362748566382374e-05 0.036013543690430486 1.6771891979624327e-05 2.5474371095946444e-06 1.1863686726935668e-09 0.02000752427246138 9.317717766457958e-06 0.28504326923405393 5.318531095896258e-05']
['59907.07854228264 0.3049966993024555 5.237280485566187e-05 0.03590202105742756 1.6772710709064704e-05 2.5395484970128495e-06 1.186426585954674e-09 0.019945567254126422 9.318172616147058e-06 0.28505113204832905 5.3195291420891306e-05']
['59907.078682562846 0.3050413958879745 5.23637469784037e-05 0.03597358121815966 1.6773050163968333e-05 2.5446103429279447e-06 1.1864505974772825e-09 0.01998532289897759 9.318361202204629e-06 0.28505607298899693 5.3186406657275076e-05']
['59907.078822843054 0.30503088871237566 5.237082398896219e-05 0.03603250708575473 1.6772855930092487e-05 2.548778495418493e-06 1.1864368582410796e-09 0.02001805949208596 9.318253294495826e-06 0.2850128292202897 5.3193355315708744e-05']
['59907.07896312326 0.3050096558625013 5.236039716744317e-05 0.03603972509067136 1.6774613337080186e-05 2.5492890648237125e-06 1.1865611693562425e-09 0.020022069494817423 9.319229631711214e-06 0.28498758636768384 5.318326082952187e-05']
['59907.07910340347 0.30504688529306756 5.2372489887846475e-05 0.03602967114838956 1.6774166793006763e-05 2.5485778938851746e-06 1.1865295828244231e-09 0.02001648397132753 9.318981551670424e-06 0.28503040132174 5.319512303033949e-05']
['59907.07924368368 0.30503806896191077 5.2363495861561406e-05 0.03613116797194346 1.678192337235905e-05 2.5557573255192768e-06 1.1870782485779345e-09 0.020072871095524143 9.323290762421693e-06 0.28496519786638663 5.318702331851648e-05']
['59907.079383963886 0.3049775620297094 5.2360637198190825e-05 0.03599351673836208 1.6774069170004074e-05 2.546020492520533e-06 1.186522677409562e-09 0.019996398187978937 9.318927316668931e-06 0.28498116384173044 5.318344417329441e-05']
['59907.079524244095 0.3051426899185525 5.238202703432967e-05 0.036022583119783916 1.6770540044992426e-05 2.5480765184232348e-06 1.1862730428804985e-09 0.020012546177657728 9.316966691662459e-06 0.28513014374089474 5.3204159842617496e-05']
['59907.0796645243 0.30491878438160935 5.2353815516082126e-05 0.03601446765466945 1.6775371189160386e-05 2.547502466695032e-06 1.1866147764249964e-09 0.020008037585927473 9.31965066064466e-06 0.2849107467956819 5.3176854810419314e-05']
['59907.07980480451 0.3050294822768991 5.236323849999633e-05 0.036249588950667 1.6899683333286994e-05 2.564133896243558e-06 1.1954080618579305e-09 0.020138660528148337 9.388712962937219e-06 0.28489082174875074 5.3198277014466576e-05']
['59907.07994508472 0.30495015950292625 5.23606603531363e-05 0.036032596359634836 1.6780429171620055e-05 2.548784810253741e-06 1.1869725554963423e-09 0.020018109088686016 9.32246065090003e-06 0.28493205041424025 5.318408620258582e-05']
['59907.08008536493 0.305051756193394 5.23645299377156e-05 0.03600715799139449 1.678013941791266e-05 2.546985413787233e-06 1.186952059614204e-09 0.020003976661885827 9.322299676618144e-06 0.28504777953150817 5.3187867666025004e-05']
['59907.08022564514 0.3050487562312109 5.236455046260591e-05 0.03589701457836303 1.6771383897726846e-05 2.5391943610614687e-06 1.1863327332511316e-09 0.019942785876868346 9.317435498737137e-06 0.2851059703543426 5.318703553897254e-05']
['59907.08036592535 0.3050015745617153 5.2362943591902196e-05 0.03598755057108809 1.677758984522881e-05 2.545598472514769e-06 1.1867717142384679e-09 0.019993083650604492 9.32088324734934e-06 0.2850084909111108 5.318605762903891e-05']
['59907.08050620556 0.3051124229989972 5.237545004085735e-05 0.036019647074038846 1.6774032078367353e-05 2.5478688356705807e-06 1.1865200537129701e-09 0.02001091504113269 9.318906710204085e-06 0.28510150795786454 5.319802429842513e-05']
['59907.08064648577 0.30495831290129366 5.236532452671151e-05 0.03597933026189179 1.6773741288886882e-05 2.5450170045848424e-06 1.1864994845648741e-09 0.019988516812162106 9.318745160492712e-06 0.28496979608913153 5.3188027075217034e-05']
['59907.080786765975 0.3050317514059866 5.2364056847650755e-05 0.036035118285824286 1.677321614895493e-05 2.5489632000400363e-06 1.1864623385133252e-09 0.020019510158791273 9.318453416086072e-06 0.2850122412471953 5.318672788968848e-05']
['59907.08092704618 0.3050507425712772 5.236283127257736e-05 0.0360524612180807 1.6774705501871765e-05 2.55018996154951e-06 1.1865676886816464e-09 0.020029145121155945 9.319280834373202e-06 0.28502159745012123 5.318566624712265e-05']
['59907.08106732639 0.30503451597153053 5.237274348055444e-05 0.03601118183449517 1.6772009559876943e-05 2.547270042462655e-06 1.1863769897950842e-09 0.020006212130275095 9.317783088820525e-06 0.28502830384125544 5.319516276288914e-05']
['59907.0812076066 0.305032819639974 5.236310582472126e-05 0.03599246370378333 1.677007218578619e-05 2.54594600556122e-06 1.186239948611457e-09 0.019995813168768518 9.316706769881217e-06 0.28503700647120545 5.3185485582505574e-05']
['59907.08134788681 0.30506591718829335 5.2365284426527406e-05 0.03597296026282851 1.6773213977641375e-05 2.544566419323326e-06 1.1864621849243094e-09 0.019984977923793616 9.318452209800763e-06 0.28508093926449973 5.31879362699612e-05']
['59907.081488167016 0.3050870726707842 5.237229357010043e-05 0.03600610323957799 1.677138275185678e-05 2.546910805358197e-06 1.1863326521974047e-09 0.02000339068865444 9.317434862142654e-06 0.2850836819821298 5.319465881273283e-05']
['59907.081628447224 0.30507779451963185 5.2373555981739714e-05 0.0361364071293092 1.6833337868876306e-05 2.556127920093674e-06 1.1907150802522911e-09 0.02007578173850511 9.351854371597947e-06 0.28500201278112675 5.320194118977238e-05']
['59907.08176872743 0.3049922981839695 5.2364385679012865e-05 0.03604050473474573 1.6770952731934073e-05 2.5493442133607294e-06 1.1863022345101485e-09 0.020022502630414295 9.317195962185597e-06 0.2849697955535552 5.318683134139667e-05']
['59907.08190900764 0.3050482947132481 5.2370007333344674e-05 0.0360175911101869 1.6773499595453972e-05 2.547723405977312e-06 1.1864823882517361e-09 0.020009772838992725 9.318610886363318e-06 0.2850385218742554 5.319261393225589e-05']
['59907.08204928785 0.3049807071517371 5.2358968613996386e-05 0.03599393187687286 1.6771286453409742e-05 2.5460498575632254e-06 1.1863258404756901e-09 0.019996628820484922 9.317381363005412e-06 0.28498407833125217 5.318153053255556e-05']
['59907.08218956806 0.3051144505758555 5.2369027389012526e-05 0.03605464809687688 1.6776816881958733e-05 2.550344651580779e-06 1.186717038271685e-09 0.02003036005382049 9.320453823310407e-06 0.28508409052203504 5.319197203661099e-05']
['59907.082329848265 0.3050952071996702 5.236986327596563e-05 0.03623096085692026 1.691120341870517e-05 2.562816228154592e-06 1.196222941208661e-09 0.020128311587177924 9.39511301039176e-06 0.2849668956124923 5.320592756471187e-05']
['59907.08247012847 0.3050558313096216 5.2373363889118505e-05 0.03606913443882831 1.6778393283703826e-05 2.5513693506602853e-06 1.1868285458850317e-09 0.020038408021571284 9.321329602057681e-06 0.2850174232880503 5.319639490240123e-05']
['59907.08261040868 0.30505031219524403 5.2362987789069274e-05 0.03600294396735228 1.677890877119687e-05 2.546687332562066e-06 1.1868650091661961e-09 0.020001635537417933 9.321615983998261e-06 0.28504867665782607 5.3186229559457864e-05']
['59907.08275068889 0.3050585361271346 5.2363386885176246e-05 0.03599832189912055 1.6773526012528087e-05 2.5463603881147825e-06 1.1864842568774817e-09 0.019999067721733637 9.318625562515604e-06 0.285059468405401 5.318609845120261e-05']
['59907.0828909691 0.30495533057811985 5.2360510979341176e-05 0.03597973187778468 1.677242045331329e-05 2.5450454130979882e-06 1.1864060545601857e-09 0.019988739932102602 9.318011362951827e-06 0.28496659064601726 5.3183159418915754e-05']
['59907.083031249305 0.30541325471293834 5.244320752998153e-05 0.03598592653413521 1.6770342277731976e-05 2.54548359539974e-06 1.1862590537084617e-09 0.01999218140785289 9.316856820962208e-06 0.2854210733050854 5.326437681091389e-05']
['59907.08317152951 0.3049966020265775 5.2371870214120155e-05 0.03600531990551487 1.6776905126633573e-05 2.5468553958078693e-06 1.1867232803055526e-09 0.02000295550306382 9.320502848129762e-06 0.2849936465235137 5.319477947192413e-05']
['59907.08331180972 0.30504958681611277 5.237161408237569e-05 0.03605308641054335 1.6776948818612244e-05 2.5502341848698716e-06 1.1867263708808322e-09 0.020029492450301858 9.320527121451247e-06 0.28502009436581094 5.31945315555556e-05']
['59907.08345208993 0.304982778075778 5.2360224749173394e-05 0.03601113816946967 1.6772286118176557e-05 2.5472669537939223e-06 1.186396552293056e-09 0.020006187871927594 9.31793673232031e-06 0.2849765902038504 5.3182864540484036e-05']
['59907.08359237014 0.3049887481978426 5.23599990796823e-05 0.036028584813312 1.6779983340102524e-05 2.5485010513974206e-06 1.1869410193675419e-09 0.020015880451840003 9.322212966723625e-06 0.2849728677460026 5.318339175176101e-05']
['59907.083732650346 0.3049993131802021 5.235964074203105e-05 0.03611766622547351 1.678170136516175e-05 2.554802272323247e-06 1.1870625447811114e-09 0.02006537012526306 9.323167425089862e-06 0.2849339430549391 5.3183206272946866e-05']
['59907.083872930554 0.3049820030209296 5.235991289216636e-05 0.0359632511740802 1.6772078094129224e-05 2.5438796417823434e-06 1.1863818376017605e-09 0.01997958398560011 9.317821163405125e-06 0.28500241903532947 5.3182537259033154e-05']
['59907.08401321076 0.30501635364316176 5.2374201166640356e-05 0.036029062278817046 1.6773868510137107e-05 2.548534825173102e-06 1.1865084836274696e-09 0.020016145710453914 9.318815838965059e-06 0.28500020793270786 5.319677881680674e-05']
['59907.08415349097 0.3050317576911236 5.236261475656981e-05 0.035921733657541026 1.6773324298927214e-05 2.540942878234739e-06 1.1864699885589625e-09 0.0199565186986339 9.318513499404007e-06 0.2850752389924897 5.318531863196382e-05']
['59907.08429377118 0.3049229969039695 5.235718326159621e-05 0.03603386303851932 1.6771335191449526e-05 2.5488744094563078e-06 1.1863292879867782e-09 0.0200188127991774 9.317408439694181e-06 0.2849041841047921 5.3179777539215556e-05']
['59907.08443405139 0.3050180578346958 5.2362442077983633e-05 0.035962508699149735 1.6772480177347043e-05 2.5438271224244296e-06 1.1864102791713828e-09 0.019979171499527628 9.318044542970579e-06 0.2850388863351682 5.31850664611315e-05']
['59907.084574331595 0.3051313808316237 5.237042478450617e-05 0.03595357694445695 1.6772378342142268e-05 2.543195330020056e-06 1.1864030758041735e-09 0.019974209413587192 9.317987967856816e-06 0.28515717141803654 5.3192915805384674e-05']
['59907.0847146118 0.3051007150635746 5.236711174472795e-05 0.036050097288875524 1.6777680455015293e-05 2.5500227477636775e-06 1.1867781235697616e-09 0.020027831827153068 9.320933586119607e-06 0.28507288323642155 5.319017010126661e-05']
['59907.08485489201 0.30497229193974135 5.236145398471991e-05 0.03602398168364154 1.6773745625975574e-05 2.548175446579311e-06 1.1864997913511425e-09 0.020013323157578634 9.31874756998643e-06 0.2849589687821627 5.318421682855797e-05']
['59907.08499517222 0.30505472846596293 5.23665626962575e-05 0.03601503306531944 1.6772556790030753e-05 2.5475424613171752e-06 1.1864156984101899e-09 0.020008351702955243 9.31808710557264e-06 0.2850463767630077 5.31891308062851e-05']
['59907.08513545243 0.30501595893429023 5.236437193690577e-05 0.036282750540743924 1.6889404596235584e-05 2.566479598902015e-06 1.1946809899421645e-09 0.020157083633746624 9.383002553464213e-06 0.2848588753005436 5.31983851753502e-05']
['59907.085275732636 0.3049927754671431 5.236185478819075e-05 0.035998325338396905 1.6770363191737217e-05 2.5463606313938194e-06 1.1862605330717125e-09 0.019999069632442724 9.316868439854011e-06 0.28499370583470035 5.318428221180693e-05']
['59907.085416012844 0.3050664316138275 5.236787966120988e-05 0.03591030931861325 1.6776933689536822e-05 2.540134771562778e-06 1.1867253007176599e-09 0.01995017184367403 9.320518716409346e-06 0.2851162597701535 5.319085343697633e-05']
['59907.08555629305 0.3050452013482914 5.2363634893941416e-05 0.03598171176800154 1.677323923419993e-05 2.54518546168234e-06 1.1864639714603716e-09 0.019989839871111963 9.318466241222184e-06 0.2850553614771794 5.318631470965813e-05']
['59907.08569657327 0.3050137770968758 5.236260364834608e-05 0.03594542431243386 1.677475945543126e-05 2.542618649270863e-06 1.1865715051152868e-09 0.019969680173574367 9.319310808572921e-06 0.28504409692330146 5.318544739663821e-05']
['59907.085836853475 0.3051152589795134 5.2370831184067905e-05 0.036028430185137475 1.6777224184687343e-05 2.548490113691502e-06 1.1867458490461708e-09 0.0200157945472986 9.32068010260408e-06 0.2850994644322148 5.319378757416339e-05']
['59907.08597713368 0.305079068987441 5.237343440740936e-05 0.03600392186373155 1.6773048949297442e-05 2.546756504580996e-06 1.186450511556893e-09 0.020002178813184196 9.318360527387468e-06 0.28507689017425686 5.3195944155034816e-05']
['59907.08611741389 0.30504075176840706 5.2364241157566134e-05 0.036056780740863756 1.678137205848903e-05 2.5504955052840526e-06 1.1870392510989974e-09 0.020031544856035418 9.32298447693835e-06 0.28500920691237164 5.318770338682595e-05']
['59907.0862576941 0.3050741748864601 5.236639912700205e-05 0.035954851913520394 1.6774440748480216e-05 2.5432855156328276e-06 1.1865489612101062e-09 0.01997491772973355 9.319133749155675e-06 0.28509925715672657 5.3189153136359796e-05']
['59907.08639797431 0.3050743195179994 5.237292127636556e-05 0.036017388015434776 1.677618784753787e-05 2.5477090399623265e-06 1.1866725431883713e-09 0.020009660008574875 9.32010435974326e-06 0.2850646595094245 5.3195744456647e-05']
['59907.086538254516 0.30501112900640637 5.2362953158501004e-05 0.03592379241697444 1.677127179381738e-05 2.5410885056749457e-06 1.186324803521651e-09 0.01995766245387469 9.317373218787434e-06 0.28505346655253166 5.3185452025695405e-05']
['59907.086678534724 0.3049722958453313 5.235906479993678e-05 0.03599731618358859 1.6772648911076875e-05 2.5462892482933356e-06 1.1864222146412356e-09 0.01999850899088255 9.318138283931597e-06 0.28497378685444874 5.318175784799192e-05']
['59907.08681881493 0.3049074149244043 5.2357279541074906e-05 0.03598392693847678 1.6773623879130625e-05 2.5453421529405297e-06 1.1864911795235071e-09 0.01999107052137599 9.318679932850346e-06 0.2849163444030283 5.318009511681198e-05']
['59907.08695909514 0.30499487058839336 5.2365049130439054e-05 0.0359489072096598 1.6776688230399716e-05 2.5428650138529917e-06 1.1867079380354387e-09 0.019971615116477666 9.320382350222064e-06 0.2850232554719157 5.318804280651458e-05']
['59907.08709937535 0.3050370737356437 5.2364608984669295e-05 0.03602626898316316 1.6772962160941572e-05 2.548337239923843e-06 1.18644437253652e-09 0.020014593879535088 9.318312311634207e-06 0.2850224798561086 5.318724676512652e-05']
['59907.08723965556 0.3051016121961191 5.237256207563723e-05 0.03601121012709218 1.6774750935253378e-05 2.547272043754507e-06 1.1865709024359864e-09 0.020006227848384545 9.319306075140764e-06 0.2850953843477345 5.319525095427815e-05']
['59907.087379935765 0.30502214544080863 5.2363700381209775e-05 0.036061552352239866 1.6773138557874945e-05 2.5508330277449513e-06 1.1864568500671388e-09 0.02003419575124437 9.318410309930525e-06 0.28498794968956426 5.318636938462079e-05']
['59907.08752021597 0.305051025054841 5.2364043293115114e-05 0.0360225582513029 1.677536220664536e-05 2.5480747593380435e-06 1.186614141042033e-09 0.020012532361834943 9.319645670358535e-06 0.2850384926930061 5.318692344387168e-05']
['59907.08766049618 0.30506343028962446 5.236597611129812e-05 0.03607730927403554 1.6773212925634173e-05 2.5519476019634816e-06 1.1864621105100221e-09 0.02004294959668641 9.318451625352317e-06 0.28502048069293806 5.318861715426597e-05']
['59907.08780077639 0.304965194176385 5.236020855902635e-05 0.03600526593777432 1.677407942450434e-05 2.546851578371124e-06 1.186523402767076e-09 0.02000292552098573 9.318933013613522e-06 0.2849622686553993 5.318302316394727e-05']
['59907.0879410566 0.30500964700181776 5.236478269827524e-05 0.03595248482063558 1.67710234231435e-05 2.5431180780624386e-06 1.1863072348903322e-09 0.019973602678130878 9.317235235079722e-06 0.2850360443236869 5.318722910119869e-05']
['59907.088081336806 0.3049066826058149 5.235636392151389e-05 0.035966203810353564 1.6772492359456545e-05 2.5440884980748137e-06 1.186411140879358e-09 0.019981224339085314 9.318051310809191e-06 0.28492545826672955 5.317908351328437e-05']
['59907.088221617014 0.3050280970878901 5.236271344637991e-05 0.036045298012007954 1.6775393832637385e-05 2.5496832683695704e-06 1.1866163781233489e-09 0.020025165562226638 9.319663240354102e-06 0.28500293152566347 5.318561725110749e-05']
['59907.08836189722 0.30499833860416836 5.2362207702357854e-05 0.03602250192763457 1.677563831696536e-05 2.548070775253498e-06 1.1866336718519293e-09 0.020012501070908097 9.319799064980755e-06 0.2849858375332603 5.318514313298856e-05']
['59907.08850217743 0.3049824635288634 5.236245675347988e-05 0.03601518503464719 1.677123345718134e-05 2.5475532109481575e-06 1.1863220917593721e-09 0.02000843613035955 9.3173519206563e-06 0.2849740273985038 5.318495956634176e-05']
['59907.08864245764 0.304977343141867 5.236062292139189e-05 0.03599668333942411 1.6773534207148085e-05 2.546244483725787e-06 1.1864848365282726e-09 0.01999815741079117 9.31863011508227e-06 0.2849791857310758 5.3183378041808404e-05']
['59907.08878273785 0.30499394191814505 5.236247259832225e-05 0.036017640150356245 1.6774746898582383e-05 2.5477268748596944e-06 1.1865706168999231e-09 0.020009800083531246 9.319303832545769e-06 0.2849841418346138 5.318531715176051e-05']
['59907.088923018055 0.30498832724357783 5.2361493361135164e-05 0.037827867084625655 2.2590312456084825e-05 2.675774236951723e-06 1.5979377303894732e-09 0.02101548171368092 1.2550173586713792e-05 0.28397284552989693 5.384452473617768e-05']
['59907.08906329826 0.30502664482217945 5.237514256853554e-05 0.03598419301315001 1.6774022033632337e-05 2.54536097387363e-06 1.1865193431933125e-09 0.019991218340638897 9.318901129795742e-06 0.28503542648154057 5.3197720602872944e-05']
['59907.08920357847 0.30508933285919804 5.23753713888961e-05 0.03610050835197813 1.6782881579820567e-05 2.553588601043365e-06 1.187146027890827e-09 0.020055837973321184 9.323823099900314e-06 0.28503349488587687 5.319880830735808e-05']
['59907.08934385868 0.30509029023948325 5.236653005560971e-05 0.036045194770673736 1.6773074694438243e-05 2.5496759655390495e-06 1.1864523326530793e-09 0.020025108205929853 9.318374830243468e-06 0.2850651820335534 5.3189149077062606e-05']
['59907.08948413889 0.3051031102267508 5.2367329967880177e-05 0.036067526801851296 1.6773684902848727e-05 2.5512556336062455e-06 1.1864954960685659e-09 0.020037514889917386 9.31871383491596e-06 0.2850655953368334 5.318999600960593e-05']
['59907.089624419095 0.3049838029303027 5.236164302065106e-05 0.03598032646310703 1.677375320638569e-05 2.5450874714060515e-06 1.1865003275554716e-09 0.019989070257281687 9.318751781325382e-06 0.284994732673021 5.3184403677996145e-05']
['59907.0897646993 0.30499052371433766 5.236019491879064e-05 0.03607095056395636 1.6772806659360658e-05 2.5514978152342417e-06 1.186433373049737e-09 0.020039416979975754 9.318225921867031e-06 0.2849511067343619 5.318288583994577e-05']
['59907.08990497951 0.3049867781075137 5.235999844352234e-05 0.03606302071201129 1.6773229668999514e-05 2.550936892952e-06 1.186463294860848e-09 0.020035011506672938 9.31846092722195e-06 0.28495176660084076 5.3182733580155734e-05']
['59907.09004525972 0.3050971412409198 5.236870024898762e-05 0.036004567006248135 1.6772836483120334e-05 2.546802139079002e-06 1.1864354826491923e-09 0.02000253722569341 9.318242490622408e-06 0.2850946040152264 5.3191262523861536e-05']
['59907.09018553993 0.3050876991298559 5.236632569090517e-05 0.03607241706291903 1.6773835898570448e-05 2.5516015488159963e-06 1.1865061768310093e-09 0.02004023170162168 9.318797721428027e-06 0.2850474674282342 5.318902196260847e-05']
['59907.090325820136 0.3050000254462206 5.2371402767157907e-05 0.035950658431812894 1.6778343625411092e-05 2.5429888874805994e-06 1.1868250332793632e-09 0.01997258801767383 9.321302014117273e-06 0.2850274374285468 5.319445928889833e-05']
['59907.090466100344 0.3051045917921412 5.236792206345536e-05 0.03599763407233036 1.6784915841811047e-05 2.546311734322049e-06 1.1872899224914175e-09 0.01999868559573909 9.324953245450581e-06 0.28510590619640214 5.319167241471144e-05']
['59907.09060638055 0.30497004446206255 5.235938680199145e-05 0.03601050171774885 1.677408208144474e-05 2.5472219340439632e-06 1.1865235907071638e-09 0.02000583428763825 9.31893448969152e-06 0.2849642101744243 5.318221437946824e-05']
['59907.09074666076 0.30510983215341153 5.2367762022347846e-05 0.03598513870360959 1.677178805580554e-05 2.545427867789753e-06 1.186361321587138e-09 0.01999174372422755 9.317660031003077e-06 0.28511808842918396 5.3190236770319134e-05']
['59907.09088694097 0.30503460844540947 5.236231721146673e-05 0.03598792607697435 1.677463750651343e-05 2.5456250341227505e-06 1.186562878993919e-09 0.019993292264985748 9.319243059174126e-06 0.2850413161804237 5.318515352004006e-05']
['59907.091027221184 0.30508028255680325 5.236722695017215e-05 0.03596179190500035 1.677290348082335e-05 2.5437764196101837e-06 1.1864402217672414e-09 0.01997877328055575 9.318279711568526e-06 0.2851015092762475 5.318981852980762e-05']
['59907.09116750139 0.30512023531593074 5.2368598942229937e-05 0.03600509868794277 1.6776016272975585e-05 2.546839747865603e-06 1.1866604067707285e-09 0.02000283260441265 9.32000904054199e-06 0.2851174027115181 5.3191472283514684e-05']
['59907.0913077816 0.3049625422897223 5.2358528704230626e-05 0.03592089168357693 1.6777943322646178e-05 2.540883320759921e-06 1.1867967176510212e-09 0.019956050935320515 9.321079623692321e-06 0.2850064913544018 5.31817454905624e-05']
['59907.09144806181 0.305100342946095 5.236734859830049e-05 0.0359771248523911 1.6776189694981687e-05 2.544861003774364e-06 1.1866726738682896e-09 0.019987291584661723 9.320105386100937e-06 0.2851130513614333 5.3190258164667253e-05']
['59907.09158834202 0.30512046881434335 5.236815922077535e-05 0.03607807280800497 1.677880499823417e-05 2.5520016109436832e-06 1.1868576687306526e-09 0.020043373782224982 9.321558332352317e-06 0.28507709503211837 5.3191310849761214e-05']
['59907.091728622225 0.30502654778791843 5.2361576537022566e-05 0.03600566031691328 1.677201966186805e-05 2.5468794749886433e-06 1.1863777043647817e-09 0.02000314462050738 9.317788701037804e-06 0.28502340316741104 5.318416948415816e-05']
['59907.09186890243 0.3051171367025991 5.237053495711169e-05 0.036073150788264216 1.677536812650054e-05 2.551653449267356e-06 1.186614559786128e-09 0.020040639326813454 9.319648959166966e-06 0.28507649737578566 5.319331526062424e-05']
['59907.09200918264 0.3050735200084359 5.23639322468063e-05 0.03599301599607285 1.67726765016664e-05 2.5459850722491792e-06 1.186424166276216e-09 0.01999611999781825 9.318153612036888e-06 0.28507740001061765 5.318655269037125e-05']
['59907.09214946285 0.3050376056342885 5.236966688468971e-05 0.0359858937055462 1.6771374647424516e-05 2.545481273252089e-06 1.1863320789260912e-09 0.01999216316974789 9.317430359680287e-06 0.2850454424645406 5.31920719479967e-05']
['59907.09228974306 0.30503236551792684 5.236721009641522e-05 0.036097550007167696 1.677824339224925e-05 2.553379340954498e-06 1.1868179432335104e-09 0.020054194448426498 9.32124632902736e-06 0.28497817106950035 5.319032173627547e-05']
['59907.092430023265 0.3050298359118701 5.236319955300008e-05 0.035956811828641216 1.67730717616875e-05 2.5434241512681695e-06 1.1864521252034004e-09 0.01997600657146734 9.318373200937501e-06 0.28505382934040274 5.318586980147319e-05']
['59907.09257030347 0.3050222753837507 5.2364426285430805e-05 0.03605603299149356 1.6788572260882208e-05 2.5504426128358485e-06 1.1875485612332803e-09 0.020031129439718645 9.326984589379005e-06 0.2849911459440321 5.318858694995412e-05']
['59907.09271058368 0.3050500953613656 5.238932814424345e-05 0.036026044665967955 1.677835738863211e-05 2.548321372728093e-06 1.1868260068281e-09 0.020014469258871084 9.321309660351171e-06 0.28503562610249455 5.321210874593653e-05']
['59907.09285086389 0.305063184202432 5.236587006468507e-05 0.03601539017591823 1.677139827446038e-05 2.5475677217247435e-06 1.1863337501970015e-09 0.020008550097732353 9.317443485811321e-06 0.28505463410469967 5.318833613437036e-05']
['59907.0929911441 0.304959823519129 5.235889469449538e-05 0.03608654877473273 1.6786550656699022e-05 2.5526011629446638e-06 1.1874055619894006e-09 0.020048082652629296 9.325861475943901e-06 0.2849117408664997 5.3182944125892e-05']
['59907.093131424306 0.30506628050812357 5.236771571132696e-05 0.03595826878719425 1.6771252926217407e-05 2.5435272100039896e-06 1.186323468911962e-09 0.019976815992885692 9.317362736787448e-06 0.28508946451523787 5.319013909731047e-05']
['59907.093271704514 0.3049786757249083 5.2356938974810596e-05 0.0359607855900239 1.677967356301934e-05 2.5437052373867126e-06 1.1869191071212994e-09 0.019978214216679942 9.322040868344077e-06 0.28500046150822833 5.318034885898284e-05']
['59907.09341198472 0.3051165002812569 5.2369510973641945e-05 0.03601674381214692 1.677471891008626e-05 2.547663471901163e-06 1.1865686371188084e-09 0.0200093021178594 9.319288283381255e-06 0.2851071981633975 5.319224392453444e-05']
['59907.09355226493 0.30488850956893576 5.235501197949821e-05 0.036012714630376 1.6771608247215137e-05 2.5473784655920706e-06 1.1863486027311501e-09 0.02000706368354222 9.317560137341743e-06 0.28488144588539355 5.31776664238511e-05']
['59907.09369254514 0.30527034154491645 5.2376154566504955e-05 0.036009079389891216 1.6773998912436898e-05 2.5471213249287458e-06 1.1865177077032928e-09 0.02000504410549512 9.318888284687166e-06 0.2852652974394213 5.3198714702865684e-05']
['59907.09383282535 0.3049879481618643 5.236157226817234e-05 0.03599290010327891 1.6779306514262054e-05 2.545976874510946e-06 1.1868931437328204e-09 0.019996055612932728 9.321836952367808e-06 0.2849918925489316 5.318487467844184e-05']
['59907.093973105555 0.30498273555566047 5.236979634653346e-05 0.03599672274079305 1.677453705404963e-05 2.546247270802512e-06 1.186555773435626e-09 0.01999817930044058 9.319187252249795e-06 0.2849845562552199 5.319250718305995e-05']
['59907.09411338576 0.30502449129511117 5.236442389989753e-05 0.035911311479614544 1.6773553299783835e-05 2.5402056599526136e-06 1.1864861870559863e-09 0.019950728599785857 9.31864072210213e-06 0.2850737626953253 5.3187122081155885e-05']
['59907.09425366597 0.30511533343886876 5.236651269200771e-05 0.036053383740704034 1.6773755394369645e-05 2.5502552166764512e-06 1.186500482323677e-09 0.020029657633724465 9.318752996872025e-06 0.2850856758051443 5.318919823553384e-05']
['59907.09439394618 0.3051675507822344 5.2371171691805884e-05 0.03600565119236532 1.6783035248834045e-05 2.546878829558905e-06 1.1871568977499803e-09 0.020003139551314067 9.32390847157447e-06 0.28516441123092034 5.319468858409557e-05']
['59907.09453422639 0.3049700675868436 5.2364386139951084e-05 0.03593724089099457 1.6776497333673376e-05 2.5420397906159887e-06 1.1866944348542756e-09 0.019965133828330317 9.320276296485208e-06 0.28500493375851327 5.318737149038976e-05']
['59907.094674506596 0.3050416951158139 5.237075829981614e-05 0.03599238674821655 1.6772769482539855e-05 2.545940562068397e-06 1.1864307433276043e-09 0.01999577041567586 9.318205268077698e-06 0.28504592470013806 5.31932822292044e-05']
['59907.094814786804 0.3050886042073056 5.236993407124787e-05 0.03597942327808257 1.677332116410622e-05 2.54502358413442e-06 1.1864697668157374e-09 0.019988568487823648 9.318511757836789e-06 0.28510003571948195 5.319252443725332e-05']
['59907.09495506701 0.3050705417862387 5.237079037166399e-05 0.03599207143999723 1.677003839470483e-05 2.5459182585743066e-06 1.1862375583813985e-09 0.0199955952444429 9.316687997058238e-06 0.2850749465417958 5.319304803625473e-05']
['59907.09509534722 0.3050340400917593 5.2364970668120435e-05 0.036045599402167894 1.6774563616547407e-05 2.5497045873623502e-06 1.1865576523479914e-09 0.020025333001204387 9.319202009193004e-06 0.28500870709055487 5.318775873414164e-05']
['59907.09523562743 0.30517081852634753 5.238207327943288e-05 0.03595954025461978 0.000585840840443061 2.543617147926547e-06 4.1439762498499333e-08 0.019977522363677655 0.0003254671335794783 0.28519329616266986 0.00032965548174039794']
['59907.09537590764 0.3050441655819522 5.236226503116596e-05 0.035943056828042434 1.6770309466325054e-05 2.5424511840070462e-06 1.1862567327761944e-09 0.01996836490446802 9.316838592402808e-06 0.28507580067748417 5.318468088228933e-05']
['59907.095516187845 0.3050836265068141 5.236670811062925e-05 0.035977358779119964 1.6775861209299585e-05 2.544877550705573e-06 1.186649438259382e-09 0.019987421543955535 9.319922894055325e-06 0.28509620496285853 5.318959560943267e-05']
['59907.09565646805 0.304980785245475 5.2360540952993676e-05 0.03602411775029703 1.6787708906741483e-05 2.548185071326338e-06 1.1874874914203311e-09 0.020013398750165015 9.326504948189712e-06 0.28496738649531 5.318467771302873e-05']
['59907.09579674826 0.30498356662485493 5.236204740699046e-05 0.0359775845404893 1.6774075378956206e-05 2.5448935200557455e-06 1.1865231166030833e-09 0.019987546966938496 9.318930766086781e-06 0.28499601965791643 5.318483316957039e-05']
['59907.09593702847 0.30498558351389443 5.2359893918498446e-05 0.03597152965522131 1.6775099627370513e-05 2.5444652245356323e-06 1.1865955673577905e-09 0.019984183141789614 9.319499792983617e-06 0.2850014003721048 5.3182812708128104e-05']
['59907.09607730868 0.3050817762682996 5.2364987497277074e-05 0.035979559648638394 1.6770890093741707e-05 2.545033230377999e-06 1.1862978037643967e-09 0.019988644249243553 9.317161163189836e-06 0.285093132019056 5.318741775768812e-05']
['59907.096217588885 0.3050479472314978 5.236178434247495e-05 0.035993828289108715 1.677241268720419e-05 2.5460425302278e-06 1.1864055052203406e-09 0.019996571271727062 9.318007048446773e-06 0.28505137595977076 5.318441232995584e-05']
['59907.0963578691 0.3051173809874646 5.236804352700616e-05 0.03596462144573596 1.677561093869872e-05 2.5439765686745176e-06 1.1866317352357207e-09 0.019980345247631086 9.319783854832622e-06 0.2851370357398335 5.3190886004532874e-05']
['59907.09649814931 0.305072100986175 5.236957163242419e-05 0.036025622601358345 1.6774847851489455e-05 2.548291517764127e-06 1.1865777578573363e-09 0.02001423477853241 9.31935991749414e-06 0.28505786620764256 5.319231619543752e-05']
['59907.09663842952 0.30513548756085584 5.236953701602019e-05 0.03600942962292786 1.6774076838176364e-05 2.547146098848308e-06 1.1865232198217951e-09 0.020005238679404364 9.318931576764647e-06 0.2851302488814515 5.319220707025353e-05']
['59907.096778709725 0.3050200955370943 5.236188001629903e-05 0.036036372744212564 1.6772151787678395e-05 2.5490519348193237e-06 1.186387050354038e-09 0.02002020708011809 9.317862104265775e-06 0.2849998884569762 5.318448112969993e-05']
['59907.09691898993 0.30500551009422844 5.23620487502107e-05 0.03598900343767279 1.6772230094226687e-05 2.5457012418030395e-06 1.1863925894092545e-09 0.019993890798707108 9.317905607903715e-06 0.2850116192955213 5.3184654875605286e-05']
['59907.09705927014 0.3050270124048641 5.2363698261457674e-05 0.03599200976378405 1.677766670306437e-05 2.545913895874663e-06 1.186777150818221e-09 0.019995560979880027 9.320925946146874e-06 0.28503145142498404 5.318680810229675e-05']
['59907.09719955035 0.30502295915321737 5.236204218979091e-05 0.03627001598052348 1.6857613201515886e-05 2.565578813032155e-06 1.1924322087788642e-09 0.020150008878068598 9.365340667508825e-06 0.28487295027514875 5.319297950015526e-05']
['59907.09733983056 0.30511536212557144 5.236733846239606e-05 0.036052600424328674 1.6772387823419603e-05 2.5501998083772764e-06 1.1864037464673535e-09 0.020029222457960374 9.317993235233113e-06 0.2850861396676111 5.318987813077781e-05']
['59907.097480110766 0.30504347679142674 5.236543682709187e-05 0.035968528256337604 1.677496053177765e-05 2.5442529189940627e-06 1.1865857283572722e-09 0.019982515697965338 9.319422517654251e-06 0.2850609610934614 5.3188256318051175e-05']
['59907.097620390974 0.3049878228107573 5.236239041135447e-05 0.03595076041034655 1.677413776257258e-05 2.5429961009862524e-06 1.1865275293412673e-09 0.019972644672414747 9.318965423651432e-06 0.28501517813834254 5.3185176940180586e-05']
['59907.09776067118 0.3050318905509497 5.2362992084932534e-05 0.03598783438790168 1.677099259369441e-05 2.5456185484475758e-06 1.186305054152903e-09 0.01999324132661204 9.317218107608005e-06 0.28503864922433764 5.3185463176994575e-05']
['59907.09790095139 0.30509423635996746 5.236745179172222e-05 0.0360003117860415 1.6771487561614477e-05 2.5465011438212998e-06 1.1863400659711922e-09 0.020000173214467502 9.31749308978582e-06 0.28509406314549995 5.318990209275213e-05']
['59907.0980412316 0.3051405640332487 5.237007202603364e-05 0.03602976178004082 1.6772629101733097e-05 2.548584304763085e-06 1.1864208134167994e-09 0.020016534322244896 9.31812727874061e-06 0.2851240297110038 5.319259290535442e-05']
['59907.09818151181 0.30512758529007034 5.236834821641848e-05 0.035922430694163066 1.67742614265256e-05 2.540992183489812e-06 1.1865362767765585e-09 0.019956905941201704 9.319034125847554e-06 0.28517067934886864 5.3191054623449345e-05']
['59907.098321792015 0.304952830933342 5.2358838077155874e-05 0.03598433132707868 1.6769917181917442e-05 2.545370757582717e-06 1.186228984330608e-09 0.019991295181710375 9.316620656620801e-06 0.28496153575163163 5.3181268744259964e-05']
['59907.09846207222 0.3050597960792255 5.2371535293757125e-05 0.03595579560562065 1.677463002195175e-05 2.5433522681939444e-06 1.1865623495694798e-09 0.01997544200312258 9.319238901084304e-06 0.28508435407610294 5.3194228283910004e-05']
['59907.09860235243 0.3050513328785952 5.2366816212683e-05 0.035932156781572994 1.6771834267661355e-05 2.541680163440138e-06 1.1863645904072636e-09 0.019962309323096106 9.31768570425631e-06 0.2850890235554991 5.318931008328855e-05']
['59907.09874263264 0.3050895816666318 5.236658203398533e-05 0.03601079912510873 1.6776202470691204e-05 2.5472429713112686e-06 1.1866735775648767e-09 0.020005999513949293 9.320112483717335e-06 0.28508358215268254 5.318950470375955e-05']
['59907.09888291285 0.305109464151908 5.237632157523818e-05 0.03601797338974521 1.6771272377908723e-05 2.5477504467245774e-06 1.1863248448376617e-09 0.020009985216525115 9.317373543282624e-06 0.28509947893538284 5.3198613811807386e-05']
['59907.099023193055 0.305038222206471 5.236331592478377e-05 0.03593209829168546 1.6773986859160478e-05 2.5416760261269285e-06 1.1865168551083939e-09 0.019962276828714143 9.318881588422489e-06 0.2850759453777568 5.318607344688789e-05']
['59907.09916347326 0.30508734883569333 5.2367620436273885e-05 0.03598903604197647 1.6772763996322926e-05 2.545703548085749e-06 1.1864303552571405e-09 0.01999390891220915 9.318202220179403e-06 0.2850934399234842 5.3190192355111925e-05']
['59907.09930375347 0.30507669906223295 5.236728407286499e-05 0.0360162551536745 1.677284129217633e-05 2.547628906384999e-06 1.186435822820318e-09 0.020009030640930278 9.318245162320183e-06 0.28506766842130266 5.3189868716450536e-05']
['59907.09944403368 0.30508719189113365 5.2368439652511016e-05 0.036023957572575205 1.6774143537785752e-05 2.548173741070248e-06 1.1865279378540335e-09 0.02001330976254178 9.318968632103196e-06 0.28507388212859186 5.319113317090369e-05']
['59907.09958431389 0.30497538041176 5.2363276611314976e-05 0.035960941586244646 1.677731485409178e-05 2.543716271862106e-06 1.1867522625945721e-09 0.019978300881247024 9.320730474495432e-06 0.28499707953051295 5.3186358721492434e-05']
['59907.099724594096 0.30503151974952336 5.236568713244261e-05 0.035977807729262706 1.677459512120297e-05 2.5449093074319813e-06 1.1865598808465085e-09 0.019987670960701504 9.319219511779429e-06 0.28504384878882183 5.31884671819145e-05']
['59907.099864874304 0.3049981788190873 5.2361782159804185e-05 0.03601395487158604 1.6774271402055143e-05 2.547466194711717e-06 1.1865369824009305e-09 0.02000775270643669 9.319039667808413e-06 0.28499042611265063 5.318459110758467e-05']
['59907.10000515451 0.3050520103885047 5.236543109677554e-05 0.03600828212166289 1.678226006482054e-05 2.5470649297378532e-06 1.1871020646977335e-09 0.020004601178701606 9.323477813789188e-06 0.2850474092098031 5.3188961378234914e-05']
['59907.10014543472 0.3051069335727571 5.236655922135906e-05 0.03603169489075802 1.677834895229813e-05 2.548721044374724e-06 1.1868254100795425e-09 0.020017608272643345 9.32130497349896e-06 0.28508932530011377 5.3189691210732573e-05']
['59907.10028571493 0.3050466770518453 5.2363634557980366e-05 0.035964705855067974 1.6771558702916433e-05 2.543982539413377e-06 1.1863450981889096e-09 0.01998039214170443 9.317532612731351e-06 0.28506628491014085 5.3186150811193586e-05']
['59907.10042599514 0.3051208205607263 5.23687491989028e-05 0.035971216755857266 1.677571470419584e-05 2.544443091433198e-06 1.1866390751431825e-09 0.019984009308809593 9.319841502331021e-06 0.2851368112519167 5.3191590860644076e-05']
['59907.100566275345 0.3050643607026571 5.2364379279664074e-05 0.03605862942844419 1.677494778581437e-05 2.5506262731803457e-06 1.1865848267648007e-09 0.020032571904691217 9.31941543656354e-06 0.28503178879796587 5.318721389040576e-05']
['59907.10070655555 0.3050084402320276 5.2364006104567185e-05 0.035966656612805806 1.677166791680444e-05 2.544120527296377e-06 1.1863528234911901e-09 0.019981475896003225 9.317593287113579e-06 0.28502696433602437 5.318652724124046e-05']
['59907.10084683576 0.30507901618617106 5.236647635587036e-05 0.03606004958575473 1.6777230843185654e-05 2.550726728760764e-06 1.1867463200385795e-09 0.020033360880974852 9.320683801769808e-06 0.2850456553051962 5.3189500772826427e-05']
['59907.10098711597 0.3050410182820033 5.2363226449721164e-05 0.036119183376968844 1.6798068027262098e-05 2.554909588838759e-06 1.1882202493034158e-09 0.02006621298720491 9.332260015145609e-06 0.2849748052947984 5.318833106250904e-05']
['59907.10112739618 0.3050473717286025 5.2364665794500575e-05 0.036036546724291865 1.677392541682883e-05 2.5490642413924885e-06 1.1865125089524842e-09 0.020020303735717702 9.318847453793795e-06 0.2850270679928848 5.3187396454769415e-05']
['59907.101267676386 0.3051117752297656 5.23666511239785e-05 0.03599083459347754 0.0006475536569653186 2.5458307695798825e-06 4.5805051299228436e-08 0.01999490810748752 0.0003597520316473992 0.28511686712227813 0.0003635433817639537']
['59907.101407956594 0.30506868623459377 5.237661632211563e-05 0.03600831462737203 1.677591265635771e-05 2.5470672290464256e-06 1.186653077394319e-09 0.020004619237428904 9.319951475754281e-06 0.28506406699716486 5.3199355568131874e-05']
['59907.1015482368 0.30506530419481104 5.2366154186051235e-05 0.036052742377504374 1.677380338849394e-05 2.550209849510432e-06 1.1865038772135086e-09 0.020029301320835764 9.318779660274412e-06 0.2850360028739753 5.318884994614976e-05']
['59907.10168851702 0.3050348020174872 5.237724077502626e-05 0.03602580108154971 1.677493918086165e-05 2.5483041426551044e-06 1.1865842180889072e-09 0.02001433393419428 9.31941065603425e-06 0.28502046808329295 5.319987562185534e-05']
['59907.101828797226 0.3050291733386486 5.2362339462662554e-05 0.03628539739143331 1.691780797097595e-05 2.566666825289056e-06 1.1966901177156847e-09 0.02015855410635184 9.39878220609775e-06 0.28487061923229673 5.3199170115338906e-05']
['59907.101969077434 0.30507228998692515 5.237232019426609e-05 0.036019146978712044 1.6774554006169105e-05 2.5478334611624572e-06 1.1865569725527861e-09 0.020010637210395577 9.319196670093947e-06 0.28506165277652956 5.319499364702117e-05']
['59907.10210935764 0.30498566187451026 5.237792506752959e-05 0.03600768451210434 1.677425881666615e-05 2.547022657508839e-06 1.1865360921667666e-09 0.0200042691733913 9.319032675925639e-06 0.28498139270111894 5.3200483121816796e-05']
['59907.10224963785 0.305037934024163 5.236399337519837e-05 0.03601670588102544 1.677132159679933e-05 2.547660788823172e-06 1.1863283263619879e-09 0.020009281045014135 9.31740088711074e-06 0.28502865297914887 5.318648100306083e-05']
['59907.10238991806 0.3050434917293383 5.23647674671623e-05 0.03597776110762994 1.6771553121192355e-05 2.544906009626066e-06 1.1863447033626971e-09 0.01998764505979441 9.31752951177353e-06 0.2850558466695439 5.318726565722992e-05']
['59907.102530198266 0.3050419362612684 5.23660396820525e-05 0.03601674636251237 1.6772593609239317e-05 2.5476636523026153e-06 1.1864183028364315e-09 0.020009303534729093 9.318107560688508e-06 0.28503263272653934 5.318861946408138e-05']
['59907.102670478474 0.3051492483550281 5.2368784719902005e-05 0.036057595303533654 1.677604559383323e-05 2.5505531238064407e-06 1.186662480797142e-09 0.02003199739085203 9.32002532990735e-06 0.28511725096417606 5.3191658041365436e-05']
['59907.10281075868 0.3051038971653504 5.2368368784729714e-05 0.03601722159839745 1.6776607491049547e-05 2.5476972683649467e-06 1.1867022268946915e-09 0.02000956755466525 9.320337495027526e-06 0.28509432961068515 5.3191303238355324e-05']
['59907.10295103889 0.3050045393583597 5.236213885056824e-05 0.03600207695245247 1.6775426177851714e-05 2.5466260038033823e-06 1.186618666079236e-09 0.020001153862473597 9.319681209917619e-06 0.2850033854958861 5.3185054694535e-05']
['59907.1030913191 0.3049815892751136 5.236057884202196e-05 0.03594657125656143 1.677454261381284e-05 2.542699778971909e-06 1.1865561667084248e-09 0.01997031736475635 9.319190341007133e-06 0.28501127191035724 5.318343280838046e-05']
['59907.10323159931 0.30506590089816693 5.23772369560389e-05 0.03600524202703752 1.6778564886825187e-05 2.5468498870324775e-06 1.186840684322816e-09 0.020002912237243067 9.321424937125104e-06 0.2850629886609239 5.320022475523487e-05']
['59907.103371879515 0.3050784651407124 5.236559084834872e-05 0.03602369199548383 1.6773657376879213e-05 2.548154955333864e-06 1.1864935490045163e-09 0.020013162219713238 9.318698542710674e-06 0.2850653029209992 5.318828110990786e-05']
['59907.10351215972 0.3050350176200871 5.2363367733985644e-05 0.03600824967344325 1.677612195429036e-05 2.547062634495831e-06 1.186667882194568e-09 0.02000458315191292 9.320067752383531e-06 0.2850304344681742 5.3186332298379326e-05']
['59907.10365243993 0.30503593227387277 5.236508919929397e-05 0.036003387170342065 1.677317300544249e-05 2.5467186827605626e-06 1.1864592867340953e-09 0.020001881761301146 9.31842944746805e-06 0.28503405051257164 5.3187740074357866e-05']
['59907.10379272014 0.3050855749823174 5.236581761067965e-05 0.03602429161048408 1.6775004509912156e-05 2.5481973694188604e-06 1.1865888391739364e-09 0.02001349533915782 9.319446949951198e-06 0.2850720796431596 5.318863549187854e-05']
['59907.10393300035 0.30511202343013366 5.2370775207405174e-05 0.036006999906121176 1.6772386731622886e-05 2.5469742315415985e-06 1.1864036692385337e-09 0.02000388883673399 9.317992628679381e-06 0.2851081345933997 5.319326162638166e-05']
['59907.104073280556 0.3051127575522762 5.2367727907065456e-05 0.03596820838435469 1.6779635218989374e-05 2.5442302926797345e-06 1.1869163948360073e-09 0.01998233799130816 9.322019566105207e-06 0.285130419560968 5.3190967042715915e-05']
['59907.104213560764 0.30501094883423835 5.236665324465437e-05 0.03607193072010237 1.6791497143262736e-05 2.5515671470989705e-06 1.1877554543394239e-09 0.02003996151116798 9.328609524034853e-06 0.28497098732307036 5.3191064359512334e-05']
['59907.10435384097 0.3050069520912303 5.2362446422754745e-05 0.036020948334188334 1.677318173336913e-05 2.5479608809972652e-06 1.1864599041086144e-09 0.020011637963437964 9.318434296316184e-06 0.28499531412779233 5.3185139025019226e-05']
['59907.10449412118 0.3050615179125621 5.237417959697336e-05 0.03599994057898592 1.6773250358464473e-05 2.546474886293386e-06 1.1864647583411227e-09 0.019999966988325513 9.318472421369151e-06 0.2850615509242366 5.319669742309045e-05']
['59907.10463440139 0.30504254703891787 5.236433650744134e-05 0.03607566027683282 1.6780689992843696e-05 2.5518309592719455e-06 1.1869910048239004e-09 0.020042033487129348 9.32260555157983e-06 0.2850005135517885 5.318773084213032e-05']
['59907.1047746816 0.30503823845260325 5.236398444471774e-05 0.03603592860429063 1.677269281943167e-05 2.549020518346435e-06 1.1864253205219953e-09 0.020019960335717017 9.31816267746204e-06 0.28501827811688624 5.318660566919352e-05']
['59907.104914961805 0.3050758924456911 5.2365715973750574e-05 0.03604915081685601 1.677505205478206e-05 2.5499557985634977e-06 1.1865922022855203e-09 0.02002730600936445 9.31947336376781e-06 0.2850485864363267 5.318854005536807e-05']
['59907.10505524201 0.3051506253113032 5.23747459114603e-05 0.0359208885327522 1.677187860334274e-05 2.5408830978846633e-06 1.186367726515196e-09 0.019956049184862334 9.317710335190412e-06 0.2851945761264409 5.319712149337163e-05']
['59907.10519552222 0.30507756982269285 5.237608408952446e-05 0.0359821837857689 1.6775395840497744e-05 2.5452188501094085e-06 1.1866165201504162e-09 0.019990102103204947 9.31966435583208e-06 0.2850874677194879 5.319878126666347e-05']
['59907.10533580243 0.30510192301941874 5.237243141623119e-05 0.036017548582314124 1.677345476015196e-05 2.54772039774568e-06 1.1864792168028738e-09 0.020009749212396736 9.3185859778622e-06 0.285092173807022 5.319499616575463e-05']
['59907.10547608264 0.30510824725919716 5.236758923043347e-05 0.036012543557187894 1.6773401663304312e-05 2.5473663646393963e-06 1.1864754609692001e-09 0.020006968642882164 9.318556479613506e-06 0.285101278616315 5.3190223694501965e-05']
['59907.105616362845 0.3051643004518412 5.2369931498956595e-05 0.03598282675665533 1.6772564622709276e-05 2.5452643309960036e-06 1.1864162524588584e-09 0.019990459309252962 9.318091457060708e-06 0.2851738411425882 5.319244827611861e-05']
['59907.10575664305 0.3050697229613336 5.236528894258115e-05 0.03600019957501908 1.6770705714580473e-05 2.546493206515127e-06 1.1862847616066574e-09 0.0200001108750106 9.317058730322484e-06 0.28506961208632303 5.318769659821987e-05']
['59907.10589692326 0.30507838031952245 5.236466577430075e-05 0.03601417614910361 1.6775878638966357e-05 2.5474818468942578e-06 1.1866506711561037e-09 0.020007875638390897 9.319932577203532e-06 0.28507050468113154 5.3187586567711867e-05']
['59907.10603720347 0.30503969719837404 5.236320613012393e-05 0.03612654881765231 1.6783601636456324e-05 2.555430587191125e-06 1.1871969614787767e-09 0.020070304898695726 9.324223131364625e-06 0.2849693922996783 5.318690151935271e-05']
['59907.10617748368 0.3051034905042709 5.2387588006854984e-05 0.03602203831220902 1.677304265090379e-05 2.5480379811705336e-06 1.1864500660366783e-09 0.020012243506782792 9.318357028279883e-06 0.2850912469974881 5.320987835808751e-05']
['59907.106317763886 0.30511890327392216 5.2368355446529764e-05 0.03601390615485351 1.677276610489777e-05 2.547462748707809e-06 1.1864305044083002e-09 0.020007725641585285 9.318203391609872e-06 0.2851111776323369 5.319091620400511e-05']
['59907.106458044094 0.30512187802372287 5.236812027516473e-05 0.03594746490073165 1.6775517913442782e-05 2.5427629913661555e-06 1.1866251550449141e-09 0.019970813833739803 9.319732174134879e-06 0.28515106418998304 5.31909525102881e-05']
['59907.1065983243 0.3051686271499307 5.237296800949464e-05 0.03598858632851505 1.677022726560165e-05 2.545671737365589e-06 1.1862509182644364e-09 0.01999365907139725 9.316792925334248e-06 0.28517496807853343 5.3195210390946914e-05']
['59907.10673860451 0.3050339553618794 5.2363934705588604e-05 0.03611922111169015 1.678347303191252e-05 2.5549122580242803e-06 1.1871878645681766e-09 0.020066233950938973 9.324151684395844e-06 0.2849677214109404 5.3187606286472115e-05']
['59907.10687888472 0.30508946502573087 5.2367993250387843e-05 0.03593279035981119 1.6775562925149682e-05 2.54172497993278e-06 1.1866283389718696e-09 0.019962661311006217 9.319757180638711e-06 0.28512680371472465 5.319083183198711e-05']
['59907.107019164934 0.30513249584536506 5.236881594339544e-05 0.03601285242303968 1.677180361125941e-05 2.547388212429202e-06 1.186362421910416e-09 0.020007140235022043 9.317668672921894e-06 0.285125355610343 5.319127590885162e-05']
['59907.10715944514 0.30497299347299206 5.23614823985603e-05 0.036025028352498205 1.677086482886645e-05 2.5482494832558967e-06 1.1862960166400484e-09 0.02001390464027678 9.317147127148027e-06 0.28495908883271526 5.318396440247439e-05']
['59907.10729972535 0.30517123051181044 5.237324746369805e-05 0.036050831063289365 1.6773633789897195e-05 2.550074651685934e-06 1.1864918805668359e-09 0.020028239479605203 9.318685438831775e-06 0.28514299103220525 5.3195817017897647e-05']
['59907.10744000556 0.3051158922107103 5.23761461664546e-05 0.03600331510513252 1.677476475292197e-05 2.546713585189752e-06 1.1865718798361015e-09 0.020001841725073622 9.319313751623318e-06 0.28511405048563665 5.319878096395642e-05']
['59907.10758028577 0.3051337301911317 5.23693211250305e-05 0.03600617615112735 1.6774253261471113e-05 2.546915962795303e-06 1.1865356992170998e-09 0.02000343119507075 9.319029589706174e-06 0.28513029899606096 5.319201168963611e-05']
['59907.107720565975 0.30506207106152083 5.236514342186603e-05 0.036001456057332515 1.6778487686684565e-05 2.546582084457834e-06 1.1868352235299327e-09 0.020000808920740284 9.321382048158091e-06 0.28506126214078054 5.318831082935726e-05']
['59907.10786084618 0.30518779026002774 5.237494668202243e-05 0.035908222822881926 1.6773551641234147e-05 2.539987182180831e-06 1.1864860697375947e-09 0.019949012679378847 9.318639800685636e-06 0.28523877758064886 5.3197481967473e-05']
['59907.10800112639 0.3050574215350818 5.236461719469797e-05 0.03603971398433276 1.677824578641606e-05 2.5492882792109623e-06 1.1868181125861691e-09 0.020022063324629313 9.321247659120033e-06 0.2850353582104525 5.318776919433555e-05']
['59907.1081414066 0.30509126281557175 5.23680399751871e-05 0.03599590889415366 1.6771756722522445e-05 2.5461897029289224e-06 1.1863591052107434e-09 0.019997727163418702 9.31764262362358e-06 0.28509353565215306 5.319050737588767e-05']
['59907.10828168681 0.3050800900648737 5.2365595319014345e-05 0.035955769254852096 1.6773418972575875e-05 2.543350404258358e-06 1.1864766853497026e-09 0.01997542736380672 9.318566095875486e-06 0.285104662701067 5.318826230662153e-05']
['59907.108421967016 0.3051301791508282 5.236845717148682e-05 0.03601504474186734 1.6776721464111418e-05 2.5475432872639827e-06 1.1867102888396585e-09 0.0200083581899263 9.320400813395232e-06 0.2851218209609019 5.319140135251362e-05']
['59907.108562247224 0.3050772479438022 5.236760879108689e-05 0.0359236649248383 1.6773353912768083e-05 2.5410794874510916e-06 1.1864720833096997e-09 0.019957591624910166 9.318529951537824e-06 0.285119656318892 5.319023830510659e-05']
['59907.10870252743 0.3050797537487077 5.2364996954627734e-05 0.03600192208350411 1.6775905218841496e-05 2.5466150490661988e-06 1.1866525512976659e-09 0.020001067824168953 9.319947343800831e-06 0.2850786859245388 5.318791521153459e-05']
['59907.10884280764 0.3050802280424297 5.2369604303557654e-05 0.03616858015687929 1.68261652078226e-05 2.5584036962590127e-06 1.19020771826926e-09 0.020093655642710716 9.347869559901444e-06 0.284986572399719 5.3197350687981976e-05']
['59907.10898308785 0.30506854034649994 5.2370378860640615e-05 0.03594447345074586 1.677432826251035e-05 2.542551389565156e-06 1.1865410044553805e-09 0.019969151917081034 9.319071256950193e-06 0.2850993884294189 5.3193060365983354e-05']
['59907.109123368056 0.30512377213449987 5.2367668260539734e-05 0.03601624664867094 1.6776465013379955e-05 2.5476283047790617e-06 1.1866921486611821e-09 0.020009025915928298 9.320258340766641e-06 0.2851147462185716 5.3190599682505656e-05']
['59907.109263648264 0.30512817519209573 5.237172301742959e-05 0.03596178891812296 1.6774018031942536e-05 2.5437762083318275e-06 1.1865190601316624e-09 0.01997877162117942 9.318898906634742e-06 0.28514940357091634 5.3194353541014504e-05']
['59907.10940392847 0.305155840969804 5.23775240710352e-05 0.03602567309333385 1.6773790068275763e-05 2.548295089340788e-06 1.1865029350008124e-09 0.020014262829629915 9.318772260153201e-06 0.2851415781401741 5.320004270908505e-05']
['59907.10954420868 0.3051851403298306 5.237157205063012e-05 0.036045001491402384 1.677975428014118e-05 2.5496622938273016e-06 1.1869248166897142e-09 0.020025000828556877 9.322085711189546e-06 0.2851601395012737 5.31947632860708e-05']
['59907.10968448889 0.30515676065285524 5.237108226996679e-05 0.036020952389881844 1.6773663218368696e-05 2.547961167878896e-06 1.1864939622053723e-09 0.020011640216601023 9.318701787982608e-06 0.28514512043625423 5.319368817012955e-05']
['59907.1098247691 0.30517213776334706 5.237270377586855e-05 0.03598299772160787 1.6772105517904017e-05 2.545276424292578e-06 1.1863837774370122e-09 0.01999055428978215 9.317836398835564e-06 0.2851815834735649 5.319513300998824e-05']
['59907.109965049305 0.30499986476489394 5.2361581010434346e-05 0.036054682804973384 1.677343398045416e-05 2.5503471066763892e-06 1.1864777469399313e-09 0.020030379336096322 9.318574433585645e-06 0.28496948542879763 5.318431155318789e-05']
['59907.11010532951 0.3051996114046757 5.238047241663598e-05 0.03598288107579116 1.6775439986739995e-05 2.54526817328888e-06 1.186619642858271e-09 0.019990489486550644 9.31968888152222e-06 0.2852091219181251 5.320310603186934e-05']
['59907.11024560972 0.30515452591831305 5.237008908384366e-05 0.03602305063164723 1.6773744562113126e-05 2.548109588122791e-06 1.1864997160982682e-09 0.020012805906470685 9.318746978951737e-06 0.28514172001184235 5.319271826018523e-05']
['59907.11038588993 0.3051158349745209 5.23755388563549e-05 0.03599431561757564 1.677115798177675e-05 2.54607700166532e-06 1.1863167529666066e-09 0.019996842009764242 9.317309989875973e-06 0.2851189929647566 5.3197832060535935e-05']
['59907.11052617014 0.3050861722860096 5.2372373865269424e-05 0.03601112860839553 1.677333162207881e-05 2.5472662774862733e-06 1.186470506565974e-09 0.02000618256021974 9.318517567821562e-06 0.28507998972578985 5.319492752082058e-05']
['59907.110666450346 0.30508021180598954 5.236752766396209e-05 0.036003344602649846 1.6771544324447087e-05 2.5467156717122813e-06 1.1863440811202561e-09 0.020001858112583246 9.317524624692825e-06 0.2850783536934063 5.318998231591727e-05']
['59907.110806730554 0.3050725079669525 5.236625337885814e-05 0.03742352317992882 2.064651762856295e-05 2.6471727564443544e-06 1.460442372542111e-09 0.020790846211071568 1.147028757142386e-05 0.28428166175588093 5.360776053809683e-05']
['59907.11094701076 0.30512549787906085 5.2370497492863056e-05 0.03598293111564167 1.677285116887187e-05 2.54527171288424e-06 1.1864365214536145e-09 0.019990517286467595 9.31825064937326e-06 0.28513498059259323 5.319303340489731e-05']
['59907.11108729097 0.30509121933057 5.236638198933515e-05 0.03601765757234557 1.6773844578566914e-05 2.5477281072133475e-06 1.186506790815162e-09 0.020009809762414205 9.318802543648285e-06 0.28508140956815575 5.318907823510829e-05']
['59907.11122757118 0.30502566974966194 5.23688189603685e-05 0.03603011439436142 1.6776509611645458e-05 2.5486092471240313e-06 1.1866953033431414e-09 0.020016730219089677 9.32028311758081e-06 0.28500893953057227 5.319173692121468e-05']
['59907.11136785139 0.3051145648555276 5.236923833773884e-05 0.036063755727181214 1.677416770492472e-05 2.550988884639796e-06 1.1865296473294233e-09 0.02003541984843401 9.31898205829151e-06 0.28507914500709364 5.319192185546274e-05']
['59907.111508131595 0.3051336976055258 5.237075827573354e-05 0.03600289374856086 1.6774134651357625e-05 2.5466837803092256e-06 1.1865273092678277e-09 0.020001607638089364 9.31896369519868e-06 0.28513208996743644 5.3193415069233375e-05']
['59907.1116484118 0.30507250202328223 5.237616816173056e-05 0.03609055511265574 1.6781207232610088e-05 2.552884553382061e-06 1.1870275920530493e-09 0.020050308395919855 9.322892907005604e-06 0.28502219362736236 5.3199429728723346e-05']
['59907.11178869201 0.305104900701758 5.236990950936839e-05 0.03603575609235779 1.6771816355712887e-05 2.5490083156233886e-06 1.1863633233960906e-09 0.020019864495754325 9.317675753173827e-06 0.2850850362060037 5.3192353806357524e-05']
['59907.11192897222 0.3050374002687668 5.2364633651945735e-05 0.03593601884814935 1.67786651914802e-05 2.5419533487673277e-06 1.1868477794257761e-09 0.019964454915638526 9.321480661933444e-06 0.28507294535312827 5.318782623150984e-05']
['59907.11206925243 0.3050331409047119 5.236722835098239e-05 0.036006489265163845 1.6772178711038523e-05 2.5469381110827077e-06 1.186388954792193e-09 0.02000360514731325 9.317877061688068e-06 0.28502953575739864 5.318974937053818e-05']
['59907.112209532635 0.3051392771111191 5.237458396740903e-05 0.03593793604774176 1.677155745729754e-05 2.542088962897117e-06 1.1863450100793968e-09 0.019965520026523197 9.317531920720855e-06 0.2851737570845959 5.319693080294042e-05']
['59907.11234981284 0.3050904882524029 5.236816291724858e-05 0.03600672333006994 1.6779168123346214e-05 2.546954667787956e-06 1.1868833545780048e-09 0.020003735183372187 9.321760068525674e-06 0.28508675306903075 5.3191349842832986e-05']
['59907.11249009306 0.3051534796066361 5.237252506793919e-05 0.0360391400298746 1.67748917596278e-05 2.5492476802380174e-06 1.186580863722785e-09 0.020021744461041442 9.319384310904333e-06 0.28513173514559464 5.319522822515426e-05']
['59907.11263037327 0.3050622918729702 5.237367771451304e-05 0.0359813724923154 1.6779069787342653e-05 2.5451614628367758e-06 1.186876398728649e-09 0.019989651384619667 9.321705437412586e-06 0.2850726404883505 5.3196769729049966e-05']
['59907.112770653475 0.30512279553313304 5.236895257899772e-05 0.036029011728178295 1.6776443957350422e-05 2.548531249446865e-06 1.1866906592517678e-09 0.02001611762676572 9.320246642972456e-06 0.28510667790636735 5.319186208159244e-05']
['59907.11291093368 0.3051129620503459 5.2378399829575914e-05 0.0360294460947414 1.677331572978334e-05 2.548561974596035e-06 1.1864693824160267e-09 0.020016358941523003 9.31850873876852e-06 0.2850966031088229 5.3200858769585885e-05']
['59907.11305121389 0.3051498265523623 5.2369492050373956e-05 0.036006133539621024 1.6775897468866684e-05 2.546912948647808e-06 1.186652003099088e-09 0.020003407522011678 9.319943038259268e-06 0.2851464190303506 5.319234001104462e-05']
['59907.1131914941 0.30514150760444714 5.23705982005126e-05 0.0360250248748662 1.677152024073304e-05 2.548249237263753e-06 1.1863423775459724e-09 0.020013902708259004 9.317511244851689e-06 0.28512760489618816 5.3193003033082e-05']
['59907.11333177431 0.3051686827736151 5.237271300528939e-05 0.03596070295469467 1.677343401481297e-05 2.543699392132881e-06 1.1864777493703199e-09 0.019978168308163704 9.318574452673872e-06 0.2851905144654514 5.319527138162221e-05']
['59907.113472054516 0.3051358722980049 5.2370009297715614e-05 0.03593925993526613 1.67725560400414e-05 2.542182608783162e-06 1.1864156453592953e-09 0.01996625551959229 9.31808668891189e-06 0.28516961677841257 5.3192524036605906e-05']
['59907.113612334724 0.30519535031894474 6.003790698635484e-05 0.036056099838136915 1.6777988025428446e-05 2.5504473412686122e-06 1.1867998797260293e-09 0.02003116657674273 9.32110445857136e-06 0.285164183742202 6.0757166356157475e-05']
['59907.11375261493 0.30516998899868963 5.237768954508374e-05 0.036071975211229894 1.6775971803146802e-05 2.551570294202468e-06 1.186657261173809e-09 0.02003998622846105 9.319984335081557e-06 0.2851300027702286 5.320041795030693e-05']
['59907.11389289514 0.3051589672198378 5.237334775445224e-05 0.03602747345779172 1.6782248659540132e-05 2.5484224390753823e-06 1.1871012579391763e-09 0.02001526303210651 9.323471477522295e-06 0.28514370418773133 5.319675436904924e-05']
['59907.11403317535 0.3051822688455418 5.2372807825061394e-05 0.03603864508805257 1.677584585961325e-05 2.5492126702657868e-06 1.1866483524911799e-09 0.02002146949336254 9.319914366451805e-06 0.28516079935217925 5.319559947287752e-05']
['59907.11417345556 0.30513902530382697 5.236992586544866e-05 0.03596875293331911 1.6773095340460072e-05 2.544268811639487e-06 1.1864537930603812e-09 0.019982640518510612 9.318386300255596e-06 0.28515638478531635 5.319249438025425e-05']
['59907.114313735765 0.305182480136885 5.237387885258931e-05 0.03610586133630113 1.6793945496547355e-05 2.5539672472279424e-06 1.1879286399072828e-09 0.020058811853500627 9.329969720304086e-06 0.28512366828338437 5.31984165276326e-05']
['59907.11445401597 0.30523718334170796 5.2387337204884565e-05 0.03605254809273674 1.677415159379052e-05 2.5501961066743714e-06 1.1865285076998024e-09 0.020029193384853743 9.318973107661399e-06 0.2852079899568542 5.3209739326551855e-05']
['59907.11459429618 0.3051535075856944 5.237197815778075e-05 0.03607386767108951 1.677316907744123e-05 2.5517041583541395e-06 1.1864590088848433e-09 0.020041037595049726 9.318427265245128e-06 0.28511246999064466 5.319452211324704e-05']
['59907.11473457639 0.3051168872374893 5.236965177605708e-05 0.036042035595040614 1.6773473701437034e-05 2.5494524995754467e-06 1.1864805566247175e-09 0.020023353108355898 9.318596500798352e-06 0.2850935341291334 5.319226135341653e-05']
['59907.1148748566 0.30524656485274926 5.237865233467859e-05 0.03593420630593718 1.677300992621689e-05 2.541825137632826e-06 1.1864477512385976e-09 0.019963447947742876 9.318338847898272e-06 0.2852831169050064 5.3201077613910986e-05']
['59907.115015136806 0.30516608394153877 5.237927781245772e-05 0.036019249590663584 1.6774088534626888e-05 2.547840719473261e-06 1.186524047176425e-09 0.020010694217035326 9.318938074792715e-06 0.28515538972450344 5.320179838122436e-05']
['59907.115155417014 0.30506273740904893 5.236744872611931e-05 0.03603690888494123 1.677195178419931e-05 2.5490898590180617e-06 1.1863729030018904e-09 0.020020504936078463 9.317750991221837e-06 0.28504223247297045 5.318994425281108e-05']
['59907.11529569722 0.30518311063342224 5.2373362051561855e-05 0.03604854328211373 1.6773657709073212e-05 2.5499128242713494e-06 1.1864935725024349e-09 0.02002696849006318 9.318698727262896e-06 0.28515614214335905 5.319593216171205e-05']
['59907.11543597743 0.305175061641669 5.2372012186640294e-05 0.03598250719900462 1.6777284593103304e-05 2.545241726916131e-06 1.186750122067506e-09 0.01999028177722479 9.320713662835168e-06 0.28518477986444424 5.319495618629798e-05']
['59907.11557625764 0.3051858715378425 5.237282652918407e-05 0.03603368658551308 1.6773756692679107e-05 2.5488619279593448e-06 1.1865005741602853e-09 0.020018714769729485 9.31875371815506e-06 0.285167156768113 5.319541455347101e-05']
['59907.115716537846 0.30518148051419497 5.246381078640968e-05 0.03606493927587465 1.681211301144486e-05 2.551072603584218e-06 1.1892137287071197e-09 0.020036077375485916 9.340062784136031e-06 0.28514540313870906 5.328872502738079e-05']
['59907.115856818054 0.30515508689831505 5.246216705300511e-05 0.036029788065243984 1.680829216437369e-05 2.5485861640608693e-06 1.1889434590634867e-09 0.020016548925135547 9.337940091318717e-06 0.2851385379731795 5.328673471931332e-05']
['59907.11599709826 0.30521501822501407 5.2472161400734136e-05 0.03601224842521654 1.6808235837829157e-05 2.5473454883229046e-06 1.1889394747754913e-09 0.020006804680675852 9.337908798793976e-06 0.28520821354433823 5.329656895897978e-05']
['59907.11613737847 0.30518881783961654 5.246796600799364e-05 0.03603961135544256 1.6806501700441744e-05 2.549281019701994e-06 1.1888168096478435e-09 0.020022006308579202 9.336945389134302e-06 0.28516681153103735 5.329226966658159e-05']
['59907.11627765868 0.30519696104358895 5.246820777190867e-05 0.036037018452868656 1.680418203495458e-05 2.549097609363508e-06 1.1886527268795761e-09 0.020020565807149254 9.335656686085878e-06 0.2851763952364397 5.329228192296364e-05']
['59907.11641793889 0.30519831760457106 5.246367385040787e-05 0.03605685285278655 1.680661755585542e-05 2.5505006061591497e-06 1.1888250047419638e-09 0.02003158491821475 9.337009753253012e-06 0.2851667326863563 5.328805518138481e-05']
['59907.116558219095 0.30521420017819095 5.247332464873803e-05 0.036029949008811964 1.680790396733897e-05 2.5485975484894928e-06 1.188915999740389e-09 0.02001663833822887 9.337724426299427e-06 0.2851975618399621 5.329768191163071e-05']
['59907.1166984993 0.30525050890549843 5.246618395528375e-05 0.03604303118170015 1.680531697693177e-05 2.549522922925732e-06 1.1887330076021503e-09 0.020023906212055638 9.336287209406538e-06 0.2852266026934428 5.329039986419882e-05']
['59907.11683877951 0.30531139564264165 5.247546659681818e-05 0.03603798222064947 1.6811185599755463e-05 2.549165781988534e-06 1.1891481277494983e-09 0.020021101233694147 9.339547555419701e-06 0.2852902944089475 5.330011016024007e-05']
['59907.11697905972 0.3053282018335174 5.2473143679796485e-05 0.03598060930792743 1.680657829873295e-05 2.5451074785844043e-06 1.1888222278685893e-09 0.019989227393293015 9.336987943740528e-06 0.2853389744402244 5.329737471491557e-05']
['59907.11711933993 0.30531867682384733 5.247124344701942e-05 0.03600175257087036 1.6803884133383847e-05 2.5466030585001642e-06 1.188631654654004e-09 0.020000973650483537 9.335491185213249e-06 0.2853177031733638 5.329524166889172e-05']
['59907.117259620136 0.30533097663717046 5.247304237170753e-05 0.036001034556082744 1.6804537454171856e-05 2.546552269343425e-06 1.1886778676463757e-09 0.020000574753379304 9.335854141206587e-06 0.28533040188379116 5.329707635779751e-05']
['59907.117399900344 0.3054450459410759 5.2476973040997986e-05 0.036046493974678476 1.680546635982152e-05 2.549767865423245e-06 1.1887435742800692e-09 0.020025829985932487 9.336370199900845e-06 0.2854192159551434 5.330103665084973e-05']
['59907.11754018055 0.30546708322246263 5.248710694517843e-05 0.03613594024576981 1.6810502904798006e-05 2.5560948948389445e-06 1.1890998369596746e-09 0.02007552235876101 9.339168280443337e-06 0.2853915608637016 5.331150400846928e-05']
['59907.11768046076 0.3055188696540934 5.248486001236448e-05 0.036109002290279045 1.680797957141867e-05 2.5541894242731023e-06 1.1889213476350568e-09 0.020060556827932802 9.337766428565928e-06 0.28545831282616063 5.3309046252882344e-05']
['59907.117820740976 0.3055813484588937 5.248759639311534e-05 0.03603644546324139 1.681109603606343e-05 2.5490570786383882e-06 1.1891417924142499e-09 0.020020247479578552 9.339497797813016e-06 0.28556110097931514 5.3312043613445626e-05']
['59907.117961021184 0.3055022155970925 5.248594115403594e-05 0.03611540772677474 1.6807204613641894e-05 2.5546425162201914e-06 1.188866530585785e-09 0.020064115403763745 9.337335896467718e-06 0.28543810019332877 5.331003526981002e-05']
['59907.11810130139 0.3055651266898034 5.2496424106333826e-05 0.03604346661138447 1.680536965972117e-05 2.5495537232753442e-06 1.1887367341471944e-09 0.020024148117435813 9.336316477622873e-06 0.2855409785723676 5.3320177694024985e-05']
['59907.1182415816 0.3055677157700032 5.249337646515172e-05 0.036040752502347104 1.6806609735896814e-05 2.5493617393333946e-06 1.1888244515930452e-09 0.020022640279081724 9.337005408831564e-06 0.28554507549092145 5.331729778145827e-05']
['59907.11838186181 0.30565624324696544 5.249313588383654e-05 0.036126204405105417 1.6813070251584582e-05 2.5554062249869914e-06 1.1892814395959922e-09 0.020070113558391896 9.340594584213657e-06 0.28558612968857355 5.3317689579590456e-05']
['59907.11852214202 0.30566952321267216 5.249333532193789e-05 0.036058913779424245 1.680936678604604e-05 2.5506463868977005e-06 1.1890194729973123e-09 0.02003272987745791 9.338537103358909e-06 0.28563679333521425 5.331752552821842e-05']
['59907.118662422225 0.30572988676788826 5.2496951942811396e-05 0.03615078921395759 1.681595173274688e-05 2.5571452444775663e-06 1.1894852626939504e-09 0.020083771785531994 9.3421954070816e-06 0.28564611498235626 5.3321727075460954e-05']
['59907.11880270243 0.30590918566209824 5.2510910759159736e-05 0.03609773455612908 1.680946717695764e-05 2.5533923951231413e-06 1.189026574201678e-09 0.02005429697562727 9.338592876087577e-06 0.28585488868647096 5.333483913598832e-05']
['59907.11894298264 0.3057654870181676 5.250046314201073e-05 0.036195289218803994 1.6817413664634246e-05 2.5602929759170854e-06 1.1895886732212118e-09 0.020108494010446662 9.34300759146347e-06 0.2856569930077209 5.3325326262290895e-05']
['59907.11908326285 0.305957808732506 5.251643363731243e-05 0.0361045155743147 1.6810143461321825e-05 2.553872054040224e-06 1.1890744115347874e-09 0.02005806420795261 9.338968589623237e-06 0.2858997445245534 5.3340342483904336e-05']
['59907.11922354306 0.3059813140975596 5.2513089164496306e-05 0.036083904085129334 1.6819257564428315e-05 2.5524140894231862e-06 1.189719102450897e-09 0.02004661338062741 9.344031980237952e-06 0.28593470071693217 5.333793647345245e-05']
['59907.119363823265 0.3060093038456227 5.251656356456891e-05 0.036132620575462654 1.6811558955148614e-05 2.555860076199469e-06 1.1891745372412095e-09 0.02007367809747925 9.339754975082564e-06 0.28593562574814346 5.334060809201547e-05']
['59907.11950410347 0.3060094745545564 5.251605783524552e-05 0.03608810390204747 1.6808375108586278e-05 2.552711165699898e-06 1.1889493261663463e-09 0.020048946612248594 9.33798617143682e-06 0.2859605279423078 5.3339800489810585e-05']
['59907.11964438368 0.30602560944018375 5.252331461846574e-05 0.036072077337575996 1.6812486632625727e-05 2.5515775181637135e-06 1.189240156999466e-09 0.02004004296532 9.340270351458738e-06 0.28598556647486373 5.334734509559661e-05']
['59907.11978466389 0.30605665736110593 5.2518264488001454e-05 0.03614633399249527 1.681090616759868e-05 2.5568301020249895e-06 1.1891283619677158e-09 0.02008129666249737 9.339392315332601e-06 0.28597536069860857 5.334221924190414e-05']
['59907.1199249441 0.30617946814647146 5.252600883898147e-05 0.03617566552102894 1.6824576153788087e-05 2.5589048832492447e-06 1.190095315689512e-09 0.020097591956127186 9.346986752104492e-06 0.28608187619034425 5.335117398798996e-05']
['59907.120065224306 0.30620308395813695 5.2527833318741526e-05 0.03613556214884247 1.6817892419954956e-05 2.556068149952298e-06 1.1896225382326883e-09 0.020075312304912482 9.343273566641642e-06 0.28612777165322445 5.335231985680283e-05']
['59907.120205504514 0.3062475206694571 5.2528043673787876e-05 0.03610996408196579 1.6814041862254333e-05 2.5542574571180666e-06 1.1893501669919264e-09 0.02006109115664766 9.341134367919075e-06 0.2861864295128094 5.335215237902671e-05']
['59907.12034578472 0.30632119377680883 5.2533168527179835e-05 0.036133712903393296 1.681400016593759e-05 2.555937342594864e-06 1.1893472175808514e-09 0.02007428494632961 9.34111120329866e-06 0.2862469088304792 5.3357194023088114e-05']
['59907.12048606493 0.30638426362726245 5.2538001369038594e-05 0.036245170740901334 1.681932634918409e-05 2.5638213718329697e-06 1.1897239679770709e-09 0.02013620596716741 9.34407019399116e-06 0.28624805766009503 5.336247029180091e-05']
['59907.12062634514 0.3063940731201158 5.255610425258385e-05 0.036197566444676685 1.681522222633399e-05 2.560454056696719e-06 1.1894336606710044e-09 0.02010975913593149 9.341790125741106e-06 0.2862843139841843 5.3379894501224486e-05']
['59907.12076662535 0.3064164012632624 5.2540517882737076e-05 0.03619451971925221 1.6817219784724622e-05 2.5602385449582527e-06 1.1895749590229972e-09 0.02010806651069567 9.342899880402568e-06 0.28630833475256673 5.336474301972643e-05']
['59907.120906905555 0.30649080513208343 5.255313336010632e-05 0.036139233746877275 1.6816606234121195e-05 2.5563278623862026e-06 1.1895315591957206e-09 0.020077352081598485 9.34255901895622e-06 0.28641345305048493 5.337710403335685e-05']
['59907.12104718576 0.3065518929741981 5.2550019377070346e-05 0.03621015114353948 1.6811121466930154e-05 2.56134424204398e-06 1.1891435912800928e-09 0.020116750635299715 9.339511926072308e-06 0.2864351423388984 5.337350484601621e-05']
['59907.12118746597 0.3065312605849737 5.254590633771709e-05 0.036236149747071345 1.682324709701107e-05 2.5631832670509057e-06 1.1900013041536401e-09 0.020131194303928526 9.346248387228373e-06 0.2864000662810452 5.33706345452994e-05']
['59907.12132774618 0.30652069757566425 5.255967746252859e-05 0.03615819218989087 1.680937720785182e-05 2.5576688979057317e-06 1.1890202101892707e-09 0.020087884549939376 9.338542893251012e-06 0.2864328130257249 5.338284441966468e-05']
['59907.12146802639 0.30658339261356954 5.256152872964116e-05 0.03610664097764 1.6811967533516106e-05 2.5540223955714623e-06 1.189203438248688e-09 0.020059244987577777 9.339981963064504e-06 0.28652414762599177 5.3384918895389015e-05']
['59907.121608306596 0.3066371390410787 5.255425546269343e-05 0.036174251680316724 1.6814482923904488e-05 2.558804874476759e-06 1.1893813657216287e-09 0.020096806489064846 9.341379402169159e-06 0.28654033255201383 5.3378002364019885e-05']
['59907.121748586804 0.3066912304379653 5.255656216857009e-05 0.03616203239511881 1.6814343640845338e-05 2.557940536858849e-06 1.1893715134605832e-09 0.02009001799728823 9.341302022691855e-06 0.2866012124406771 5.3380259932468664e-05']
['59907.12188886701 0.3066787168076573 5.2556052366812244e-05 0.036212419075141264 1.6815204753710552e-05 2.561504665388432e-06 1.1894324247357204e-09 0.0201180105973007 9.341780418728084e-06 0.28656070621035656 5.337984171740155e-05']
['59907.12202914722 0.30683992203448585 5.2567117811507464e-05 0.036240574269681886 1.6811936521262513e-05 2.563496238003923e-06 1.1892012445804853e-09 0.02013365237204549 9.339964734034729e-06 0.28670626966244034 5.3390418768182724e-05']
['59907.12216942743 0.30677651553810337 5.256233353411499e-05 0.03618962577670371 1.681180559176251e-05 2.5598923693370077e-06 1.1891919832128756e-09 0.020105347653724282 9.339891995423616e-06 0.2866711678843791 5.338569554700704e-05']
['59907.122309707636 0.3067223085870583 5.256142887498274e-05 0.03621280183244592 1.6831179683756818e-05 2.5615317399293396e-06 1.1905624198834584e-09 0.020118223240247736 9.350655379864899e-06 0.28660408534681053 5.33866889909167e-05']
['59907.122449987844 0.3068072865305511 5.2565849055455516e-05 0.03622813383097866 1.6816495334337786e-05 2.562616256975545e-06 1.189523714640735e-09 0.020126741017210365 9.342497407965436e-06 0.28668054551334077 5.338961270452123e-05']
['59907.12259026805 0.3068764473207489 5.257077707582791e-05 0.036227591535093084 1.6814678901923264e-05 2.5625778973885196e-06 1.1893952283307068e-09 0.02012643974171838 9.341488278846257e-06 0.2867500075790305 5.339428813665574e-05']
['59907.12273054826 0.306859730524223 5.2569876418020674e-05 0.03618265689825384 1.6813930014443867e-05 2.559399422024517e-06 1.1893422553777442e-09 0.020101476054585465 9.341072230246592e-06 0.28675825446963754 5.339332858154332e-05']
['59907.12287082847 0.3068129577348171 5.256533858635953e-05 0.03619696301494191 1.6813286657091273e-05 2.560411372774453e-06 1.1892967471542599e-09 0.02010942389718995 9.340714809495151e-06 0.28670353383762714 5.338879820571858e-05']
['59907.12301110868 0.30691929490758474 5.2577535115816955e-05 0.03621102481535654 1.681500474073289e-05 2.5614060416832354e-06 1.189418276711686e-09 0.02011723600853141 9.341669300407161e-06 0.2868020588990533 5.3400973625704e-05']
['59907.12315138889 0.30688762769380196 5.256721671062907e-05 0.03620909882041364 1.6812096467654626e-05 2.5612698054096658e-06 1.189212558473345e-09 0.020116166011340912 9.340053593141457e-06 0.28677146168246104 5.339053168704162e-05']
['59907.1232916691 0.3069382959756377 5.2578583517303294e-05 0.036210749093316424 1.6810927609203716e-05 2.561386538338523e-06 1.1891298786510176e-09 0.020117082829620235 9.339404227335398e-06 0.2868212131460175 5.340160967618493e-05']
['59907.12343194931 0.3069166380513078 5.2570279672710995e-05 0.036276164733493946 1.681666903423984e-05 2.5660137483339774e-06 1.1895360013954133e-09 0.02015342485194108 9.342593907911021e-06 0.2867632131993667 5.339399185109863e-05']
['59907.12357222952 0.3069215032698111 5.25711582415922e-05 0.036200943249028686 1.6811047203204984e-05 2.5606929167431524e-06 1.1891383381961134e-09 0.02011163513834927 9.339470668447211e-06 0.2868098681314618 5.339431047620443e-05']
['59907.123712509725 0.30688213212323007 5.2575848265609045e-05 0.03623388403561678 1.6813624718833935e-05 2.563023000749744e-06 1.1893206601308887e-09 0.020129935575342657 9.340902621574408e-06 0.2867521965478874 5.339917867003276e-05']
['59907.12385278993 0.306914640250526 5.2577831310345006e-05 0.036818962782617176 1.7424447491288536e-05 2.604408856164466e-06 1.2325275328372202e-09 0.02045497932367621 9.680248606271408e-06 0.2864596609268498 5.3461533445817984e-05']
['59907.12399307014 0.30682151098814936 5.2564542378012234e-05 0.03620410345315814 1.6812757625512603e-05 2.5609164554579886e-06 1.1892593258250168e-09 0.020113390807310075 9.340420903062558e-06 0.2867081201808393 5.338796285733528e-05']
['59907.12413335035 0.3069438285527098 5.2571979266274565e-05 0.03619449098346615 1.681086314868977e-05 2.5602365123171884e-06 1.1891253190023826e-09 0.020108050546370083 9.339368415938761e-06 0.2868357780063397 5.3395100958629504e-05']
['59907.12427363056 0.30681158738221814 5.256499160641298e-05 0.03618759023894007 1.681584070853919e-05 2.559748384493926e-06 1.1894774093377474e-09 0.02010421679941115 9.342133726966215e-06 0.286707370582807 5.338870484620119e-05']
['59907.124413910766 0.3067939984154162 5.257873529523324e-05 0.03622630752918289 1.6812028853254087e-05 2.5624870725496013e-06 1.1892077757328696e-09 0.02012572640510161 9.340016029585603e-06 0.2866682720103146 5.340186611607428e-05']
['59907.124554190974 0.3068642479337955 5.256937267865853e-05 0.03624268951395919 1.6811454730382166e-05 2.563645860929514e-06 1.189167164847088e-09 0.020134827507755103 9.339697072434536e-06 0.28672942042604044 5.339259204451992e-05']
['59907.12469447118 0.30684651091165205 5.256937343351124e-05 0.03619205794973325 1.6811051218753108e-05 2.560064410385944e-06 1.1891386222380395e-09 0.020106698860962918 9.339472899307283e-06 0.2867398120506891 5.3392553574715384e-05']
['59907.12483475139 0.3069365819104851 5.257346687176628e-05 0.036217268632601524 1.6816180936619104e-05 2.561847701406925e-06 1.1895014755513905e-09 0.020120704795889736 9.342322742566169e-06 0.2868158771145954 5.33970824403635e-05']
['59907.1249750316 0.3070239930745537 5.257814493737801e-05 0.03622111256213234 1.6815272200168283e-05 2.5621196038005813e-06 1.1894371955966723e-09 0.020122840312295744 9.341817888982378e-06 0.28690115276225797 5.340160003714158e-05']
['59907.12511531181 0.3069171190618936 5.257281038917806e-05 0.036170992091175705 1.681315010945682e-05 2.558574305710429e-06 1.1892870883849307e-09 0.020094995606208726 9.340638949698234e-06 0.2868221234556849 5.339614151046018e-05']
['59907.125255592015 0.30692853583413027 5.258040571659703e-05 0.03628382898240793 1.6818160550706716e-05 2.5665558830449765e-06 1.189641504603594e-09 0.020157682768004406 9.343422528170397e-06 0.2867708530661259 5.340410667600266e-05']
['59907.12539587222 0.30682690582307004 5.2566662784106757e-05 0.03622528267676773 1.681722900092735e-05 2.5624145790705734e-06 1.189575610935984e-09 0.02012515704264874 9.342905000515195e-06 0.2867017487804213 5.339048520201559e-05']
['59907.12553615243 0.30696370553645447 5.257296674693831e-05 0.03616950576629651 1.6814535988769913e-05 2.558469169731956e-06 1.189385119293023e-09 0.020094169870164727 9.341408882649951e-06 0.28686953566628975 5.339643014741278e-05']
['59907.12567643264 0.30688306139919475 5.257041946865756e-05 0.03617818465161487 1.6813159788104616e-05 2.5590830752870424e-06 1.1892877730092148e-09 0.02009899147311937 9.340644326724786e-06 0.28678406992607536 5.339378839854863e-05']
['59907.12581671285 0.30689536817931423 5.257128408528951e-05 0.03621313037302477 1.681766009256306e-05 2.561554979421397e-06 1.189606104431428e-09 0.020118405762791534 9.343144495868367e-06 0.2867769624165227 5.339507710872688e-05']
['59907.125956993055 0.3068639093088883 5.256923200835065e-05 0.036259152769304547 1.6814927948066757e-05 2.564810398026224e-06 1.1894128447417268e-09 0.020143973760724746 9.341626637814866e-06 0.28671993554816355 5.3392791106928765e-05']
['59907.12609727326 0.3068816339007324 5.257363531827439e-05 0.03622345881224135 1.6818097309534512e-05 2.562285567046172e-06 1.1896370312057436e-09 0.020124143784578528 9.343387394185839e-06 0.28675749011615387 5.339743456924442e-05']
['59907.12623755347 0.30693256354100484 5.257058490929568e-05 0.036246631816572936 1.6813044317638846e-05 2.563924721795355e-06 1.1892796051445887e-09 0.020137017675873854 9.340580176466025e-06 0.286795545865131 5.3393940065689634e-05']
['59907.12637783368 0.307001694777495 5.257604515152717e-05 0.03621921914426185 1.6813510673037918e-05 2.5619856718835024e-06 1.1893125930410332e-09 0.020121788413478805 9.340839262798843e-06 0.2868799063640162 5.3399361437276276e-05']
['59907.12651811389 0.30697144670469134 5.257382344448257e-05 0.03622355371694371 1.6811627070184236e-05 2.562292280180618e-06 1.189179355394373e-09 0.020124196509413172 9.33979281676902e-06 0.2868472501952782 5.339699093986285e-05']
['59907.126658394096 0.3068877092698702 5.2571347282627963e-05 0.03618522181914735 1.68133335490465e-05 2.5595808530640026e-06 1.1893000640815778e-09 0.020102901010637417 9.340740860581388e-06 0.28678480825923275 5.339471879254735e-05']
['59907.126798674304 0.3068858697961233 5.25681412265977e-05 0.03621037782369997 1.6810672280638256e-05 2.5613602763853323e-06 1.1891118178495485e-09 0.020116876568722207 9.339262378132364e-06 0.2867689932274011 5.339130354081195e-05']
['59907.12693895451 0.3069017140650526 5.2569831098160484e-05 0.03617670305467831 1.6816267173710543e-05 2.558978273742099e-06 1.1895075755777817e-09 0.020098168363710173 9.342370652061413e-06 0.2868035457013425 5.3393511132811066e-05']
['59907.12707923472 0.3068687556092814 5.256870560651662e-05 0.03619935233029917 1.681450336159115e-05 2.5605803822632145e-06 1.189382811392232e-09 0.020110751294610648 9.341390756439527e-06 0.28675800431467074 5.339223155487234e-05']
['59907.12721951493 0.3069715384733642 5.257382790562165e-05 0.03625368672109413 1.681163696576834e-05 2.5644237542076166e-06 1.189180055363762e-09 0.020140937067274513 9.339798314315745e-06 0.28683060140608974 5.3396996293818036e-05']
['59907.12735979514 0.3070117112650519 5.2576776294585674e-05 0.03623910621773588 1.6816525857622576e-05 2.5633923945710684e-06 1.18952587372147e-09 0.02013283678763104 9.342514365345875e-06 0.28687887447742083 5.340037434510736e-05']
['59907.127500075345 0.3069130997208408 5.2580118263701175e-05 0.036221776179404815 1.6815145003659952e-05 2.5621665451202413e-06 1.189428198284208e-09 0.02012320898855823 9.34174722425553e-06 0.28678989073228256 5.3403530574548045e-05']
['59907.12764035555 0.3068417115393406 5.2568288446986107e-05 0.03638179208804522 1.6852072397673035e-05 2.5734853552684467e-06 1.1920402770809565e-09 0.02021210671558068 9.362262443151686e-06 0.28662960482375993 5.339547647788136e-05']
['59907.12778063576 0.30693943276806196 5.2574012108905426e-05 0.036243201578826184 1.6816539017135802e-05 2.56368208210941e-06 1.1895268045666162e-09 0.02013511198823677 9.342521676186558e-06 0.2868043207798252 5.339765407297731e-05']
['59907.12792091597 0.30680120411894657 5.2565111866484496e-05 0.03797056230400686 1.8198647342007687e-05 2.685867858960657e-06 1.2872909698074247e-09 0.021094756835559367 1.0110359634448715e-05 0.2857064472833872 5.35285938305306e-05']
['59907.12806119618 0.3068991037553407 5.2575145440708987e-05 0.036241870082194386 1.6814618421607596e-05 2.5635878979891163e-06 1.1893909502235076e-09 0.02013437226788577 9.341454678670888e-06 0.2867647314874549 5.339858325485204e-05']
['59907.128201476386 0.30680297065070117 5.256339677776294e-05 0.03629640450118593 1.682569719336278e-05 2.5674454190340714e-06 1.190174613018274e-09 0.020164669167325518 9.347609551868211e-06 0.28663830148337566 5.338809310277636e-05']
['59907.128341756594 0.3068717896125857 5.256722645955987e-05 0.03621424953639088 1.681260684276436e-05 2.56163414403555e-06 1.1892486601273654e-09 0.020119027520217155 9.34033713486909e-06 0.28675276209236855 5.339059088869186e-05']
['59907.12848203681 0.3069982321414916 5.2576668856304373e-05 0.03620001590031172 1.6812682305305572e-05 2.5606273202399192e-06 1.1892539980102328e-09 0.020111119944617624 9.340379058503094e-06 0.28688711219687396 5.339989502781826e-05']
['59907.12862231702 0.3068714892926555 5.257006981180486e-05 0.03617899004433951 1.6814480197857045e-05 2.55914004516849e-06 1.1893811728932173e-09 0.02009943891352195 9.341377887698357e-06 0.28677205037913356 5.339357246765585e-05']
['59907.128762597225 0.3068482103603441 5.2566606177896315e-05 0.036273050450642774 1.6816613475471936e-05 2.565793457885111e-06 1.189532071416505e-09 0.02015169469480154 9.342563041928854e-06 0.28669651566554255 5.339036963024757e-05']
['59907.12890287743 0.30686111654956716 5.2567612663210644e-05 0.036151221969015324 1.6814552280480387e-05 2.557175855636049e-06 1.1893862716958022e-09 0.020084012205008512 9.341417933600216e-06 0.28677710434455866 5.339116022451218e-05']
['59907.12904315764 0.30682709696541344 5.256588138278211e-05 0.036179159666564195 1.681146570625977e-05 2.5591520434864974e-06 1.1891679412316104e-09 0.02009953314809122 9.339703170144316e-06 0.28672756381732223 5.338915564845657e-05']
['59907.12918343785 0.3069002352688894 5.257098140974626e-05 0.036230927988019385 1.6814346956618646e-05 2.5628139031554593e-06 1.1893717480035662e-09 0.020128293326677437 9.341303864788136e-06 0.28677194194221195 5.339445705574871e-05']
['59907.12932371806 0.30695849722819746 5.257457150770229e-05 0.03626466984157173 1.6821267055557932e-05 2.565200651058543e-06 1.1898612448715096e-09 0.020147038800873183 9.345148364198852e-06 0.28681145842732425 5.339866446988529e-05']
['59907.129463998266 0.30680618782513513 5.256317099489091e-05 0.0361727476284863 1.6814432802412028e-05 2.558698484572991e-06 1.189377820351282e-09 0.020095970904714613 9.341351556895571e-06 0.28671021692042054 5.338677545935563e-05']
['59907.129604278474 0.30682420318576 5.256713164775908e-05 0.03625127991651189 1.681709241647359e-05 2.5642535076092528e-06 1.1895659495622217e-09 0.020139599953617717 9.342829120263106e-06 0.2866846032321423 5.3390933552835265e-05']
['59907.12974455868 0.3069896589115545 5.2577315751196045e-05 0.036262660125574 1.6812353273998787e-05 2.5650584927317653e-06 1.1892307238062742e-09 0.020145922291985554 9.340196263332658e-06 0.28684373661956897 5.340049997742101e-05']
['59907.12988483889 0.3069285625128868 5.257095931720024e-05 0.03627314957135844 1.6822476564063452e-05 2.5658004692414933e-06 1.1899468000970051e-09 0.0201517497618658 9.345820313368585e-06 0.286776812751021 5.339522563732169e-05']
['59907.1300251191 0.3068250180536438 5.256631256277725e-05 0.03617229262005983 1.6813588119964614e-05 2.55866629931067e-06 1.1893180712904603e-09 0.02009571812225546 9.340882288869231e-06 0.28672929993138835 5.338978646128963e-05']
['59907.13016539931 0.30679996246488483 5.2566331906720686e-05 0.03622728455408129 1.681491084719406e-05 2.5625561829238698e-06 1.1894116351024286e-09 0.02012626919671183 9.341617137330033e-06 0.286673693268173 5.338993407813854e-05']
['59907.130305679515 0.30692459819274903 5.257524606608636e-05 0.036208175848465085 1.6815652927381484e-05 2.5612045184994663e-06 1.1894641265379838e-09 0.020115653249147266 9.342029404100824e-06 0.28680894494360176 5.339878287280164e-05']
['59907.13044595972 0.3068942844965837 5.257147599093877e-05 0.036165770996315905 1.6814171636038554e-05 2.5582049887969676e-06 1.1893593466093676e-09 0.02009209499795328 9.341206464465864e-06 0.2868021894986304 5.3394926969494305e-05']
['59907.13058623993 0.30684970688898383 5.256887980256106e-05 0.03625478020506408 1.6812333194038018e-05 2.564501102376065e-06 1.1892293034396017e-09 0.02014154455836893 9.3401851077989e-06 0.2867081623306149 5.339219214027516e-05']
['59907.13072652014 0.3068314125681486 5.256468483682073e-05 0.036189357140779976 1.681096937371387e-05 2.5598733672324948e-06 1.1891328328857896e-09 0.02010519841154443 9.33942742984104e-06 0.28672621415660415 5.338792931657453e-05']
['59907.13086680035 0.306909367868327 5.257049813783399e-05 0.03621948203289166 1.68129581439306e-05 2.562004267450132e-06 1.1892735096016413e-09 0.020121934462717588 9.340532302183667e-06 0.2867874334056094 5.339384625729957e-05']
['59907.131007080556 0.3068630444188325 5.256795738246051e-05 0.03616814256538323 1.6816082922071956e-05 2.5583727429925e-06 1.1894945424404245e-09 0.020093412536324014 9.342268290039976e-06 0.2867696318825085 5.339164841215591e-05']
['59907.131147360764 0.3068711686551794 5.2573528496140866e-05 0.03622242229620599 1.6812111767121587e-05 2.562212248534784e-06 1.1892136406892534e-09 0.02012356794233666 9.340062092845326e-06 0.2867476007128427 5.3396747639090735e-05']
['59907.13128764097 0.30692107426323506 5.258343638275744e-05 0.03617759226491228 1.681236218829377e-05 2.5590411724995142e-06 1.1892313543636568e-09 0.02009866236939571 9.34020121571876e-06 0.28682241189383934 5.3406527134514305e-05']
['59907.13142792118 0.30699766834674974 5.258194182799715e-05 0.03616059899247128 1.6819871407913773e-05 2.5578391443624954e-06 1.1897625229953396e-09 0.020089221662484044 9.34437300439654e-06 0.2869084466842657 5.3405785391174345e-05']
['59907.13156820139 0.3068755571299754 5.256817596891868e-05 0.03624114508983542 1.6811879119511057e-05 2.563536615270168e-06 1.189197184237158e-09 0.020133969494353008 9.33993284417281e-06 0.28674158763562235 5.339145503011561e-05']
['59907.1317084816 0.30691908908028903 5.257669324464734e-05 0.03625276828313801 1.6814644491998708e-05 2.564358788011777e-06 1.189392794326447e-09 0.020140426823965562 9.341469162221504e-06 0.2867786622563235 5.3400109725079036e-05']
['59907.131848761805 0.3068077353830809 5.25646859706847e-05 0.03622113009398636 1.6812134516968247e-05 2.562120843925572e-06 1.1892152499117203e-09 0.020122850052214643 9.340074731649026e-06 0.2866848853308663 5.3388043672619114e-05']
['59907.13198904201 0.3069141237931583 5.257065557579958e-05 0.03626975579076182 1.681398880619929e-05 2.5655604083713947e-06 1.1893464140437392e-09 0.020149864328201008 9.341104892332939e-06 0.2867642594649573 5.339410143713361e-05']
['59907.13212932222 0.30687051536787147 5.256863129268375e-05 0.036198540104116474 1.681289160720821e-05 2.560522929013488e-06 1.1892688030913011e-09 0.020110300057842485 9.340495337337894e-06 0.286760215310029 5.339200173371439e-05']
['59907.13226960243 0.30694236255594776 5.2604325177088916e-05 0.03614909402301916 1.6815978368163212e-05 2.5570253342476394e-06 1.1894871467642484e-09 0.020082830012788423 9.342210204535118e-06 0.2868595325431593 5.3427445370732734e-05']
['59907.13240988264 0.3068860791988889 5.2570833617514705e-05 0.036275502077792246 1.6818377058627255e-05 2.5659668750315358e-06 1.1896568194061595e-09 0.02015305670988458 9.343542810348475e-06 0.2867330224890043 5.339470329058144e-05']
['59907.132550162845 0.3068925244496412 5.256999482677953e-05 0.036253070968064585 1.6810970808370047e-05 2.564380198590561e-06 1.189132934366955e-09 0.020140594982258102 9.339428226872248e-06 0.2867519294673831 5.3393157573724036e-05']
['59907.13269044305 0.3067716888492249 5.256353840943304e-05 0.036200669672725616 1.6819995463584694e-05 2.5606735651782873e-06 1.1897712981390042e-09 0.02011148315151423 9.344441924213717e-06 0.28666020569771067 5.3387678025879205e-05']
['59907.13283072326 0.3067959802980926 5.256526519579025e-05 0.036226156997864994 1.6813756457711656e-05 2.5624764246370086e-06 1.1893299787502606e-09 0.020125642776591665 9.34097580983981e-06 0.2866703375215009 5.338877161148934e-05']
['59907.13297100347 0.306905035724439 5.256960864932795e-05 0.036255515552093075 1.6811783622027634e-05 2.5645531175380887e-06 1.1891904291720294e-09 0.020141953084496154 9.339879790015352e-06 0.2867630826399428 5.3392856338984464e-05']
['59907.13311128368 0.30684030072659785 5.2567439205597604e-05 0.036172133297307216 1.6810615649295426e-05 2.558655029531281e-06 1.1891078120014839e-09 0.02009562960961512 9.339230916275237e-06 0.2867446711169827 5.3390606839983675e-05']
['59907.133251563886 0.30692674199421643 5.257266863977484e-05 0.03628742291474926 1.6813294083845397e-05 2.56681010175487e-06 1.189297272489651e-09 0.020159679397082922 9.340718935469664e-06 0.2867670625971335 5.3396015938822685e-05']
['59907.133391844094 0.30685064121624117 5.2568198316721154e-05 0.03618055854524552 1.6811023764896818e-05 2.5592509939117943e-06 1.1891366802749569e-09 0.020100310302914173 9.339457647164898e-06 0.286750330913327 5.339139390771992e-05']
['59907.1335321243 0.3069220225906083 5.2573390814341406e-05 0.03620512412254785 1.6815821711037156e-05 2.5609886530484934e-06 1.1894760655393673e-09 0.020113957845859915 9.342123172798419e-06 0.2868080647447484 5.3396972639778135e-05']
['59907.13367240451 0.30687788450904907 5.256918276607363e-05 0.03622354430397311 1.6812925242963098e-05 2.5622916143491507e-06 1.1892711823342589e-09 0.02012419127998506 9.340514023868387e-06 0.286753693229064 5.3392547971818454e-05']
['59907.133812684726 0.30679344260273 5.256330910396858e-05 0.03617518993445605 1.6813760182868652e-05 2.5588712423808254e-06 1.189330242251216e-09 0.02009732774136447 9.340977879371472e-06 0.28669611486136554 5.3386846055018586e-05']
['59907.133952964934 0.306776449771833 5.257364861720039e-05 0.03623545044996649 1.681316468587208e-05 2.5631338018993823e-06 1.1892881194553934e-09 0.02013080580553694 9.34064704770671e-06 0.28664564396629605 5.339696823036574e-05']
['59907.13409324514 0.3069366211512572 5.257252439394736e-05 0.036168531850564414 1.6813651718819437e-05 2.5584002792862148e-06 1.1893225699891803e-09 0.02009362880586912 9.340917621566353e-06 0.28684299234538807 5.3395908674402e-05']
['59907.13423352535 0.3069051923772066 5.257173401189079e-05 0.03617722496205433 1.68198504311268e-05 2.5590151911370903e-06 1.18976103919119e-09 0.020098458312252408 9.344361350626e-06 0.28680673406495416 5.339573303240688e-05']
['59907.13437380556 0.30692256231738096 5.258548411218172e-05 0.03617453409297419 1.6814606774470267e-05 2.558824851085838e-06 1.1893901263570725e-09 0.020096963384985664 9.341448208039037e-06 0.2868255989323953 5.340876139675953e-05']
['59907.13451408577 0.3069064428849708 5.2569022381115676e-05 0.03620669367291463 1.6812928339593526e-05 2.5610996760259624e-06 1.1892714013760542e-09 0.02011482981828591 9.340515744218625e-06 0.28679161306668494 5.339239036112016e-05']
['59907.134654365975 0.3068612133872194 5.2585448902045126e-05 0.0362569714578119 1.6815338595654706e-05 2.5646561018011226e-06 1.1894418921166116e-09 0.02014276192100661 9.341854775363726e-06 0.2867184514662128 5.3408797841494105e-05']
['59907.13479464618 0.306900700452022 5.257059004596393e-05 0.036223219247315246 1.6816689133032065e-05 2.5622686212940915e-06 1.189537423094139e-09 0.020124010692952915 9.342605073906702e-06 0.2867766897590691 5.339429938998909e-05']
['59907.13493492639 0.306927493020288 5.25732922139034e-05 0.03628236020530154 1.681432128193333e-05 2.5664519883175173e-06 1.1893699318910861e-09 0.020156866780723075 9.341289601074073e-06 0.2867706262395649 5.3396729727761515e-05']
['59907.1350752066 0.3068104226521192 5.2563427394981634e-05 0.03621821446143679 1.6814766792439587e-05 2.5619146051111256e-06 1.189401445312984e-09 0.020121230256353772 9.341537106910882e-06 0.28668919239576546 5.3387060370723715e-05']
['59907.13521548681 0.3069058739276285 5.257085647965188e-05 0.036294130270388664 1.6820021585152744e-05 2.567284550112686e-06 1.1897731458619716e-09 0.02016340570577148 9.344456436195969e-06 0.28674246822185706 5.339488568292024e-05']
['59907.135355767015 0.30676506009292215 5.2566629721451455e-05 0.036157912391959895 1.6813067258316846e-05 2.5576491062507174e-06 1.1892812278656118e-09 0.020087729106644386 9.340592921287137e-06 0.2866773309862778 5.3390048102557306e-05']
['59907.13549604722 0.3069150390710138 5.2574799567495074e-05 0.03620952322058145 1.6812043223468198e-05 2.5612998255805793e-06 1.1892087922175848e-09 0.020116401789211917 9.340024013037888e-06 0.2867986372818019 5.339799245408393e-05']
['59907.13563632743 0.3068583735852018 5.256692258705137e-05 0.036192392393247425 1.6809417000688335e-05 2.560088067425262e-06 1.1890230249566622e-09 0.020106884662915235 9.338565000382408e-06 0.2867514889222866 5.338998170574157e-05']
['59907.13577660764 0.3068307731061822 5.2566316435851654e-05 0.036246865166156994 1.6812609510911456e-05 2.5639412279019197e-06 1.189248848860165e-09 0.020137147314531662 9.340338617173032e-06 0.28669362579165053 5.338969515849984e-05']
['59907.13591688785 0.3069312693716564 5.257511130253543e-05 0.036163566185746426 1.6812221524620365e-05 2.5580490303522057e-06 1.1892214044441298e-09 0.02009087010319246 9.340123069233536e-06 0.28684039926846394 5.339831670963437e-05']
['59907.136057168056 0.306877879388912 5.256946090620201e-05 0.036267493232763126 1.6816575020061548e-05 2.5654003651316065e-06 1.1895293512526597e-09 0.02014860735153507 9.342541677811971e-06 0.2867292720373769 5.339317657688438e-05']
['59907.136197448264 0.3068439880436898 5.2569325885052645e-05 0.036293365816443435 1.6812782818662738e-05 2.5672304760575086e-06 1.1892611078758505e-09 0.02016298100913524 9.340434899257076e-06 0.28668100703455457 5.339267504177072e-05']
['59907.13633772847 0.3069035680179995 5.258625022602014e-05 0.036214129070233844 1.6815937258692272e-05 2.5616256227980534e-06 1.1894842388640227e-09 0.020118960594574357 9.34218736594015e-06 0.28678460742342515 5.3409644986780574e-05']
['59907.13647800868 0.30684271570758603 5.2568611285428575e-05 0.03623521409105211 1.681312420475281e-05 2.563117082926241e-06 1.1892852560019562e-09 0.02013067449502895 9.340624558196005e-06 0.2867120412125571 5.339200464129122e-05']
['59907.13661828889 0.3069329013227772 5.2571216835516124e-05 0.036198172165606765 1.6812959821046296e-05 2.5604969026879e-06 1.1892736282333093e-09 0.020110095647559313 9.340533233914608e-06 0.28682280567521784 5.3394554035601025e-05']
['59907.1367585691 0.30686563875637907 5.256910009802653e-05 0.03613013061782468 1.6815929072287752e-05 2.555683947725614e-06 1.189483659794358e-09 0.020072294787680373 9.34218281793764e-06 0.2867933439686987 5.339275854383347e-05']
['59907.136898849305 0.3068683694811583 5.257025984548934e-05 0.03615553808739288 1.6826379964651984e-05 2.5574811585581635e-06 1.1902229092074642e-09 0.0200864100485516 9.347988869251102e-06 0.2867819594326067 5.3394916575662066e-05']
['59907.13703912951 0.3068523702487238 5.2568091067678045e-05 0.03624149424636308 1.681437244261627e-05 2.563561313042297e-06 1.1893735507691226e-09 0.02013416347020171 9.341318023675707e-06 0.2867182067785221 5.3391613769571914e-05']
['59907.13717940972 0.30688793685669835 5.257029948784609e-05 0.0361933958153402 1.681092558698713e-05 2.5601590450190723e-06 1.1891297356084552e-09 0.020107442119633445 9.339403103881739e-06 0.2867804947370649 5.339345314342037e-05']
['59907.13731968993 0.30695694707730786 5.2575382692032656e-05 0.036186074404392185 1.6812943562987164e-05 2.5596411611333905e-06 1.1892724782108756e-09 0.02010337466910677 9.340524201659536e-06 0.2868535724082011 5.3398654080187025e-05']
['59907.13745997014 0.3068334403245423 5.257309808606353e-05 0.03620634655518205 1.6822110885526563e-05 2.561075122469084e-06 1.1899209336317925e-09 0.020114636975101137 9.345617158625868e-06 0.28671880334944116 5.339729583455007e-05']
['59907.137600250346 0.3068706630664416 5.2570251128450276e-05 0.036154700137777385 1.6813590793387176e-05 2.557421885747778e-06 1.1893182603964229e-09 0.02008594452098744 9.340883774103987e-06 0.2867847185454542 5.339366454355467e-05']
['59907.137740530554 0.306932946570848 5.257082763056241e-05 0.03616055828518694 1.6812394907004725e-05 2.557836264911152e-06 1.1892336687390259e-09 0.020089199047326076 9.340219392780404e-06 0.28684374752352193 5.339411593113585e-05']
['59907.13788081076 0.30697403888336194 5.2575716164889345e-05 0.03626467306866181 1.6813133772235737e-05 2.565200879328471e-06 1.1892859327629344e-09 0.020147040593701003 9.340629873464298e-06 0.28682699828966096 5.339900089593494e-05']
['59907.13802109097 0.3068857615703271 5.2577478446427836e-05 0.03624973128774443 1.6813767959843e-05 2.5641439645322056e-06 1.1893307923596202e-09 0.02013873960430246 9.340982199912777e-06 0.28674702196602464 5.340079763677385e-05']
['59907.13816137118 0.3067845431376143 5.257103337325313e-05 0.03625174392286461 1.6811332431653852e-05 2.5642863293446573e-06 1.1891585139816904e-09 0.02013985773492478 9.339629128696584e-06 0.2866446854026895 5.339421525028055e-05']
['59907.13830165139 0.30696867091293706 5.2577902942670186e-05 0.03629147757394953 1.6816874734371335e-05 2.567096910223437e-06 1.1895505517032898e-09 0.020161931985527518 9.342708185761852e-06 0.28680673892740954 5.340151752612605e-05']
['59907.138441931595 0.30689488352108923 5.256893510759467e-05 0.036222750897528674 1.6812024211819125e-05 2.5622354923235897e-06 1.1892074474185063e-09 0.02012375049862704 9.340013451010624e-06 0.2867711330224622 5.339221656394834e-05']
['59907.1385822118 0.30682812478917226 5.2567143590568445e-05 0.03625662882924159 1.6817923230544326e-05 2.5646318657875186e-06 1.1896247176360653e-09 0.020142571571800882 9.343290683635737e-06 0.2866855532173714 5.339102608182723e-05']
['59907.13872249201 0.30687409574912816 5.257557622498729e-05 0.03620968927787209 1.6817772486691837e-05 2.5613115717310865e-06 1.1896140546897255e-09 0.02011649404326227 9.34320693705102e-06 0.2867576017058659 5.3399313958683095e-05']
['59907.13886277222 0.30680937525086327 5.2566476694017014e-05 0.03622722259943527 1.6812498730639944e-05 2.5625518005291308e-06 1.1892410127589169e-09 0.020126234777464037 9.340277072577747e-06 0.2866831404733992 5.338984217821921e-05']
['59907.13900305243 0.3068744753106296 5.2570157423117185e-05 0.03618352499242544 1.6814870374826884e-05 2.559460827126064e-06 1.1894087722680753e-09 0.020101958329125248 9.341594652681602e-06 0.28677251698150436 5.339369665181773e-05']
['59907.139143332635 0.30691533975655255 5.257766580532019e-05 0.03626590518852951 1.681354280912143e-05 2.5652880339806604e-06 1.1893148662039409e-09 0.020147725104738615 9.340857116178571e-06 0.28676761465181394 5.3400960227329247e-05']
['59907.13928361285 0.30689838904072564 5.256988015279972e-05 0.03623141469395149 1.6811915718514215e-05 2.562848330557649e-06 1.1891997730870536e-09 0.020128563718861937 9.339953176952342e-06 0.2867698253218637 5.339313649362986e-05']
['59907.13942389306 0.3068549893817839 5.2568137259021324e-05 0.03618646289660957 1.6812938469715592e-05 2.55966864133639e-06 1.1892721179356102e-09 0.020103590498116428 9.340521372064218e-06 0.28675139888366746 5.3391519873340324e-05']
['59907.13956417327 0.3069249869756455 5.257220157299869e-05 0.036242317247435415 1.681619881755087e-05 2.5636195284595556e-06 1.1895027403685806e-09 0.020134620693019675 9.34233267641715e-06 0.28679036628262583 5.339583839653477e-05']
['59907.139704453475 0.306901378402202 5.257117818651529e-05 0.03634509568336369 1.682128600341769e-05 2.570889615624551e-06 1.1898625851584168e-09 0.020191719824090938 9.345158890787605e-06 0.28670965857811104 5.339532536292299e-05']
['59907.13984473368 0.30687539023971777 5.257158336449493e-05 0.03619842831483508 1.6814882861483466e-05 2.560515021539391e-06 1.18940965551835e-09 0.020110237952686155 9.341601589713037e-06 0.2867651522870316 5.33951018138459e-05']
['59907.13998501389 0.3068619171132241 5.2566527011123744e-05 0.03614995817244924 1.6811731856069916e-05 2.5570864603158023e-06 1.1891867674795606e-09 0.02008331009580513 9.339851031149953e-06 0.286778607017419 5.338981718731836e-05']
['59907.1401252941 0.3069486194439281 5.2574082506220424e-05 0.03622363666498958 1.682153697920843e-05 2.5622981475546268e-06 1.1898803380640581e-09 0.020124242591660877 9.345298321782461e-06 0.2868243768522672 5.339820925924373e-05']
['59907.14026557431 0.30702889768508856 5.257654182218169e-05 0.036175689734740224 1.6810479702997058e-05 2.5589065960189523e-06 1.1890981957679814e-09 0.020097605408189015 9.339155390553921e-06 0.28693129227689956 5.33995559287578e-05']
['59907.140405854516 0.3069418075938984 5.257469158797413e-05 0.03635033471775326 1.6831447195742204e-05 2.571260201500163e-06 1.1905813424855963e-09 0.020194630398751807 9.350803997634557e-06 0.2867471771951466 5.3399772761433885e-05']
['59907.140546134724 0.30688552565103167 5.2574391752648925e-05 0.036272760889253575 1.6813904309719372e-05 2.565772975606702e-06 1.1893404371404267e-09 0.020151533827363097 9.341057949844095e-06 0.28673399182366854 5.3397771786689235e-05']
['59907.14068641493 0.30687907348467847 5.2570095037698156e-05 0.03617224076266369 1.6813986051562352e-05 2.5586626311502563e-06 1.1893462191930346e-09 0.02009568931259094 9.341103361979084e-06 0.28678338417208754 5.339354927602953e-05']
['59907.14082669514 0.3069368686467575 5.257255739652327e-05 0.03625502380592143 1.6814259306209055e-05 2.5645183336118827e-06 1.189365548005366e-09 0.020141679892178573 9.34125517011614e-06 0.28679518875457893 5.339600021878001e-05']
['59907.14096697535 0.3070024558919695 5.257743854233966e-05 0.0362194209705902 1.6815852077842004e-05 2.5619999481758593e-06 1.1894782135514106e-09 0.020121900539216777 9.342140043245558e-06 0.28688055535275275 5.340096089267604e-05']
['59907.14110725556 0.30698389955113237 5.257541115379133e-05 0.03637949614172249 1.686738291598718e-05 2.5733229502878527e-06 1.1931232747125098e-09 0.02021083118984583 9.370768286659544e-06 0.2867730683612865 5.3403980715602746e-05']
['59907.141247535765 0.3068270608474295 5.2565487277726e-05 0.03619248152183158 1.6816973894475904e-05 2.560094371982924e-06 1.1895575658458676e-09 0.020106934178795322 9.342763274708836e-06 0.28672012666863417 5.338930303302359e-05']
['59907.14138781597 0.3068132636451892 5.2565327329143434e-05 0.03621225000271812 1.681928659655013e-05 2.5614927059609285e-06 1.1897211560534286e-09 0.020117916668176732 9.344048109194517e-06 0.28669534697701243 5.338937040541811e-05']
['59907.14152809618 0.3068585111210232 5.258601894923289e-05 0.03623534069859811 1.6812279737000597e-05 2.5631260385781426e-06 1.1892255221277134e-09 0.020130744832554504 9.340155409444776e-06 0.2867277662884687 5.34090618902978e-05']
['59907.14166837639 0.30682383204429775 5.256627980202195e-05 0.036163565954806784 1.6812304064312636e-05 2.5580490140165676e-06 1.1892272429330304e-09 0.020090869974892657 9.340168924618131e-06 0.2867329620694051 5.338962940276757e-05']
['59907.1418086566 0.3068976969615387 5.256850627858331e-05 0.03622306371910952 1.681295144425284e-05 2.5622576199239886e-06 1.1892730356963822e-09 0.020123924288394178 9.340528580140465e-06 0.2867737726731445 5.339188446307054e-05']
['59907.141948936805 0.30692847192659867 5.258201123555358e-05 0.03616584354740347 1.6814759573437902e-05 2.5582101207366178e-06 1.1894009346730717e-09 0.02009213530411304 9.34153309635439e-06 0.28683633662248564 5.3405356905147324e-05']
['59907.14208921701 0.3069406167588813 5.2573118273690774e-05 0.036208430839573966 1.6813313724036417e-05 2.5612225554307657e-06 1.1892986617489773e-09 0.020115794910874427 9.340729846686898e-06 0.28682482184800684 5.339646054831974e-05']
['59907.14222949722 0.30693532226803893 5.257316474261092e-05 0.03625102741114827 1.6818853855617962e-05 2.5642356465084627e-06 1.189690545894125e-09 0.02013945967286015 9.343807697565535e-06 0.2867958625951788 5.3397044799715204e-05']
['59907.14236977743 0.30692821420901795 5.257347991706902e-05 0.03623268180137543 1.68168316469783e-05 2.5629379600731812e-06 1.1895475038936958e-09 0.02012926766743079 9.342684248321277e-06 0.28679894654158716 5.339715853446034e-05']
['59907.14251005764 0.3070151846090469 5.257660170196645e-05 0.03617297740480774 1.6811257038518002e-05 2.5587147379229294e-06 1.1891531810082478e-09 0.02009609855822652 9.339587243621113e-06 0.2869190860508204 5.3399690414911875e-05']
['59907.142650337846 0.3068726276655188 5.256808638298133e-05 0.03626174703667115 1.681658273325958e-05 2.564993904904045e-06 1.1895298968498124e-09 0.02014541502037286 9.342545962921988e-06 0.28672721264514595 5.339182400927971e-05']
['59907.142790618054 0.30684887839313413 5.257189419961038e-05 0.03620924295691658 1.681181080968328e-05 2.5612800009816314e-06 1.1891923523052682e-09 0.02011624608717588 9.33989489426849e-06 0.28673263230595825 5.3395109292621644e-05']
['59907.14293089826 0.30689644089402135 5.2580132462962773e-05 0.03625502384583894 1.6812334399101218e-05 2.5645183364354687e-06 1.1892293886803862e-09 0.020141679914354966 9.340185777278456e-06 0.2867547609796664 5.340327143702703e-05']
['59907.14307117847 0.30691665002839924 5.2572322884542146e-05 0.03622360932381924 1.681642495537057e-05 2.5622962135624444e-06 1.1895187363471696e-09 0.0201242274021218 9.342458308539206e-06 0.28679242262627747 5.339597981799142e-05']
['59907.14321145868 0.306914332267749 5.257822096449918e-05 0.036208210679855045 1.6811219250485804e-05 2.5612069823163052e-06 1.1891505080517526e-09 0.02011567259991947 9.33956625026989e-06 0.2867986596678295 5.340128104769474e-05']
['59907.14335173889 0.306922823020473 5.257096166599075e-05 0.03614432310856046 1.6813146090113924e-05 2.556687861083563e-06 1.1892868040745796e-09 0.02008017950475581 9.340636716729958e-06 0.2868426435157172 5.3394320903640985e-05']
['59907.143492019095 0.3068614011508356 5.2567737538179306e-05 0.03625015381709299 1.681973271914329e-05 2.5641738523697277e-06 1.189752712771618e-09 0.02013897434282944 9.344295955079605e-06 0.28672242680800614 5.339178679140662e-05']
['59907.1436322993 0.3068528850976847 5.257082621627444e-05 0.03626476926618283 1.681332317088654e-05 2.56520768391113e-06 1.1892993299769299e-09 0.020147094036768235 9.340735094936965e-06 0.2867057910609165 5.33942047527212e-05']
['59907.14377257951 0.306871635657203 5.256774937344852e-05 0.036261981008117616 1.6812805354373787e-05 2.565010454998377e-06 1.1892627019513215e-09 0.020145545004509786 9.340447419096549e-06 0.2867260906526932 5.339112503196205e-05']
['59907.14391285972 0.3068606457144967 5.258938737282175e-05 0.03623169627913795 1.681528190913259e-05 2.5628682486351274e-06 1.189437882365411e-09 0.02012872015507664 9.341823282851439e-06 0.28673192555942006 5.341267009330959e-05']
['59907.14405313993 0.3069002855722547 5.257071354925754e-05 0.036233600133383004 1.68159234329369e-05 2.5630029187746947e-06 1.1894832608918851e-09 0.020129777851879447 9.342179684964944e-06 0.2867705077203752 5.33943465578919e-05']
['59907.144193420136 0.3068851646813679 5.2570362251274326e-05 0.036211091024547865 1.6810191479753348e-05 2.5614107250254923e-06 1.1890778081440035e-09 0.02011727279141548 9.338995266529638e-06 0.28676789188995244 5.339344360329713e-05']
['59907.144333700344 0.3069127418723546 5.257107825952777e-05 0.036214896960509904 1.6809921334117266e-05 2.5616799399239145e-06 1.189058699249187e-09 0.020119387200283282 9.338845185620703e-06 0.28679335467207134 5.339412232418831e-05']
['59907.14447398055 0.3068796162598245 5.2569858418532394e-05 0.03619963182025496 1.6810780932134287e-05 2.5606001521334405e-06 1.189119503370734e-09 0.02011090656680831 9.339322740074605e-06 0.2867687096930162 5.339300481699654e-05']
['59907.14461426077 0.30681771437334815 5.256472919268543e-05 0.03621163599071209 1.6814310360816852e-05 2.5614492734960937e-06 1.189369159380121e-09 0.020117575550395603 9.34128353378714e-06 0.28670013882295253 5.3388297717373965e-05']
['59907.144754540976 0.3068417914993281 5.256554218573982e-05 0.03617001014686583 1.6812181167259018e-05 2.558504847358981e-06 1.189218549744775e-09 0.020094450081592125 9.340100648477232e-06 0.286747341417736 5.338889121722306e-05']
['59907.144894821184 0.306898259202644 5.256996786556827e-05 0.03622540360546127 1.6815574843127005e-05 2.5624231330258347e-06 1.189458603206838e-09 0.02012522422525626 9.341986023959446e-06 0.28677303497738776 5.3393578492724517e-05']
['59907.14503510139 0.3068781003376349 5.256810168811672e-05 0.03616275356216673 1.681141633798222e-05 2.5579915489923916e-06 1.18916444914032e-09 0.020090418645648183 9.339675743323456e-06 0.2867876816919867 5.339133691979069e-05']
['59907.1451753816 0.3068602442553627 5.256770222005433e-05 0.036174549858497454 1.681265947696607e-05 2.5588259662684856e-06 1.1892523832355332e-09 0.020096972143609695 9.340366376092261e-06 0.286763272111753 5.339106442782294e-05']
['59907.14531566181 0.3068963626989716 5.257066154983834e-05 0.036133490605419955 1.6820036795189794e-05 2.5559216182298435e-06 1.1897742217520077e-09 0.02007416144745553 9.344464886216552e-06 0.28682220125151603 5.339469524023323e-05']
['59907.145455942016 0.3069191077143947 5.257147812556195e-05 0.03623127531339912 1.6813470910299165e-05 2.5628384714003685e-06 1.1893097804026229e-09 0.020128486285221733 9.340817172388425e-06 0.28679062142917294 5.339486096764768e-05']
['59907.145596222224 0.3068992833084923 5.257047262259114e-05 0.03613735085453294 1.6812300951942404e-05 2.556194674997798e-06 1.1892270227778716e-09 0.02007630603029608 9.340167195523558e-06 0.2868229772781962 5.339375726620987e-05']
['59907.14573650243 0.30675216049278964 5.256163198599448e-05 0.036228612764284684 1.6813470323105135e-05 2.5626501345769076e-06 1.1893097388671416e-09 0.02012700709126927 9.340816846169518e-06 0.2866251534015204 5.338516663254693e-05']
['59907.14587678264 0.30682873522251525 5.2578766241354726e-05 0.03615753339394345 1.6812206620645863e-05 2.557622297625056e-06 1.1892203502035903e-09 0.02008751855219081 9.340114789247701e-06 0.28674121667032443 5.340191385839413e-05']
['59907.14601706285 0.3068626002363497 5.2575710520917984e-05 0.03621852801516676 1.681252374959557e-05 2.561936784500481e-06 1.1892427824880097e-09 0.02012140445287042 9.34029097199754e-06 0.2867411957834793 5.339893605888553e-05']
['59907.14615734306 0.30688392528838415 5.257180195075207e-05 0.03623040391474197 1.6813638257801327e-05 2.5627768325542845e-06 1.1893216178169264e-09 0.02012800217485665 9.34091014322296e-06 0.2867559231135275 5.3395196063436875e-05']
['59907.146297623265 0.30681065651417383 5.2564738542002585e-05 0.036221202529098544 1.682023252587999e-05 2.562125967661642e-06 1.1897880668661675e-09 0.020122890293943634 9.344573625488884e-06 0.2866877662202302 5.338888268386289e-05']
['59907.14643790347 0.30696183227109797 5.257464925495667e-05 0.03625147296981109 1.6815814787816082e-05 2.5642671633367407e-06 1.1894755758216535e-09 0.020139707205450608 9.34211932656449e-06 0.28682212506564736 5.33982109980614e-05']
['59907.14657818368 0.30698570442485007 5.25827419437193e-05 0.0362472821427878 1.681254385311895e-05 2.5639707229650075e-06 1.1892442045213961e-09 0.020137378968215446 9.340302140621638e-06 0.28684832545663463 5.3405861049119674e-05']
['59907.14671846389 0.30680242107802835 5.25663426076913e-05 0.036210363225949324 1.6808983578869314e-05 2.5613592438056997e-06 1.1889923666344662e-09 0.020116868458860734 9.338324210482953e-06 0.2866855526191676 5.338936855038907e-05']
['59907.1468587441 0.30687296886137916 5.257388780878734e-05 0.03619940921175866 1.6811771437615687e-05 2.560584405803414e-06 1.1891895673011893e-09 0.020110782895421477 9.339873020897603e-06 0.2867621859659577 5.3397068340663136e-05']
['59907.146999024306 0.30685744286747146 5.2566589262387316e-05 0.0361618392782722 1.681806999676984e-05 2.557926876636301e-06 1.1896350992228515e-09 0.02008991071015122 9.343372220427688e-06 0.28676753215732026 5.3390494576562906e-05']
['59907.147139304514 0.306905752719865 5.257043770123491e-05 0.036245095265465696 1.6813397537243395e-05 2.563816033038008e-06 1.1893045903206158e-09 0.020136164036369832 9.340776409579663e-06 0.28676958868349517 5.339382945653159e-05']
['59907.14727958472 0.3068363512621529 5.256741797202736e-05 0.03621343970100421 1.6813239076191437e-05 2.5615768599000485e-06 1.1892933814940796e-09 0.02011857761166901 9.34068837566191e-06 0.2867177736504839 5.3390840895953775e-05']
['59907.14741986493 0.30687837102934756 5.256880487281757e-05 0.036216563094750936 1.6814884207857284e-05 2.5617977948129433e-06 1.1894097507548158e-09 0.020120312830417188 9.341602337698491e-06 0.28675805819893035 5.3392366308228575e-05']
['59907.14756014514 0.30696476543925755 5.257306301329289e-05 0.03623600035934488 1.6816014974762732e-05 2.563172700030859e-06 1.1894897361514765e-09 0.020131111310747154 9.34223054153485e-06 0.2868336541285104 5.3396668679711206e-05']
['59907.14770042535 0.30687789363740753 5.256964948598196e-05 0.03626224333840307 1.6813440762052785e-05 2.5650290110702227e-06 1.1893076478504285e-09 0.02014569074355726 9.340800423362658e-06 0.28673220289385026 5.33930575976699e-05']
['59907.147840705555 0.30681766967607205 5.2566546277979555e-05 0.03621513049509742 1.681189330796121e-05 2.561696459116797e-06 1.1891981878647033e-09 0.02011951694172079 9.339940726645116e-06 0.2866981527343513 5.3389851848194996e-05']
['59907.14798098576 0.30684670937175706 5.256981007785041e-05 0.036230199091851926 1.68157989224308e-05 2.5627623442985474e-06 1.1894744535752127e-09 0.02012788838436218 9.342110512461554e-06 0.2867188209873949 5.339344492021757e-05']
['59907.14812126597 0.3069108103854671 5.2570424475721655e-05 0.03624631422568617 1.681455614670477e-05 2.563902256835573e-06 1.189386545175234e-09 0.020136841236492318 9.34142008150265e-06 0.28677396914897474 5.339392904344703e-05']
['59907.14826154618 0.30685874334201035 5.2568038550474196e-05 0.03618905962367056 1.6811396654975554e-05 2.559852322201998e-06 1.1891630568524062e-09 0.020105033124261425 9.339664808319751e-06 0.2867537102177489 5.3391272842814935e-05']
['59907.14840182639 0.3078365794845431 5.321167475904797e-05 0.0361543119527952 1.6812127509506952e-05 2.5573944272772225e-06 1.1892147542352298e-09 0.020085728862663996 9.340070838614973e-06 0.2877508506218791 5.4025172410026135e-05']
['59907.148542106595 0.30691618495921136 5.257289495178994e-05 0.036217409624512115 1.681170433647199e-05 2.5618576745444833e-06 1.1891848208662088e-09 0.02012078312472895 9.33983574248444e-06 0.28679540183448243 5.339608426943431e-05']
['59907.1486823868 0.30697885371577477 5.257418696940431e-05 0.03624078226240485 1.68116697123616e-05 2.5635109504794725e-06 1.1891823717114003e-09 0.020133767923558248 9.339816506867555e-06 0.2868450857922165 5.3397353004393746e-05']
['59907.14882266701 0.3068222903392299 5.256516843200978e-05 0.036285218564861034 1.681630162954816e-05 2.566654175896641e-06 1.1895100128297264e-09 0.02015845475825613 9.342389794193423e-06 0.2866638355809738 5.338892375158172e-05']
['59907.14896294722 0.30687072882687205 5.257432193993643e-05 0.03624996445910694 1.6813538831083278e-05 2.5641604580321753e-06 1.189314584815303e-09 0.0201388691439483 9.340854906157377e-06 0.28673185968292375 5.339766753166252e-05']
['59907.14910322743 0.30685227205114496 5.256719177329175e-05 0.03613399807778403 1.6811002458696192e-05 2.55595751455661e-06 1.1891351731695579e-09 0.02007444337654668 9.339445810386774e-06 0.2867778286745983 5.33904008130224e-05']
['59907.149243507636 0.306929824342716 5.257923176456669e-05 0.036199353830933784 1.681287454519534e-05 2.5605804884113997e-06 1.1892675962007733e-09 0.020110752128296546 9.340485858441855e-06 0.28681907221441943 5.3402437107530694e-05']
['59907.149383787844 0.3068902734258801 5.257043272290936e-05 0.036223816932730024 1.6813806232057034e-05 2.562310898888836e-06 1.1893334995649743e-09 0.020124342740405567 9.341003462253907e-06 0.2867659306854745 5.339386427629843e-05']
['59907.14952406805 0.30688683896625035 5.2571825946886374e-05 0.03621940103649063 1.681389950845938e-05 2.5619985381267557e-06 1.1893400975207552e-09 0.020121889464717012 9.341055282477432e-06 0.28676494950153336 5.33952450802505e-05']
['59907.14966434826 0.3068216281352033 5.25653381611894e-05 0.036231338630020746 1.6812211701565652e-05 2.5628429501351738e-06 1.1892207096051458e-09 0.020128521461122637 9.340117611980917e-06 0.28669310667408066 5.338869330678389e-05']
['59907.14980462847 0.3069794704436284 5.257471091810938e-05 0.036420409035607365 1.6866418725593828e-05 2.576216945531396e-06 1.1930550721937615e-09 0.020233560575337425 9.370232625329905e-06 0.28674590986829096 5.3403197353487803e-05']
['59907.149944908684 0.306914730935424 5.25740696260794e-05 0.0362639324193211 1.6822382049091493e-05 2.565148489104617e-06 1.1899401145303458e-09 0.020146629121845054 9.345767805050829e-06 0.2867681018135789 5.339827874486002e-05']
['59907.15008518889 0.3068192897368298 5.2568419903754815e-05 0.036215633962137145 1.6812753758860728e-05 2.561732072124822e-06 1.189259052315346e-09 0.02011979664563175 9.340418754922626e-06 0.2866994930911981 5.3391780207207886e-05']
['59907.1502254691 0.3069219637187622 5.2571013088868783e-05 0.03622757340431483 1.6814436832035424e-05 2.562576614898306e-06 1.1893781053888297e-09 0.020126429669063795 9.341353795575235e-06 0.2867955340496984 5.339449698165646e-05']
['59907.15036574931 0.30686111294248325 5.2568029642523986e-05 0.03621507347625729 1.6811163194345565e-05 2.5616924258589053e-06 1.1891465428909483e-09 0.020119485264587383 9.339535107969758e-06 0.28674162767789585 5.339124138405362e-05']
['59907.15050602952 0.3068797975652692 5.256949021687329e-05 0.03622571178114728 1.6812473581195904e-05 2.562444931996399e-06 1.1892392337996568e-09 0.02012539543397071 9.34026310066439e-06 0.28675440213129844 5.3392806785667014e-05']
['59907.150646309725 0.3068217638535663 5.256322866914799e-05 0.036266908909977164 1.6813227090672198e-05 2.5653590327494968e-06 1.1892925336920206e-09 0.02014828272776509 9.340681717040109e-06 0.2866734811258012 5.338671504282866e-05']
['59907.15078658993 0.3069225901055326 5.257067655698668e-05 0.03624404190056994 1.681378976225762e-05 2.5637415227135462e-06 1.1893323345649793e-09 0.020135578833649966 9.340994312365344e-06 0.2867870112718826 5.339410274930136e-05']
['59907.15092687014 0.3068325659327902 5.257489324784401e-05 0.03625247790526587 1.681827261203135e-05 2.5643382479790143e-06 1.189649431320814e-09 0.020140265502925483 9.34348478446186e-06 0.2866923004298647 5.33986901331827e-05']
['59907.15106715035 0.3068321473928271 5.256565436913816e-05 0.036193582453426326 1.6813506223642625e-05 2.5601722469630616e-06 1.1893122783106978e-09 0.02010754580745907 9.34083679091257e-06 0.28672460158536806 5.3389130459393695e-05']
['59907.15120743056 0.30689767011185975 5.256976619913425e-05 0.036246203086300964 1.6812502676012097e-05 2.563894395332227e-06 1.189241291836908e-09 0.02013677949238942 9.340279264451164e-06 0.28676089061947035 5.3393081339903714e-05']
['59907.151347710766 0.30701939889823665 5.25782994363296e-05 0.03619285666880606 1.6814587230050392e-05 2.5601209082030904e-06 1.1893887438721689e-09 0.020107142593781147 9.341437350027995e-06 0.2869122563044555 5.340168558557712e-05']
['59907.151487990974 0.30691078685795803 5.257089218776827e-05 0.03628670644969664 1.6816783547126328e-05 2.566759422219458e-06 1.189544101525161e-09 0.02015928136094258 9.342657526181292e-06 0.28675150549701545 5.339460604845275e-05']
['59907.15162827118 0.3068784499134168 5.257117507649064e-05 0.03626281784460377 1.6818161480521833e-05 2.565069649070969e-06 1.1896415703745594e-09 0.02014600991366876 9.343423044734352e-06 0.286732439999748 5.339501852341568e-05']
['59907.15176855139 0.30684397604432134 5.2571173131281584e-05 0.03622618527446727 1.681447409793153e-05 2.5624784247974643e-06 1.1893807414117513e-09 0.020125658485815146 9.341374498850848e-06 0.2867183175585062 5.339465817782677e-05']
['59907.1519088316 0.30693178220449285 5.257006839392222e-05 0.03627843125317831 1.6813772975491187e-05 2.566174071805703e-06 1.1893311471441544e-09 0.020154684029543506 9.340984986383993e-06 0.28677709817494934 5.339350233368767e-05']
['59907.152049111806 0.3069051644845977 5.2570817422973486e-05 0.03618144449625484 1.681743410489864e-05 2.559313662126226e-06 1.1895901190741524e-09 0.020100802497919356 9.34301894716591e-06 0.28680436198667836 5.339459567752821e-05']
['59907.152189392014 0.30693735591243054 5.257338954638504e-05 0.036195465237564145 1.6820660408136826e-05 2.560305426697421e-06 1.1898183333444948e-09 0.020108591798646745 9.344811337853791e-06 0.2868287641137838 5.339744176771045e-05']
['59907.15232967222 0.3069332961063106 5.257259522050986e-05 0.03624183414604745 1.6819237425700363e-05 2.563585356026707e-06 1.1897176779272966e-09 0.020134352303359693 9.344020792055757e-06 0.2867989438029509 5.3396521354690764e-05']
['59907.15246995243 0.30666962754612964 5.2572410278813125e-05 0.03622549060000515 1.680927429944796e-05 2.562429286631026e-06 1.1890129309087551e-09 0.020125272555558415 9.338485721915533e-06 0.28654435499057124 5.3395370942641424e-05']
['59907.15261023264 0.30687846823398657 5.256752229732427e-05 0.03621807598742749 1.6813302955403616e-05 2.5619048100786503e-06 1.1892979000240258e-09 0.020121153326348604 9.340723864113119e-06 0.28675731490763795 5.339094982096963e-05']
['59907.15275051285 0.30687020152241457 5.257056304643702e-05 0.036198386449658566 1.6813538754492858e-05 2.5605120601839307e-06 1.1893145793976388e-09 0.02011021469425476 9.340854863607142e-06 0.2867599868281598 5.3393966593636615e-05']
['59907.152890793055 0.306883627721914 5.256946644754123e-05 0.036234187024168495 1.6813350352308234e-05 2.563044432805613e-06 1.1893012526692068e-09 0.020130103902315833 9.340750195726797e-06 0.2867535238195982 5.339286859495501e-05']
['59907.15303107326 0.30674594775206576 5.256771792185928e-05 0.036182135546206175 1.6811511453884265e-05 2.559362543910972e-06 1.1891711772140874e-09 0.020101186414558984 9.339728585491257e-06 0.28664476133750677 5.339096831452682e-05']
['59907.15317135347 0.3068156086707545 5.2564926863829075e-05 0.03621980018692442 1.6816034965255395e-05 2.5620267722443448e-06 1.1894911501895753e-09 0.020122111214958008 9.342241647364107e-06 0.28669349745579653 5.338865998690588e-05']
['59907.15331163368 0.306856160562612 5.256646937824012e-05 0.0362806297782834 1.681542781587655e-05 2.5663295856448076e-06 1.189448203156314e-09 0.020155905432379665 9.341904342153638e-06 0.28670025513023234 5.339011968174828e-05']
['59907.15345191389 0.30693381219076366 5.257444101444358e-05 0.036237989291054026 1.6812035757819294e-05 2.5633133881699626e-06 1.1892082641309507e-09 0.02013221627280779 9.340019865455162e-06 0.28680159591795584 5.3397638703114056e-05']
['59907.153592194096 0.3068943799406107 5.258552722344118e-05 0.036234754277754105 1.6816148465391354e-05 2.563084557788785e-06 1.1894991786818773e-09 0.020130419043196728 9.342304702995196e-06 0.28676396089741396 5.3408953655083716e-05']
['59907.153732474304 0.3068956997570901 5.257136653959567e-05 0.03622768122423568 1.682405159631915e-05 2.56258424159758e-06 1.1900582108387934e-09 0.020126489569019825 9.346695331288417e-06 0.2867692101880703 5.33957797345113e-05']
['59907.15387275451 0.3068578570808804 5.257366259283727e-05 0.03631559588010527 1.6824934869135857e-05 2.5688029313984104e-06 1.1901206896098501e-09 0.02017533104450293 9.34718603840881e-06 0.2866825260363775 5.339812623362473e-05']
['59907.15401303472 0.3068644919941437 5.2569123777807005e-05 0.03616545721413599 1.6809741860824183e-05 2.558182793248084e-06 1.1890460041106328e-09 0.020091920674519995 9.338745478235658e-06 0.2867725713196237 5.339218053117573e-05']
['59907.15415331493 0.306840597001939 5.256673783226392e-05 0.03626223993401968 1.6812704590788154e-05 2.5650287702593585e-06 1.1892555743856605e-09 0.020145688852233154 9.340391439326752e-06 0.28669490814970583 5.3390119297167856e-05']
['59907.15429359514 0.3068474662242934 5.2567600496500574e-05 0.036235961219411375 1.6815593805326867e-05 2.5631699314469083e-06 1.1894599445081e-09 0.020131089566339654 9.341996558514927e-06 0.28671637665795374 5.339124948583796e-05']
['59907.154433875345 0.30686577215383787 5.2569835159741505e-05 0.03620287091119345 1.6817516810905603e-05 2.5608292709485454e-06 1.189595969327411e-09 0.02011270606177414 9.343064894947558e-06 0.28675306609206375 5.339363660918402e-05']
['59907.15457415555 0.3069607627746078 5.257404063809488e-05 0.03623278837390886 1.681063848798533e-05 2.562945498537845e-06 1.1891094275083246e-09 0.02012932687439381 9.339243604436294e-06 0.286831435900214 5.339710872434065e-05']
['59907.15471443576 0.3068711891532923 5.2570682931995006e-05 0.03627277665285243 1.682314007540663e-05 2.5657740906532258e-06 1.1899937339237004e-09 0.020151542584918015 9.34618893078146e-06 0.2867196465683743 5.339501803975922e-05']
['59907.15485471597 0.30693362343791686 5.257448105603728e-05 0.036309936318302816 1.681695184607029e-05 2.568402599293257e-06 1.1895560062402048e-09 0.020172186843501562 9.342751025594604e-06 0.2867614365944153 5.3398155914206173e-05']
['59907.15499499618 0.3068734551726724 5.256869637079261e-05 0.03626273242357184 1.6814570413203676e-05 2.56506360676898e-06 1.189387554323599e-09 0.020145962457539912 9.341428007335375e-06 0.2867274927151325 5.339222897895174e-05']
['59907.155135276385 0.30697654290852827 5.2577403114062437e-05 0.036164245583578954 1.6811425736089244e-05 2.5580970879181492e-06 1.1891651139204038e-09 0.020091247546432753 9.339680964494025e-06 0.2868852953620955 5.3400495866023146e-05']
['59907.1552755566 0.3068494860170363 5.2567760790826686e-05 0.03620154029084996 1.6819362416199267e-05 2.5607351488129694e-06 1.1897265191965146e-09 0.020111966828249978 9.344090231221816e-06 0.2867375191887863 5.3391773681071795e-05']
['59907.15541583681 0.3068254863873487 5.2566500827974285e-05 0.03624041906223041 1.6813108665806926e-05 2.563485259322542e-06 1.1892841568463795e-09 0.02013356614568356 9.340615925448292e-06 0.2866919202416651 5.338992522156366e-05']
['59907.15555611702 0.30688255882653814 5.2579062996677495e-05 0.036261800635182806 1.6811990214684543e-05 2.5649976962231882e-06 1.1892050426131644e-09 0.020145444797323782 9.339994563713636e-06 0.28673711402921437 5.3402185012027184e-05']
['59907.155696397225 0.3069017860165456 5.2570015958033424e-05 0.036259519896955486 1.681914017049698e-05 2.5648363669952874e-06 1.1897107985289146e-09 0.020144177720530825 9.34396676138721e-06 0.28675760829601477 5.339397243758698e-05']
['59907.15583667743 0.30696359939944273 5.2573673989046905e-05 0.036199165815843135 1.6818324152608215e-05 2.5605671890642652e-06 1.1896530770708486e-09 0.020110647675468406 9.343513418115675e-06 0.28685295172397435 5.339749469498634e-05']
['59907.15597695764 0.30687856819885817 5.256883280484117e-05 0.036221519176413544 1.6814094101493235e-05 2.562148365877375e-06 1.1893538621621906e-09 0.020123066209118638 9.341163389718463e-06 0.28675550198973954 5.3392317012251505e-05']
['59907.15611723785 0.3069344773098388 5.2573720587828325e-05 0.03620867639125092 1.6812913784192903e-05 2.5612399246588423e-06 1.189270371792073e-09 0.020115931328472735 9.340507657884946e-06 0.2868185459813661 5.339701470825922e-05']
['59907.15625751806 0.3070014520066653 5.258227080564172e-05 0.0362234809514886 1.6818199709848228e-05 2.5622871330775656e-06 1.1896442745462335e-09 0.020124156084160332 9.343444283249015e-06 0.28687729592250494 5.340594680512667e-05']
['59907.156397798266 0.3069286727751914 5.2571873577384335e-05 0.03616275589994937 1.6816923711558634e-05 2.557991714356686e-06 1.1895540161306044e-09 0.020090419944416314 9.342735395310353e-06 0.28683825283077513 5.339558592340069e-05']
['59907.156538078474 0.30696604929140686 5.2577832793325106e-05 0.03625468753543318 1.6814045313384642e-05 2.5644945473405843e-06 1.1893504111094587e-09 0.020141493075240654 9.341136285213689e-06 0.2868245562161662 5.3401173473452704e-05']
['59907.15667835868 0.30693340149591886 5.257345090089645e-05 0.03646247610481641 1.68688885490881e-05 2.579192581978511e-06 1.193229776468285e-09 0.020256931169342452 9.371604749493388e-06 0.2866764703265764 5.340219766273385e-05']
['59907.15681863889 0.30699437910546246 5.2581115233996265e-05 0.036255381265051866 1.6816046560010844e-05 2.5645436186730213e-06 1.1894919703507503e-09 0.02014187848058437 9.342248088894913e-06 0.2868525006248781 5.3404599788831434e-05']
['59907.1569589191 0.3068581086752119 5.257046430708217e-05 0.03617231614362183 1.6814924047674415e-05 2.558667963262302e-06 1.1894125688454062e-09 0.020095731190901016 9.34162447093023e-06 0.2867623774843109 5.3394004019347366e-05']
['59907.15709919931 0.3068459612656599 5.256731796116937e-05 0.03619299257993265 1.6813291690630535e-05 2.5601305219486984e-06 1.1892971032043287e-09 0.020107218099962583 9.340717605905852e-06 0.2867387431656973 5.339074754134802e-05']
['59907.157239479515 0.3069061635618404 5.256976236367903e-05 0.03623062582819604 1.6816414464843518e-05 2.5627925297201306e-06 1.1895179942941758e-09 0.02012812546010891 9.34245248046862e-06 0.2867780381017315 5.3393457776430805e-05']
['59907.15737975972 0.30696416280728844 5.257432210630816e-05 0.036202993336109754 1.682351392189524e-05 2.5608379307399174e-06 1.1900201781533091e-09 0.02011277407561653 9.346396623275132e-06 0.28685138873167193 5.339863738689791e-05']
['59907.15752003993 0.30683896177320313 5.2576966607847264e-05 0.0362600984907373 1.681867088997707e-05 2.564877294133251e-06 1.1896776037224966e-09 0.020144499161520724 9.343706049987261e-06 0.2866944626116824 5.340077022320235e-05']
['59907.15766032014 0.3069282944078572 5.257183775346583e-05 0.036292070876418434 1.681607936365608e-05 2.5671388777881814e-06 1.1894942907339907e-09 0.020162261598010243 9.342266313142267e-06 0.2867660328098469 5.339546857779608e-05']
['59907.15780060035 0.3069114826527206 5.2571451176219156e-05 0.03625771337939512 1.681615236787043e-05 2.5647085820177256e-06 1.1894994547258041e-09 0.020143174099663957 9.342306871039128e-06 0.2867683085530567 5.339509505981106e-05']
['59907.157940880556 0.3068957613891353 5.2577403332908916e-05 0.036134512365658025 1.6811435615036375e-05 2.555993892982085e-06 1.1891658127129674e-09 0.02007472909203224 9.339686452797986e-06 0.2868210322971031 5.3400497041394287e-05']
['59907.158081160764 0.30687824531728525 5.2568751549740696e-05 0.03617392763438321 1.6815957763416723e-05 2.558781952915822e-06 1.1894856892765795e-09 0.020096626463546225 9.342198757453734e-06 0.28678161885373904 5.339241816140317e-05']
['59907.15822144097 0.30692272370233076 5.25712403884259e-05 0.03629490127206999 1.6817952091623014e-05 2.5673390873254483e-06 1.1896267591397702e-09 0.02016383404003888 9.343306717568341e-06 0.2867588896622919 5.3395062472069645e-05']
['59907.15836172118 0.3068331696402182 5.256466873799351e-05 0.036291319576161614 1.681391482135961e-05 2.5670857341661282e-06 1.1893411806868728e-09 0.020161844208978673 9.341063789644227e-06 0.2866713254312395 5.338819974729617e-05']
['59907.15850200139 0.3072949311448626 5.2756446934876e-05 0.03623637160253692 1.681438068599977e-05 2.5631989601149046e-06 1.1893741338692256e-09 0.020131317556964953 9.341322603333206e-06 0.28716361358789766 5.3577075332383823e-05']
['59907.158642281596 0.30692414988174477 5.257180681775256e-05 0.03628977074078044 1.681938740390593e-05 2.566976176474151e-06 1.1897282867151955e-09 0.020160983744878024 9.344104113281074e-06 0.28676316613686675 5.339575969834057e-05']
['59907.158782561804 0.3068531591890575 5.256760956561402e-05 0.03625000074270763 1.681618002022033e-05 2.5641630245719095e-06 1.1895014107294372e-09 0.02013888930150424 9.342322233455738e-06 0.2867142698875532 5.339131540013372e-05']
['59907.15892284201 0.30679493646770883 5.256611581118204e-05 0.036194478925131265 1.6812439747944968e-05 2.560235659364476e-06 1.1892368405867113e-09 0.020108043847295146 9.34024430441387e-06 0.2866868926204137 5.338948112822167e-05']
['59907.15906312222 0.30693258275118884 5.257140319074619e-05 0.03624853390652025 1.6818314255955806e-05 2.564059267136386e-06 1.1896523770258926e-09 0.020138074392511248 9.343507919975447e-06 0.2867945083586776 5.339525797011045e-05']
['59907.15920340243 0.3069062770305544 5.2569529861696936e-05 0.0362162377747835 1.681263698403629e-05 2.5617747831325415e-06 1.1892507921862179e-09 0.020120132097101943 9.34035388002016e-06 0.28678614493345245 5.339286169970527e-05']
['59907.15934368264 0.30696672576380285 5.257442354702193e-05 0.03621331740030512 1.68135761988993e-05 2.561568208895246e-06 1.189317228047584e-09 0.020118509666836176 9.340875666055167e-06 0.28684821609696665 5.3397771203584484e-05']
['59907.159483962845 0.30689794652723534 5.256821218906291e-05 0.0362381982807983 1.6816724134956604e-05 2.5633281711703433e-06 1.1895398989738316e-09 0.020132332378221277 9.342624519420336e-06 0.2867656141490141 5.339196162031525e-05']
['59907.15962424305 0.30686768056468405 5.256869516458656e-05 0.03617854519774169 1.681095951320097e-05 2.5591085787085077e-06 1.1891321353971808e-09 0.02009919177652316 9.339421951778317e-06 0.2867684887881609 5.339187685126442e-05']
['59907.15976452326 0.3068841399218482 5.2570389949584524e-05 0.03625951966476822 1.6814034605072495e-05 2.5648363505713978e-06 1.1893496536513207e-09 0.020144177591537898 9.341130336151386e-06 0.2867399623303103 5.339384435876803e-05']
['59907.15990480347 0.30692105104284567 5.257261549841727e-05 0.03623999149604462 1.6812359686379786e-05 2.5634550152016676e-06 1.1892311773894446e-09 0.020133328608913675 9.340199825766548e-06 0.286787722433932 5.3395872809887407e-05']
['59907.16004508368 0.30695810861513306 5.257482958591107e-05 0.03612405840571202 1.6811154859033534e-05 2.5552544265819557e-06 1.1891459532882319e-09 0.02006892133650668 9.339530477240851e-06 0.2868891872786264 5.339793568596917e-05']
['59907.160185363886 0.30689787768064897 5.2573780216426466e-05 0.036168368720380276 1.6815242686571e-05 2.5583887401861378e-06 1.1894351079367186e-09 0.02009353817798904 9.341801492539446e-06 0.28680433950265993 5.339729975730165e-05']
['59907.160325644094 0.3068015290955085 5.2566740303014614e-05 0.03621569465466519 1.6813055421751e-05 2.561736365242976e-06 1.18928039059985e-09 0.020119830363702882 9.340586345417222e-06 0.2866816987318056 5.3390155828212146e-05']
['59907.1604659243 0.30682618454090727 5.256646662756254e-05 0.03623917212726081 1.6814366175134074e-05 2.563397056716264e-06 1.1893731074354458e-09 0.020132873404033785 9.341314541741151e-06 0.28669331113687346 5.3390013776682915e-05']
['59907.16060620451 0.30687619628473 5.257524913473161e-05 0.036183031083656204 1.68245600369193e-05 2.5594258902273704e-06 1.1900941756542522e-09 0.02010168393536456 9.3469777982885e-06 0.28677451234936546 5.339965182977127e-05']
['59907.160746484726 0.3069475004551852 5.2581250954487676e-05 0.03627850613910123 1.6814723077220128e-05 2.56617936890117e-06 1.1893983530937549e-09 0.02015472563283402 9.341512820677849e-06 0.2867927748223512 5.3404604798815805e-05']
['59907.160886764934 0.30689969235538206 5.258053172812267e-05 0.03618259432946396 1.6813601968258985e-05 2.5593949961879876e-06 1.1893190508569059e-09 0.020101441294146646 9.340889982366102e-06 0.2867982510612354 5.340378771655417e-05']
['59907.16102704514 0.3068517813451267 5.2576482716240474e-05 0.0361872064385996 1.681322063974351e-05 2.559721236173328e-06 1.1892920773821592e-09 0.02010400357699978 9.340678133190837e-06 0.28674777776812693 5.3399764070630525e-05']
['59907.16116732535 0.3068322031395189 5.257356276128634e-05 0.03623406290704207 1.6813240854017086e-05 2.5630356533148607e-06 1.1892935072495195e-09 0.020130034948356707 9.340689363342825e-06 0.28670216819116223 5.3396891100488044e-05']
['59907.16130760556 0.3069661346566962 5.2582552753525764e-05 0.03621613469067523 1.6813178616680145e-05 2.561767491423481e-06 1.1892891048584888e-09 0.020120074828152902 9.340654787044525e-06 0.2868460598285433 5.340573645150919e-05']
['59907.16144788577 0.30687283926352055 5.257824021976878e-05 0.036233139999677325 1.6812435681242037e-05 2.562970370973032e-06 1.1892365529263231e-09 0.02012952222204296 9.340242045134465e-06 0.2867433170414776 5.3401418202791284e-05']
['59907.161588165975 0.3069360882686377 5.258802031324891e-05 0.03629471463111352 1.6815052222279582e-05 2.567325885178424e-06 1.1894216353440688e-09 0.020163730350618622 9.341695679044212e-06 0.2867723579180191 5.341130178741718e-05']
['59907.16172844618 0.30687692870951344 5.257568832679843e-05 0.03619442477750942 1.6821747321911094e-05 2.5602318292037324e-06 1.189895216766668e-09 0.020108013765283008 9.345415178839497e-06 0.28676891494423046 5.339981074780633e-05']
['59907.16186872639 0.3068343383757695 5.257974235875077e-05 0.03619182048452697 1.6814184826422974e-05 2.5600476131586585e-06 1.1893602796382037e-09 0.020106566935848315 9.341213792457207e-06 0.2867277714399212 5.340306715563258e-05']
['59907.1620090066 0.30689130972285333 5.2579033065730464e-05 0.036199736858572334 1.681340401935014e-05 2.560607582074518e-06 1.1893050488358737e-09 0.020110964921429074 9.340780010750079e-06 0.2867803448014243 5.340229292208721e-05']
['59907.16214928681 0.3068944618401371 5.257800153278131e-05 0.03621864964426463 1.6813780544954764e-05 2.5619453879992147e-06 1.1893316825741744e-09 0.020121472024591462 9.340989191641535e-06 0.2867729898155456 5.340131388139732e-05']
['59907.162289567015 0.30694675548549966 5.2583491466737025e-05 0.03619607538390576 1.6811846721412743e-05 2.5603485857224334e-06 1.1891948925404944e-09 0.020108930768836533 9.3399148452293e-06 0.28683782471666314 5.340653128736728e-05']
['59907.16242984722 0.30687580611524196 5.2576436531882764e-05 0.0362533147388 1.681767923871189e-05 2.564397441842793e-06 1.189607458744418e-09 0.020140730410444445 9.343155132617717e-06 0.2867350757047975 5.340015193071324e-05']
['59907.16257012743 0.30696189370892896 5.2587836768793574e-05 0.03623774076276895 1.6815746262266132e-05 2.5632958083899326e-06 1.1894707286305413e-09 0.020132078201538305 9.342081256814518e-06 0.2868298155073907 5.341118851167986e-05']
['59907.16271040764 0.3067950705004071 5.2572417674652837e-05 0.03623939386059609 1.681272768684428e-05 2.563412741141312e-06 1.1892572080974377e-09 0.02013299658922005 9.340404270469045e-06 0.28666207391118703 5.3395713798899124e-05']
['59907.16285068785 0.30689483164731535 5.257767472200482e-05 0.036222612404015246 1.68147385131288e-05 2.5622256959114794e-06 1.1893994449609399e-09 0.020123673557786246 9.341521396182666e-06 0.2867711580895291 5.3401085205904594e-05']
['59907.162990968056 0.3069569903837804 5.258292282801105e-05 0.03618248726948281 1.681208946643586e-05 2.5593874232434506e-06 1.1892120632384234e-09 0.020101381816379337 9.34004970357548e-06 0.28685560856740105 5.34059949968337e-05']
['59907.163131248264 0.3069208810270112 5.25801411237253e-05 0.03618042027781237 1.6813166450143724e-05 2.559241213491593e-06 1.1892882442520836e-09 0.02010023348767354 9.340648027857624e-06 0.28682064753933767 5.340336081344683e-05']
['59907.16327152847 0.3068860930433047 5.257535770078111e-05 0.036217530763757465 1.681359061704809e-05 2.561866243393239e-06 1.189318247922984e-09 0.0201208504243097 9.340883676137827e-06 0.286765242618995 5.339869235492777e-05']
['59907.16341180868 0.3069306690670642 5.258169921367388e-05 0.036204299943529875 1.6816503392805e-05 2.560930354308625e-06 1.1895242846606864e-09 0.020113499968627706 9.342501884891666e-06 0.28681716909843646 5.340521916129993e-05']
['59907.16355208889 0.30685301461910053 5.2579707934976726e-05 0.03623916052272769 1.6815128151477793e-05 2.56339623586346e-06 1.1894270062361667e-09 0.02013286695707094 9.341737861932106e-06 0.2867201476620296 5.3403124934862284e-05']
['59907.1636923691 0.3068250213110189 5.2575809347518465e-05 0.03620709668468141 1.680964192280474e-05 2.5611281832769876e-06 1.189038934941834e-09 0.020115053713711892 9.338689957113745e-06 0.286709967597307 5.33987533437037e-05']
['59907.163832649305 0.3068412478399002 5.259096550081733e-05 0.036184197335807265 1.6811997175812923e-05 2.559508385691696e-06 1.1892055350122714e-09 0.020102331853226258 9.339998431007179e-06 0.28673891598667395 5.341390477206638e-05']
['59907.16397292951 0.306891443909977 5.257868215886684e-05 0.036229781657157956 1.6813814641579624e-05 2.562732816834119e-06 1.189334094417014e-09 0.020127656476198866 9.341008134210903e-06 0.2867637874337782 5.340198732750061e-05']
['59907.16411320972 0.30688826445407186 5.257811318327229e-05 0.036252626880531935 1.6811826612831978e-05 2.5643487858234558e-06 1.189193470149371e-09 0.020140348266962187 9.339903673795543e-06 0.28674791618710965 5.340123394219249e-05']
['59907.16425348993 0.30702323916763924 5.258623208737391e-05 0.03622240317993074 1.6815553973508885e-05 2.5622108963349176e-06 1.1894571269833337e-09 0.020123557322183742 9.341974429727157e-06 0.2868996818454555 5.3409589882275163e-05']
['59907.16439377014 0.30686670845733544 5.257626455066403e-05 0.036185156106329906 1.681518570792821e-05 2.5595762048330155e-06 1.189431077522207e-09 0.020102864503516612 9.341769837737893e-06 0.2867638439538188 5.3399740240966344e-05']
['59907.164534050346 0.3068513859332882 5.257408005172785e-05 0.03620618030538958 1.6816563706590395e-05 2.5610633627018576e-06 1.1895285509882787e-09 0.02011454461410532 9.34253539255022e-06 0.28673684131918287 5.339772336763564e-05']
['59907.164674330554 0.3068585188126457 5.25817556479236e-05 0.03617088249819015 1.681896111267965e-05 2.5585665535924827e-06 1.1896981327792579e-09 0.020094934721216748 9.343867284822027e-06 0.28676358409142894 5.3405513599761524e-05']
['59907.16481461076 0.30685797272078386 5.2576796830111936e-05 0.0362442081040831 1.6812293636275205e-05 2.5637532792071812e-06 1.189226505300273e-09 0.020135671168935058 9.340163131264003e-06 0.2867223015518488 5.3399983260610595e-05']
['59907.16495489097 0.3069646904773611 5.2582582755986946e-05 0.036219660353645385 1.6816034077551402e-05 2.562016881063204e-06 1.1894910873973627e-09 0.02012203352980299 9.342241154195223e-06 0.28684265694755806 5.34060434695677e-05']
['59907.16509517118 0.30687618516143 5.257810501642674e-05 0.03623889512779866 1.6811303325335893e-05 2.5633774630124264e-06 1.1891564551308555e-09 0.020132719515443702 9.339612958519941e-06 0.2867434656459863 5.340117505573592e-05']
['59907.165235451386 0.3068761866275558 5.2577538310884056e-05 0.036199253891209135 1.6812663600094665e-05 2.5605734191219824e-06 1.1892526748872208e-09 0.020110696606227295 9.340368666719259e-06 0.2867654900213285 5.3400749261248304e-05']
['59907.165375731594 0.30689714237897525 5.257775398204856e-05 0.03620019532687607 1.6819559925527126e-05 2.5606400120730917e-06 1.1897404901235524e-09 0.02011121962604226 9.34419995862618e-06 0.286785922752933 5.3401631872664834e-05']
['59907.1655160118 0.3070041555982195 5.2589078904350265e-05 0.03624269355204497 1.68112341783657e-05 2.563646146565653e-06 1.1891515639832528e-09 0.020134829751136094 9.339574543536499e-06 0.28686932584708336 5.34119731208486e-05']
['59907.16565629201 0.3068851279521464 5.2577930359163897e-05 0.03623541800240758 1.6812498608279896e-05 2.5631315067040968e-06 1.189241004103714e-09 0.02013078777911532 9.340277004599943e-06 0.2867543401730311 5.340111923336202e-05']
['59907.16579657222 0.30688050926856614 5.258179865381492e-05 0.03623563193486065 1.6813945761837138e-05 2.5631466393296055e-06 1.1893433692779576e-09 0.02013090663047814 9.34108097879841e-06 0.286749602638088 5.34050685190348e-05']
['59907.16593685243 0.3068864360159024 5.257914403528764e-05 0.036193354188783854 1.6813402908807717e-05 2.560156100542536e-06 1.1893049702810665e-09 0.02010741899376881 9.340779393782064e-06 0.28677901702213354 5.340240207300443e-05']
['59907.16607713264 0.30682107840121553 5.25747780358912e-05 0.03620699367868726 1.6809904860935835e-05 2.5611208970933712e-06 1.1890575340099634e-09 0.02011499648815959 9.338836033853242e-06 0.28670608191305597 5.3397763473673914e-05']
['59907.16621741285 0.30701995571636176 5.25873593911312e-05 0.03618405281217622 1.681052966470658e-05 2.559498162736019e-06 1.1891017298359974e-09 0.020102251562320123 9.339183147059211e-06 0.2869177041540416 5.3410211660190126e-05']
['59907.16635769306 0.30678253744516926 5.2575995755684034e-05 0.036246373440040586 1.68152321417216e-05 2.5639064453943316e-06 1.1894343620412047e-09 0.02013687413335588 9.341795634289778e-06 0.2866456633118134 5.339948010397237e-05']
['59907.16649797327 0.3068853217600783 5.258810395918671e-05 0.036161479570878015 1.681272596601305e-05 2.557901432543034e-06 1.189257086373528e-09 0.02008971087271001 9.340403314451694e-06 0.2867956108873683 5.3411158123549885e-05']
['59907.166638253475 0.3068518393953388 5.257475939147618e-05 0.03619450156673795 1.6810293953281658e-05 2.560237260930531e-06 1.1890850566633664e-09 0.020108056425965526 9.339052196267587e-06 0.28674378296937325 5.339778292210477e-05']
['59907.16677853368 0.3068404153027977 5.25808492535864e-05 0.036195528829504865 1.6812336484776387e-05 2.5603099249070684e-06 1.189229536211725e-09 0.020108627127502703 9.340186935986881e-06 0.286731788175295 5.340397738209728e-05']
['59907.16691881389 0.3069634148696545 5.258199940260694e-05 0.03624108501755211 1.681447113044751e-05 2.5635323660253542e-06 1.1893805315051957e-09 0.020133936120862284 9.341372850248616e-06 0.2868294787487922 5.3405317225002215e-05']
['59907.1670590941 0.3068638850420501 5.2576063691167e-05 0.03622129175187766 1.681741846557246e-05 2.5621322788822344e-06 1.1895890128181222e-09 0.020122939862154257 9.343010258651367e-06 0.28674094517989585 5.3399759493380806e-05']
['59907.16719937431 0.3068033556496237 5.257209106373652e-05 0.03616656855385956 1.6814056699260313e-05 2.558261404452733e-06 1.1893512164954118e-09 0.02009253808547753 9.341142610700173e-06 0.2867108175641462 5.339552138604176e-05']
['59907.167339654516 0.3069385803956385 5.257823010484958e-05 0.03624044757999349 1.6813322806888756e-05 2.5634872765416358e-06 1.1892993042293538e-09 0.020133581988885273 9.340734892715975e-06 0.2868049984067532 5.340149444813799e-05']
['59907.167479934724 0.30706102271797847 5.2585314020981736e-05 0.036210614481510445 1.6813572383602338e-05 2.561377016501047e-06 1.1893169581705303e-09 0.020117008045283578 9.340873546445744e-06 0.28694401467269487 5.340849341908034e-05']
['59907.16762021493 0.3068315360079553 5.25850010026764e-05 0.036212247534601824 1.681458483167955e-05 2.5614925313774134e-06 1.1893885742221356e-09 0.02011791529700101 9.341436017599749e-06 0.2867136207109543 5.3408283602100416e-05']
['59907.16776049514 0.30689181044553815 5.257886751616448e-05 0.03620752430749741 1.6811283632338355e-05 2.5611584314036296e-06 1.1891550621362322e-09 0.020115291281943004 9.339602017965752e-06 0.28677651916359514 5.340192388984096e-05']
['59907.16790077535 0.3068679544258853 5.25760386080978e-05 0.03614024551973745 1.681115260510196e-05 2.556399430675973e-06 1.189145793855187e-09 0.020077914177631915 9.339529225056644e-06 0.2867900402482534 5.339912585301259e-05']
['59907.16804105556 0.30685748019652337 5.257772438673344e-05 0.03624160762251885 1.6812053546776704e-05 2.5635693327647946e-06 1.189209522442286e-09 0.020134226456954916 9.34002974820928e-06 0.2867232537395685 5.340087318934718e-05']
['59907.168181335765 0.3069481003433856 5.2591448400727246e-05 0.03624223231962457 1.681485420774618e-05 2.5636135210458212e-06 1.1894076286810489e-09 0.020134573510902535 9.3415856709701e-06 0.28681352683248307 5.341465779853345e-05']
['59907.16832161597 0.306822158901383 5.2574599255150515e-05 0.03620529405040005 1.6814963847514075e-05 2.561000672985225e-06 1.1894153841081688e-09 0.02011405225022225 9.341646581952263e-06 0.28670810665116075 5.339807906378069e-05']
['59907.16846189618 0.306903239640213 5.257931737704141e-05 0.03619860197012822 1.6817935315195633e-05 2.560527305138634e-06 1.1896255724502834e-09 0.020110334427849007 9.343297397330907e-06 0.286792905212364 5.340301323044065e-05']
['59907.16860217639 0.3069686527280998 5.258382207630184e-05 0.036281508763748915 1.6812959716846593e-05 2.5663917611478045e-06 1.1892736208626881e-09 0.020156393757638284 9.340533176025884e-06 0.28681225897046153 5.340696494058251e-05']
['59907.1687424566 0.30693354927721994 5.258270974012619e-05 0.0361612260544282 1.6812183406693432e-05 2.557883499922526e-06 1.1892187081523556e-09 0.02008957003023789 9.340101892607462e-06 0.2868439792469821 5.3405794320266884e-05']
['59907.168882736805 0.3068656014618245 5.258970119671899e-05 0.03624626777568862 1.681520841324326e-05 2.5638989711703658e-06 1.1894326835947072e-09 0.020136815430938124 9.341782451801812e-06 0.28672878603088636 5.341297193881818e-05']
['59907.16902301701 0.30690205428437595 5.257739721050391e-05 0.036276038280519035 1.6817013110480415e-05 2.566004803615744e-06 1.1895603398107415e-09 0.020153354600288356 9.342785061378008e-06 0.2867486996840876 5.340103304369881e-05']
['59907.16916329722 0.30689518742736777 5.257786133377717e-05 0.03623226816760552 1.6823798183572556e-05 2.562908701469132e-06 1.1900402855537876e-09 0.020129037870891955 9.346554546429196e-06 0.28676614955647584 5.340214962268164e-05']
['59907.16930357743 0.3068686187678463 5.257533464158809e-05 0.03619891264907764 1.6811148427072105e-05 2.560549281178863e-06 1.1891454983200297e-09 0.020110507027265356 9.339526903928947e-06 0.28675811174058097 5.3398432331522476e-05']
['59907.16944385764 0.30692719304367766 5.258700375182382e-05 0.03619860071316658 1.681294144381788e-05 2.5605272162267862e-06 1.1892723283103126e-09 0.020110333729536987 9.340523024343267e-06 0.2868168593141407 5.341009580559297e-05']
['59907.169584137846 0.3069543012599121 5.258725282256079e-05 0.03618876527845184 1.6811167184873996e-05 2.5598315015368714e-06 1.189146825163093e-09 0.020104869599139912 9.339537324929998e-06 0.28684943166077215 5.341016866541135e-05']
['59907.169724418054 0.3068349178441375 5.2589049021765834e-05 0.03620678594307113 1.6811755020688493e-05 2.56110620280441e-06 1.1891884060411389e-09 0.020114881079483962 9.339863900382495e-06 0.2867200367646536 5.341199429614437e-05']
['59907.16986469826 0.30685793162383357 5.257564181174265e-05 0.03619940740762957 1.6815444394471133e-05 2.560584278187386e-06 1.1894493758519928e-09 0.02011078189312754 9.341913552483964e-06 0.28674714973070603 5.339915224737885e-05']
['59907.17000497847 0.3068900606087176 5.257827133231522e-05 0.036208848424575266 1.6820023670662644e-05 2.5612520935272625e-06 1.1897732933816203e-09 0.020116026902541814 9.344457594812581e-06 0.28677403370617577 5.340218632261989e-05']
['59907.17014525868 0.30713804341750967 5.2635420532324546e-05 0.03621854137022897 1.681237633920795e-05 2.5619377291778883e-06 1.189232355336075e-09 0.020121411872349428 9.34020907733775e-06 0.2870166315451602 5.345771226140373e-05']
['59907.17028553889 0.3068173363468234 5.257162686212775e-05 0.03630070123476707 1.6815224394139857e-05 2.5677493507623323e-06 1.1894338140119018e-09 0.02016705624153726 9.341791330077697e-06 0.28665028010528615 5.3395177836444246e-05']
['59907.170425819095 0.30689815852797436 5.2578319775742477e-05 0.03618650512603473 1.6812889286277593e-05 2.559671628457172e-06 1.1892686389190432e-09 0.020103613958908185 9.340494047931995e-06 0.28679454456906617 5.340154060979594e-05']
['59907.1705660993 0.3069017120597128 5.257588856643295e-05 0.03615637762997698 1.681976099687823e-05 2.5575405440480282e-06 1.1897547130121935e-09 0.02008687646109832 9.34431166493235e-06 0.2868148355986145 5.3399814784710304e-05']
['59907.17070637951 0.3069577711571193 5.258234571170597e-05 0.03622634863261076 1.681222998253888e-05 2.5624899800223673e-06 1.189222002719481e-09 0.020125749240339313 9.340127768077155e-06 0.28683202191678 5.340544042763218e-05']
['59907.17084665972 0.3069767041913072 5.2589703652952014e-05 0.03619480150815531 1.681608833807744e-05 2.5602584774457357e-06 1.1894949255444444e-09 0.02010822306008628 9.342271298931911e-06 0.2868684811312209 5.341305985738096e-05']
['59907.17098693993 0.3069109908533413 5.2578749476274205e-05 0.036282564262804066 1.681340557677064e-05 2.5664664224331628e-06 1.1893051590008387e-09 0.020156980146002257 9.340780875983689e-06 0.286754010707339 5.3402013855864536e-05']
['59907.171127220136 0.3068476252927562 5.257584075707338e-05 0.036129430805268564 1.6815899451291582e-05 2.5556344461133728e-06 1.1894815645374869e-09 0.02007190600292698 9.342166361828655e-06 0.28677571928982926 5.339939235277141e-05']
['59907.171267500344 0.30685003139059497 5.257492461245772e-05 0.03627544245438161 1.6814504460782953e-05 2.5659626575379685e-06 1.1893828891441472e-09 0.02015302358576756 9.34139136710164e-06 0.28669700780482743 5.339835475629351e-05']
['59907.17140778056 0.3068939750840941 5.257781780342054e-05 0.036187650930854375 1.6811014570845004e-05 2.5597526775686672e-06 1.1891360299288267e-09 0.02010425051714132 9.339452539358336e-06 0.2867897245669528 5.340086421308754e-05']
['59907.17154806077 0.3069198552894905 5.257973076843235e-05 0.03625004059242635 1.6814910573309552e-05 2.5641658433628937e-06 1.1894116157290627e-09 0.02013891144023686 9.341616985171974e-06 0.2867809438492536 5.3403126271581567e-05']
['59907.171688340975 0.30683387743074314 5.2573189950409195e-05 0.03623668702910296 1.6823715859426012e-05 2.563221271980313e-06 1.1900344623116285e-09 0.02013149279394609 9.346508810792229e-06 0.28670238463679704 5.339754234524303e-05']
['59907.17182862118 0.30688714214990087 5.258447657518593e-05 0.03621835736390787 1.6814993887086833e-05 2.5619247133931933e-06 1.1894175089732768e-09 0.02012130964661548 9.341663270603795e-06 0.2867658325032854 5.340780700747434e-05']
In [24]:
fig, axs = plt.subplots(2, 2,figsize=(15,10))

#JWST pipeline: net aperture
dat = ascii.read('/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/506090_radii/GJ3470b_nrca3_level3_asn_phot.ecsv') #call the data 
normalized_net_aperture_sum_pipeline = dat['net_aperture_sum'].value/dat['net_aperture_sum'][0].value #normalized net aperture sum
std_net_aperture_sum_pipeline = np.std(normalized_net_aperture_sum_pipeline[0:20]) #calculated standard deviation
relative_error_net_aperture_sum_pipeline = (dat['net_aperture_sum_err'].value/dat['net_aperture_sum'].value)

#MAD: 
deviation = normalized_net_aperture_sum_pipeline[0:seg01_len] - np.median(normalized_net_aperture_sum_pipeline[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Pipeline Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Pipeline Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_net_aperture_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_net_aperture_sum_pipeline)*10**6))
      
axs[0,0].errorbar(dat['MJD'],normalized_net_aperture_sum_pipeline,yerr=relative_error_net_aperture_sum_pipeline,color='navy',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,0].set_title("Net Aperture Sum")
axs[0,0].set_xlabel("Time (MJD)")
axs[0,0].set_ylabel("Normalized Flux")
axs[0,0].legend()

#JWST pipeline: aperature background
normalized_aperture__bkg_pipeline = dat['aperture_bkg'].value/dat['aperture_bkg'][0].value #normalized aperture bkg
std_aperture_bkg_pipeline = np.std(normalized_aperture__bkg_pipeline[0:20]) #calculated standard deviation
relative_error_aperture_bkg_pipeline = (dat['aperture_bkg_err'].value/dat['aperture_bkg'].value)

print(style.BOLD+"Pipeline Calculated Aperture Background std (ppm):"+style.END + " " +str(std_aperture_bkg_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Aperture Background (ppm):"+style.END + " " +str(np.median(relative_error_aperture_bkg_pipeline)*10**6))

axs[0,1].errorbar(dat['MJD'],normalized_aperture__bkg_pipeline,yerr=relative_error_aperture_bkg_pipeline,color='darkred',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,1].set_title("Aperture Background")
axs[0,1].set_xlabel("Time (MJD)")
axs[0,1].set_ylabel("Normalized Flux")
axs[0,1].legend()


#JWST pipeline: annulus mean
normalized_annulus_mean_pipeline = dat['annulus_mean'].value/dat['annulus_mean'][0].value #normalized annulus mean
std_annulus_mean_pipeline = np.std(normalized_annulus_mean_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_mean_pipeline = (dat['annulus_mean_err'].value/dat['annulus_mean'].value)

print(style.BOLD+"Pipeline Calculated Annulus Mean std (ppm):"+style.END + " " +str(std_annulus_mean_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Mean (ppm):"+style.END + " " +str(np.median(relative_error_annulus_mean_pipeline)*10**6))

axs[1,0].errorbar(dat['MJD'],normalized_annulus_mean_pipeline,yerr=relative_error_annulus_mean_pipeline,color ='darkgreen',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,0].set_title("Annulus Mean")
axs[1,0].set_xlabel("Time (MJD)")
axs[1,0].set_ylabel("Normalized Flux")
axs[1,0].legend()

#JWST pipeline: annulus sum
normalized_annulus_sum_pipeline = dat['annulus_sum'].value/dat['annulus_sum'][0].value #normalized annulus sum
std_annulus_sum_pipeline = np.std(normalized_annulus_sum_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_sum_pipeline = (dat['annulus_sum_err'].value/dat['annulus_sum'].value)

print(style.BOLD+"Pipeline Calculated Annulus Sum std (ppm):"+style.END + " " +str(std_annulus_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Sum (ppm):"+style.END + " " +str(np.median(relative_error_annulus_sum_pipeline)*10**6))

axs[1,1].errorbar(dat['MJD'],normalized_annulus_sum_pipeline,yerr=relative_error_annulus_sum_pipeline,color = 'indigo',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,1].set_title("Annulus Sum")
axs[1,1].set_xlabel("Time (MJD)")
axs[1,1].set_ylabel("Normalized Flux")
axs[1,1].legend()
Pipeline Calculated Net Aperture Sum MAD (ppm): 192.41265065459424
Pipeline Calculated Net Aperture Sum std (ppm): 148.32156872718653
Median Relative Errors Net Aperture Sum (ppm): 186.23835666244938
Pipeline Calculated Aperture Background std (ppm): 1349.3847479232038
Median Relative Errors Aperture Background (ppm): 464.6078360801671
Pipeline Calculated Annulus Mean std (ppm): 1349.3847479232215
Median Relative Errors Annulus Mean (ppm): 464.60783608016715
Pipeline Calculated Annulus Sum std (ppm): 1349.3847479232063
Median Relative Errors Annulus Sum (ppm): 464.60783608016715
Out[24]:
<matplotlib.legend.Legend at 0x7f1f3faf0520>

$\textbf{External method: tshirt $\rightarrow$ (bkgGeometry = CircularAnnulus) }$¶

In [25]:
phot = phot_pipeline.phot(paramFile="/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/GJ3470b_WLP8_NRCA3_ROEBA_phot_pipeline.yaml") #create a photometric object
alteredParam = deepcopy(phot.param)
alteredParam['srcGeometry']='Circular'
alteredParam['bkgGeometry'] = 'CircularAnnulus' #Changing the outer radius
alteredParam['apRadius'] = 50 #Changing the source radius
alteredParam['backStart'] = 60 #Changing the inner radius
alteredParam['backEnd'] = 90 #Changing the outer radius

alteredParam['doCentering'] = True
alteredParam['srcNameShort'] = 'GJ3470b_phot2' #provide a new name for centroid realignment

#Assignimg a object new phot2
phot2 = phot_pipeline.phot(directParam=alteredParam) #create new photometric object
#Assignimg a object phot
phot2.showStarChoices(showAps=True,showPlot=True,apColor='red',backColor='pink', figSize=(30,20),xLim=[900,1200]) #Plot the source and background subtraction area
In [26]:
phot2.get_allimg_cen(recenter=True,useMultiprocessing=True) #recenter the centroids each time. 
phot2.do_phot(useMultiprocessing=True) #extract the photometric data
  1%|▎                                        | 11/1681 [00:00<01:26, 19.29it/s]2022-03-16 14:15:33,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 15/1681 [00:00<01:20, 20.70it/s]2022-03-16 14:15:33,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:15:33,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 19/1681 [00:01<01:11, 23.36it/s]2022-03-16 14:15:33,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                        | 32/1681 [00:01<00:55, 29.50it/s]2022-03-16 14:15:33,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:15:34,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                       | 69/1681 [00:02<00:49, 32.81it/s]2022-03-16 14:15:35,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▊                                       | 73/1681 [00:02<00:53, 30.11it/s]2022-03-16 14:15:35,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▍                                    | 142/1681 [00:05<00:50, 30.24it/s]2022-03-16 14:15:37,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 147/1681 [00:05<00:45, 34.01it/s]2022-03-16 14:15:37,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▍                                 | 273/1681 [00:09<00:40, 35.19it/s]2022-03-16 14:15:41,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▌                                 | 277/1681 [00:09<00:43, 32.43it/s]2022-03-16 14:15:42,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                                | 334/1681 [00:11<00:36, 37.36it/s]2022-03-16 14:15:43,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:15:44,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▍                               | 353/1681 [00:12<00:46, 28.84it/s]2022-03-16 14:15:44,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▍                               | 357/1681 [00:12<00:53, 24.92it/s]2022-03-16 14:15:44,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                              | 399/1681 [00:13<00:35, 36.61it/s]2022-03-16 14:15:45,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:15:46,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▊                             | 454/1681 [00:15<00:31, 39.06it/s]2022-03-16 14:15:47,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:15:47,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                             | 463/1681 [00:15<00:36, 33.65it/s]2022-03-16 14:15:48,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:15:48,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                             | 467/1681 [00:15<00:44, 27.26it/s]2022-03-16 14:15:48,299 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:15:48,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:15:48,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████▎                            | 476/1681 [00:16<00:41, 28.79it/s]2022-03-16 14:15:48,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▍                           | 521/1681 [00:17<00:33, 34.55it/s]2022-03-16 14:15:49,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:15:50,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                           | 531/1681 [00:17<00:34, 32.95it/s]2022-03-16 14:15:50,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                           | 535/1681 [00:17<00:36, 31.16it/s]2022-03-16 14:15:50,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                          | 565/1681 [00:18<00:38, 29.14it/s]2022-03-16 14:15:51,454 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▌                          | 570/1681 [00:19<00:36, 30.04it/s]2022-03-16 14:15:51,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|██████████████                          | 590/1681 [00:19<00:32, 33.11it/s]2022-03-16 14:15:52,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|██████████████▏                         | 596/1681 [00:19<00:35, 30.38it/s]2022-03-16 14:15:52,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:15:52,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▎                         | 600/1681 [00:20<00:36, 30.02it/s]2022-03-16 14:15:52,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▌                         | 614/1681 [00:20<00:30, 35.47it/s]2022-03-16 14:15:52,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:15:53,155 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|██████████████████                      | 759/1681 [00:25<00:29, 31.09it/s]2022-03-16 14:15:57,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|██████████████████▏                     | 763/1681 [00:25<00:31, 29.46it/s]2022-03-16 14:15:57,819 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▉                   | 880/1681 [00:29<00:26, 29.86it/s]2022-03-16 14:16:01,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|█████████████████████                   | 886/1681 [00:29<00:30, 26.00it/s]2022-03-16 14:16:01,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▊                  | 918/1681 [00:30<00:21, 35.08it/s]2022-03-16 14:16:02,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▉                  | 922/1681 [00:30<00:25, 29.33it/s]2022-03-16 14:16:02,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▌                 | 946/1681 [00:31<00:24, 29.87it/s]2022-03-16 14:16:03,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▋                 | 951/1681 [00:31<00:23, 30.80it/s]2022-03-16 14:16:03,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:16:03,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:16:03,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:16:03,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:16:03,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▋                 | 955/1681 [00:31<00:27, 26.06it/s]2022-03-16 14:16:03,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:16:04,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▊                 | 961/1681 [00:31<00:23, 30.32it/s]2022-03-16 14:16:04,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:16:04,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████▏                | 977/1681 [00:32<00:25, 27.18it/s]2022-03-16 14:16:04,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████▍                | 983/1681 [00:32<00:23, 29.55it/s]2022-03-16 14:16:04,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▌                | 988/1681 [00:32<00:22, 31.23it/s]2022-03-16 14:16:05,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▋                | 993/1681 [00:32<00:22, 30.95it/s]2022-03-16 14:16:05,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▎               | 1007/1681 [00:33<00:20, 32.12it/s]2022-03-16 14:16:05,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 1012/1681 [00:33<00:24, 27.20it/s]2022-03-16 14:16:05,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 1019/1681 [00:33<00:20, 31.69it/s]2022-03-16 14:16:06,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:16:06,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 1085/1681 [00:35<00:21, 28.05it/s]2022-03-16 14:16:08,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 1090/1681 [00:35<00:20, 29.53it/s]2022-03-16 14:16:08,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 1108/1681 [00:36<00:18, 31.82it/s]2022-03-16 14:16:09,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 1113/1681 [00:36<00:18, 31.12it/s]2022-03-16 14:16:09,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 1126/1681 [00:36<00:16, 32.77it/s]2022-03-16 14:16:09,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 1130/1681 [00:37<00:17, 31.72it/s]2022-03-16 14:16:09,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 1144/1681 [00:37<00:16, 32.06it/s]2022-03-16 14:16:10,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 1148/1681 [00:37<00:18, 29.18it/s]2022-03-16 14:16:10,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 1163/1681 [00:38<00:17, 29.47it/s]2022-03-16 14:16:10,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 1168/1681 [00:38<00:16, 31.51it/s]2022-03-16 14:16:10,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 1206/1681 [00:39<00:15, 30.42it/s]2022-03-16 14:16:12,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 1211/1681 [00:39<00:14, 32.48it/s]2022-03-16 14:16:12,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▊       | 1371/1681 [00:44<00:09, 33.53it/s]2022-03-16 14:16:17,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 1376/1681 [00:45<00:10, 29.80it/s]2022-03-16 14:16:17,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 1380/1681 [00:45<00:09, 31.48it/s]2022-03-16 14:16:17,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:16:17,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 1491/1681 [00:48<00:06, 29.46it/s]2022-03-16 14:16:21,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 1495/1681 [00:48<00:06, 27.14it/s]2022-03-16 14:16:21,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:16:21,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 1500/1681 [00:49<00:06, 28.74it/s]2022-03-16 14:16:21,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▉    | 1504/1681 [00:49<00:07, 24.99it/s]2022-03-16 14:16:21,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 1510/1681 [00:49<00:05, 28.75it/s]2022-03-16 14:16:22,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▌   | 1533/1681 [00:50<00:04, 33.59it/s]2022-03-16 14:16:22,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 1538/1681 [00:50<00:05, 25.81it/s]2022-03-16 14:16:23,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 1549/1681 [00:50<00:04, 32.40it/s]2022-03-16 14:16:23,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 1553/1681 [00:50<00:04, 31.31it/s]2022-03-16 14:16:23,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 1558/1681 [00:50<00:03, 31.60it/s]2022-03-16 14:16:23,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 1562/1681 [00:51<00:03, 31.19it/s]2022-03-16 14:16:23,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|███████████████████████████████████████| 1681/1681 [00:54<00:00, 30.67it/s]
2022-03-16 14:16:27,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

100%|██████████████████████████████████████| 1681/1681 [00:11<00:00, 149.26it/s]
In [27]:
#Tshirt: net aperture
Flux2, Flux_error2 = phot2.get_tSeries() #The flux data and flux data errors
normalized_flux_tshirt2 = Flux2['Flux 0']/Flux2['Flux 0'][0] #normalized net aperture sum
std_tshirt2 = np.std(normalized_flux_tshirt2[0:20]) #calculated standard deviation
relative_error_tshirt2 = (Flux_error2['Error 0']/Flux2['Flux 0'])

#MAD: 
deviation = normalized_flux_tshirt2[0:seg01_len] - np.median(normalized_flux_tshirt2[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Tshirt Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Tshirt Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_tshirt2*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_tshirt2)*10**6))

plt.errorbar(Flux2['Time (JD)'],normalized_flux_tshirt2,yerr=relative_error_tshirt2,fmt='b.',markersize=4,elinewidth=1,ecolor='silver')
#plt.plot(phot2.cenArr[:,0,0],'.')
Tshirt Calculated Net Aperture Sum MAD (ppm): 204.6575210844881
Tshirt Calculated Net Aperture Sum std (ppm): 158.00247736899692
Median Relative Errors Net Aperture Sum (ppm): 145.04553410458544
Out[27]:
<ErrorbarContainer object of 3 artists>

$\textbf{50-5-20 Radii}$¶

$\textbf{TSO Photometry Reference File: Radii Parameters}$¶

The original radii parameters are: radii': [{'pupil': 'WLP8', 'radius': 50.0, 'radius_inner': 60.0, 'radius_outer': 70.0}, {'pupil': 'ANY', 'radius': 3.0, 'radius_inner': 4.0, 'radius_outer': 5.0}]}

The altered radii parameters are (to try the pupil = WLP8 parameters): radius: 50.0, radius_inner: 5.0, and radius_outer: 20.0

In [28]:
original_tsophot=asdf.open("/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_tsophot_0001.asdf") #the original tsophot reference file
original_tsophot.tree #print the original tsophot reference file

#adjust the radii parameters
original_tsophot.tree['radii'] = [{'pupil': 'WLP8',
   'radius': 50.0,
   'radius_inner': 5.0,
   'radius_outer': 20.0}, #For this particular data set (F444W), the outer radius limit is 62 due to edge effects on detector
  {'pupil': 'ANY', 'radius': 3.0, 'radius_inner': 4.0, 'radius_outer': 5.0}]
original_tsophot.write_to('adjusted_jwst_nircam_tsophot_0001.asdf')
adjusted_tsophot=asdf.open('adjusted_jwst_nircam_tsophot_0001.asdf') #the adjusted tsophot reference file
adjusted_tsophot.tree #print the adjusted tsophot reference file
2022-03-16 14:16:39,632 - stpipe - WARNING - /tmp/ipykernel_594081/4128427152.py:1: ResourceWarning: unclosed file <_io.BufferedReader name='/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_tsophot_0001.asdf'>
  original_tsophot=asdf.open("/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_tsophot_0001.asdf") #the original tsophot reference file

2022-03-16 14:16:39,655 - stpipe - WARNING - /tmp/ipykernel_594081/4128427152.py:11: ResourceWarning: unclosed file <_io.BufferedReader name='adjusted_jwst_nircam_tsophot_0001.asdf'>
  adjusted_tsophot=asdf.open('adjusted_jwst_nircam_tsophot_0001.asdf') #the adjusted tsophot reference file

Out[28]:
{'asdf_library': {'author': 'Space Telescope Science Institute',
  'homepage': 'http://github.com/spacetelescope/asdf',
  'name': 'asdf',
  'version': '2.7.2'},
 'history': {'entries': [{'description': 'File created based on values of aperture radii for NIRCam that were specified as constants in tso_photometry_step.py.',
    'time': datetime.datetime(2018, 7, 13, 17, 20, 5)}],
  'extensions': [{'extension_class': 'asdf.extension.BuiltinExtension',
    'software': {'name': 'asdf', 'version': '2.7.2'}},
   {'extension_class': 'astropy.io.misc.asdf.extension.AstropyAsdfExtension',
    'software': {'name': 'astropy', 'version': '4.2.1'}},
   {'extension_class': 'astropy.io.misc.asdf.extension.AstropyExtension',
    'software': {'name': 'astropy', 'version': '4.2.1'}},
   {'extension_class': 'gwcs.extension.GWCSExtension',
    'software': {'name': 'gwcs', 'version': '0.16.1'}}]},
 'meta': {'author': 'NIRCam IDT; P. Hodge',
  'date': '2018-07-13T17:20:00',
  'description': 'aperture radii for tso_photometry',
  'exposure': {'type': 'NRC_TSIMAGE'},
  'filename': 'nircam_tsophot.asdf',
  'instrument': {'name': 'NIRCAM'},
  'model_type': 'TsoPhotModel',
  'pedigree': 'GROUND',
  'reftype': 'tsophot',
  'telescope': 'JWST',
  'useafter': '2015-01-01T00:00:00',
  'visit': {'tsovisit': True}},
 'radii': [{'pupil': 'WLP8',
   'radius': 50.0,
   'radius_inner': 5.0,
   'radius_outer': 20.0},
  {'pupil': 'ANY', 'radius': 3.0, 'radius_inner': 4.0, 'radius_outer': 5.0}]}
In [29]:
#The file to use is the stage 3 association file defined above. 

# Instantiate the class. Do not provide a configuration file.
pipeline_stage3 = Tso3Pipeline()

pipeline_stage3.outlier_detection.skip = True
pipeline_stage3.tso_photometry.override_tsophot = 'adjusted_jwst_nircam_tsophot_0001.asdf' #use the modified tso_phot ref file

# Specify that you want results saved to a file
pipeline_stage3.save_results = True
pipeline_stage3.output_dir = '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/50520_radii'

# Execute the pipeline using the run method
result_stage3 = pipeline_stage3.run(level3_asn)
2022-03-16 14:16:39,681 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created.
2022-03-16 14:16:39,687 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created.
2022-03-16 14:16:39,690 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created.
2022-03-16 14:16:39,694 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created.
2022-03-16 14:16:39,697 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created.
2022-03-16 14:16:40,062 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/nrca3_level3_asn.json',).
2022-03-16 14:16:40,072 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/50520_radii', 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '', 'min_wavelength': None, 'max_wavelength': None}}}
2022-03-16 14:16:43,611 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw01185016001_01101_00001-seg001_nrca3_1_calints.fits' reftypes = ['gain', 'readnoise']
2022-03-16 14:16:43,620 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_gain_0048.fits'.
2022-03-16 14:16:43,622 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/fenrirdata1/kg_data/crds_cache/references/jwst/nircam/jwst_nircam_readnoise_0030.fits'.
2022-03-16 14:16:43,624 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3...
2022-03-16 14:17:27,536 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:17:27,857 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:17:27,861 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:17:27,863 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:17:28,014 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:17:53,731 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:17:54,050 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:17:54,055 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:17:54,056 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:17:54,206 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:18:20,137 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:18:20,504 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:18:20,509 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:18:20,510 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:18:20,661 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:18:46,660 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:18:47,068 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:18:47,072 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:18:47,073 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:18:47,226 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:19:13,214 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:19:13,618 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:19:13,623 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:19:13,624 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:19:13,777 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:19:20,696 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ...
2022-03-16 14:19:21,269 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,).
2022-03-16 14:19:21,273 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}
2022-03-16 14:19:21,274 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step skipped.
2022-03-16 14:19:21,314 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done
2022-03-16 14:19:21,733 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg001_nrca3_1_calints.fits>,).
2022-03-16 14:19:21,736 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:19:23,569 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:19:23,774 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg002_nrca3_1_calints.fits>,).
2022-03-16 14:19:23,776 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:19:25,605 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:19:25,800 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg003_nrca3_1_calints.fits>,).
2022-03-16 14:19:25,803 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:19:27,610 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:19:27,806 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg004_nrca3_1_calints.fits>,).
2022-03-16 14:19:27,809 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:19:29,641 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:19:29,838 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(320, 256, 2048) from jw01185016001_01101_00001-seg005_nrca3_1_calints.fits>,).
2022-03-16 14:19:29,841 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:19:32,127 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:19:32,323 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(81, 256, 2048) from jw01185016001_01101_00001-seg006_nrca3_1_calints.fits>,).
2022-03-16 14:19:32,326 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA', 'save_catalog': False}
2022-03-16 14:19:32,942 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done
2022-03-16 14:19:32,953 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog /fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/50520_radii/GJ3470b_nrca3_level3_asn_phot.ecsv
2022-03-16 14:19:33,096 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done
In [30]:
#Import the stage 3 result file with all the data
with open('/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/50520_radii/GJ3470b_nrca3_level3_asn_phot.ecsv', 'r') as file:
    reader = csv.reader(file)
    for row in reader:
        print(row)
['# %ECSV 0.9']
['# ---']
['# datatype:']
['# - {name: MJD', ' datatype: float64}']
['# - {name: aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_sum_err', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean', ' unit: Jy', ' datatype: float64}']
['# - {name: annulus_mean_err', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg', ' unit: Jy', ' datatype: float64}']
['# - {name: aperture_bkg_err', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum', ' unit: Jy', ' datatype: float64}']
['# - {name: net_aperture_sum_err', ' unit: Jy', ' datatype: float64}']
['# meta: !!omap']
['# - {instrument: NIRCAM}']
['# - {detector: NRCA3}']
['# - {channel: SHORT}']
['# - {subarray: SUBGRISM256}']
['# - {filter: F210M}']
['# - {pupil: WLP8}']
['# - {target_name: UNKNOWN}']
['# - {xcenter: 1055}']
['# - {ycenter: 166}']
['# - ra_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       WFgwQkNJUHhYVUE9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - dec_icrs: !numpy.ndarray']
['#     buffer: !!binary |']
['#       S2Yva3ZVM0lMa0E9']
['#     dtype: float64']
['#     order: C']
['#     shape: !!python/tuple []']
['# - {apertures: Photometry measured in a circular aperture of r=50.0 pixels.  Background calculated as the mean in a circular annulus']
['#     with r_inner=5.0 pixels and r_outer=20.0 pixels.}']
['# - {number_of_integrations: 1681}']
['# - __serialized_columns__:']
['#     annulus_mean:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: &id001 !astropy.units.Unit {unit: Jy}']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean}']
['#     annulus_mean_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_mean_err}']
['#     annulus_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum}']
['#     annulus_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: annulus_sum_err}']
['#     aperture_bkg:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg}']
['#     aperture_bkg_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_bkg_err}']
['#     aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum}']
['#     aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: aperture_sum_err}']
['#     net_aperture_sum:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum}']
['#     net_aperture_sum_err:']
['#       __class__: astropy.units.quantity.Quantity']
['#       unit: *id001']
['#       value: !astropy.table.SerializedColumn {name: net_aperture_sum_err}']
['# schema: astropy-2.0']
['MJD aperture_sum aperture_sum_err annulus_sum annulus_sum_err annulus_mean annulus_mean_err aperture_bkg aperture_bkg_err net_aperture_sum net_aperture_sum_err']
['59906.93615787118 0.3068671214217737 5.257635375127501e-05 0.02001578516937256 1.2196076167166503e-05 1.6989926131045825e-05 1.0352350977758965e-08 0.13343856779581706 8.130717444777669e-05 0.17342855362595663 9.682525285513278e-05']
['59906.93629815139 0.3068375708751646 5.257406711417617e-05 0.020029489545996614 1.219706141052394e-05 1.7001558767214954e-05 1.0353187278294884e-08 0.1335299303066441 8.131374273682628e-05 0.17330764056852052 9.682952695741453e-05']
['59906.9364384316 0.30696966842496465 5.258395531883859e-05 0.02002240129846144 1.2196466439301144e-05 1.6995542075838514e-05 1.0352682251035654e-08 0.13348267532307626 8.130977626200764e-05 0.1734869931018884 9.683156547712814e-05']
['59906.93657871181 0.3068682207189902 5.2576159050036805e-05 0.020033880468126458 1.2198770335583719e-05 1.7005285897677335e-05 1.0354637858938282e-08 0.13355920312084307 8.132513557055813e-05 0.17330901759814715 9.684023015268203e-05']
['59906.936718992016 0.306996936004593 5.258409951166849e-05 0.020043570897439675 1.2198767706272145e-05 1.70135113895487e-05 1.0354635627109301e-08 0.13362380598293117 8.13251180418143e-05 0.17337313002166183 9.684452667016388e-05']
['59906.936859272224 0.3068763106818081 5.257827792409715e-05 0.02000466994960573 1.2195321008506133e-05 1.6980491239475462e-05 1.0351709979179676e-08 0.1333644663307049 8.130214005670755e-05 0.1735118443511032 9.682207024880274e-05']
['59906.93699955243 0.30691750358720177 5.258122738864118e-05 0.020028506261043962 1.219761555236355e-05 1.7000724129024646e-05 1.0353657648497271e-08 0.1335233750736264 8.1317437015757e-05 0.17339412851357536 9.683651706101163e-05']
['59906.93713983264 0.30690636716249453 5.2590423556102514e-05 0.02001924230621021 1.2195512503211969e-05 1.6992860639934664e-05 1.0351872524934395e-08 0.13346161537473472 8.13034166880798e-05 0.1734447517877598 9.682973827789579e-05']
['59906.93728011285 0.30691219813273973 5.258097214078119e-05 0.020005318953645775 1.2194418998493977e-05 1.6981042131214447e-05 1.0350944329301527e-08 0.13336879302430518 8.129612665662651e-05 0.17354340510843455 9.681848398234641e-05']
['59906.93742039306 0.30694238972834764 5.25825876663734e-05 0.020016644504703897 1.2196819654509363e-05 1.699065555752986e-05 1.0352982069416259e-08 0.133444296698026 8.131213103006243e-05 0.17349809303032165 9.683280011618939e-05']
['59906.937560673265 0.30684375848445433 5.257623949284005e-05 0.02002609232981383 1.2197947586605967e-05 1.6998675120557666e-05 1.0353939487915705e-08 0.1335072821987589 8.131965057737311e-05 0.17333647628569543 9.683566765006855e-05']
['59906.93770095347 0.3069292939165408 5.2581393816437547e-05 0.0200166688540036 1.2208054218773779e-05 1.699067622585737e-05 1.0362518263742472e-08 0.13344445902669066 8.138702812515852e-05 0.17348483488985011 9.689505313856141e-05']
['59906.93784123368 0.3069299206400051 5.2579590638658126e-05 0.02002169764295513 1.2196295866089855e-05 1.6994944794494183e-05 1.0352537463997063e-08 0.13347798428636756 8.13086391072657e-05 0.17345193635363756 9.682824043224395e-05']
['59906.93798151389 0.3068993314928604 5.258796971274372e-05 0.020013553948279313 1.2194529489652971e-05 1.6988032211759848e-05 1.0351038117110176e-08 0.13342369298852877 8.129686326435314e-05 0.17347563850433165 9.682290294724374e-05']
['59906.9381217941 0.3069521926934675 5.258299051935801e-05 0.02002423503305975 1.2197091930442727e-05 1.6997098598108597e-05 1.035321318440655e-08 0.13349490022039834 8.131394620295152e-05 0.17345729247306918 9.683454310862105e-05']
['59906.938262074305 0.30687700038219423 5.2578847362121067e-05 0.020015513881649655 1.2195468704830545e-05 1.6989695854874623e-05 1.0351835347713579e-08 0.13343675921099768 8.13031246988703e-05 0.17344024117119655 9.682320628717726e-05']
['59906.93840235451 0.3068773507970949 5.257843953580078e-05 0.020015088939484657 1.2195750918401674e-05 1.6989335152762157e-05 1.0352074898032794e-08 0.13343392626323106 8.130500612267783e-05 0.17344342453386383 9.682456467564695e-05']
['59906.93854263472 0.3068785870303374 5.25828700963512e-05 0.02003971032364863 1.2222336402612285e-05 1.701023443273795e-05 1.0374641357908048e-08 0.1335980688243242 8.14822426840819e-05 0.17328051820601317 9.697584287026002e-05']
['59906.93868291493 0.3068552146509941 5.258775123372071e-05 0.020028929718118704 1.2197359578270981e-05 1.7001083570553352e-05 1.0353440370939214e-08 0.13352619812079136 8.131573052180654e-05 0.17332901653020272 9.683862664306406e-05']
['59906.93882319514 0.30695494185104705 5.2579625309061596e-05 0.02004052350629105 1.2198146091599119e-05 1.7010924683602896e-05 1.0354107984187112e-08 0.13360349004194033 8.132097394399413e-05 0.17335145180910672 9.683861730136941e-05']
['59906.938963475346 0.30689885172128006 5.257864381535594e-05 0.020037624282545255 1.219913629772063e-05 1.7008463746054775e-05 1.0354948497248009e-08 0.13358416188363503 8.132757531813753e-05 0.17331468983764503 9.684362804330185e-05']
['59906.939103755554 0.3069128565360194 5.257976657605461e-05 0.020022905321956906 1.2196081232571174e-05 1.6995969904269118e-05 1.035235527740799e-08 0.13348603547971272 8.130720821714116e-05 0.1734268210563067 9.682713442655389e-05']
['59906.93924403576 0.3068553329168673 5.257757210143742e-05 0.020015703091097563 1.2196934948375174e-05 1.6989856460842167e-05 1.0353079933889068e-08 0.1334380206073171 8.131289965583449e-05 0.17341731230955018 9.683072207993524e-05']
['59906.93938431597 0.30688427365949056 5.2588803893121814e-05 0.020023867825639446 1.2196823765301711e-05 1.6996786902769495e-05 1.0352985558765176e-08 0.13349245217092964 8.131215843534474e-05 0.17339182148856092 9.683619883248118e-05']
['59906.93952459618 0.30690425221075124 5.257907523812887e-05 0.020026488698159726 1.2195965110452973e-05 1.699901156845918e-05 1.0352256709892716e-08 0.13350992465439818 8.13064340696865e-05 0.17339432755635306 9.682610894807812e-05']
['59906.93966487639 0.3068990216577249 5.257787585937974e-05 0.02005396461397861 1.2201477847014843e-05 1.7022333850158128e-05 1.0356936066019569e-08 0.13369309742652408 8.134318564676563e-05 0.17320592423120085 9.68563208110267e-05']
['59906.939805156595 0.30691417842362434 5.258080128520478e-05 0.020017873144229203 1.2196878098363954e-05 1.6991698459149754e-05 1.0353031678100799e-08 0.1334524876281947 8.13125206557597e-05 0.17346169079542964 9.683215725773923e-05']
['59906.9399454368 0.30692092138747146 5.25792856875287e-05 0.020029863614075265 1.21974599601351e-05 1.7001876286061727e-05 1.035352557771186e-08 0.1335324240938351 8.1316399734234e-05 0.17338849729363637 9.683459169712285e-05']
['59906.94008571701 0.3068900206764468 5.257693973858453e-05 0.020023507512424175 1.2195738061374384e-05 1.6996481059413378e-05 1.0352063984649078e-08 0.13349005008282783 8.130492040916256e-05 0.17339997059361895 9.682367827662306e-05']
['59906.94022599722 0.3068819477100375 5.257642946959005e-05 0.02001942806673741 1.2197136054325863e-05 1.6993018318367386e-05 1.0353250637921801e-08 0.1334628537782494 8.131424036217243e-05 0.17341909393178812 9.683122751183075e-05']
['59906.94036627743 0.30684745373822075 5.2575736647708026e-05 0.02002140887334404 1.2197367499833152e-05 1.6994699679235408e-05 1.0353447094970023e-08 0.13347605915562694 8.131578333222102e-05 0.17337139458259382 9.683214705345463e-05']
['59906.940506557636 0.30689246707276585 5.2578003520243366e-05 0.020027919624182808 1.219763613786055e-05 1.70002261761913e-05 1.0353675122009824e-08 0.13351946416121874 8.131757425240367e-05 0.1733730029115471 9.683488181678081e-05']
['59906.940646837844 0.3068685822352588 5.257778662345973e-05 0.020027498225352335 1.2197558405911753e-05 1.6999868481754592e-05 1.0353609141082425e-08 0.13351665483568223 8.131705603941168e-05 0.17335192739957658 9.683432887741249e-05']
['59906.94078711805 0.3069091936044103 5.2579555704290024e-05 0.02003855445774416 1.2198012549666563e-05 1.700925330328596e-05 1.0353994630274171e-08 0.13359036305162772 8.132008366444375e-05 0.1733188305527826 9.683783189049965e-05']
['59906.94092739827 0.3069027349302937 5.2578969960977745e-05 0.020026061188104426 1.219654266300199e-05 1.6998648686653728e-05 1.035274695172243e-08 0.13350707458736286 8.131028442001328e-05 0.17339566034293083 9.682928500521344e-05']
['59906.941067678476 0.30690116119222055 5.257958254021656e-05 0.0200293089914681 1.219816408832429e-05 1.7001405507771166e-05 1.0354123260281888e-08 0.13352872660978735 8.132109392216195e-05 0.1733724345824332 9.68386948321823e-05']
['59906.941207958684 0.306947871793362 5.2591643979157074e-05 0.02001769428190485 1.2196008911520027e-05 1.6991546636093467e-05 1.0352293889393164e-08 0.133451295212699 8.130672607680018e-05 0.17349657658066303 9.68331798597889e-05']
['59906.94134823889 0.30695742409761795 5.258204365894312e-05 0.020034805781283308 1.2198229422715112e-05 1.7006071327879044e-05 1.0354178717835237e-08 0.13356537187522205 8.132152948476741e-05 0.1733920522223959 9.684039690693598e-05']
['59906.9414885191 0.3069223079491646 5.258016142303599e-05 0.020028251687397455 1.219811998416138e-05 1.7000508040202128e-05 1.0354085823505684e-08 0.13352167791598304 8.13207998944092e-05 0.17340063003318154 9.683876223258465e-05']
['59906.94162879931 0.3068441234275543 5.257485610641468e-05 0.020011918782991953 1.2195350083458688e-05 1.698664424035582e-05 1.0351734658765912e-08 0.13341279188661304 8.130233388972459e-05 0.17343133154094126 9.68203748728875e-05']
['59906.941769079516 0.30684955354359433 5.2575285100901916e-05 0.02003255913493105 1.2198007398750809e-05 1.7004164315226558e-05 1.0353990258041085e-08 0.13355039423287368 8.13200493250054e-05 0.17329915931072065 9.683548433122246e-05']
['59906.941909359724 0.30681515860842606 5.2574016475678306e-05 0.020011282537739195 1.2196800581970209e-05 1.6986104178611843e-05 1.0352965880142212e-08 0.13340855025159462 8.13120038798014e-05 0.17340660835683144 9.682803924139811e-05']
['59906.94204963993 0.30692399677518944 5.258027713387937e-05 0.020039747008856985 1.2198056056727005e-05 1.701026557210994e-05 1.0354031560214058e-08 0.1335983133923799 8.132037371151337e-05 0.17332568338280954 9.683846717113893e-05']
['59906.94218992014 0.3068513010745289 5.2575816935333255e-05 0.020008298252693846 1.2196350262960329e-05 1.6983571038790177e-05 1.0352583637494795e-08 0.133388655017959 8.130900175306887e-05 0.1734626460565699 9.682649581854252e-05']
['59906.94233020035 0.306899577775763 5.25777949335575e-05 0.02002567369696515 1.2196437564445087e-05 1.699831977395922e-05 1.03526577412966e-08 0.133504491313101 8.130958376296725e-05 0.173395086462662 9.682805859761008e-05']
['59906.94247048056 0.3068165190227152 5.257416819413926e-05 0.02002974728482 1.2198157573430653e-05 1.7001777542723053e-05 1.0354117730268415e-08 0.13353164856546668 8.13210504895377e-05 0.1732848704572485 9.683571868906424e-05']
['59906.942610760765 0.30696437504420326 5.258579198773825e-05 0.020023463428411364 1.2196477980822235e-05 1.699644363974111e-05 1.0352692047783026e-08 0.13348975618940911 8.130985320548157e-05 0.17347461885479415 9.683262749339521e-05']
['59906.94275104097 0.30695089743088183 5.258282015840211e-05 0.020030016944204383 1.2198189192595685e-05 1.7002006436717588e-05 1.0354144569449275e-08 0.13353344629469588 8.132126128397123e-05 0.17341745113618595 9.684059330996881e-05']
['59906.94289132118 0.3069677667018743 5.2585186387517696e-05 0.02000842976372812 1.2195416865316654e-05 1.6983682668823116e-05 1.0351791344967535e-08 0.1333895317581875 8.130277910211103e-05 0.17357823494368682 9.682635858657827e-05']
['59906.94303160139 0.3067892555789913 5.25718148006404e-05 0.02001264005405546 1.21949553399985e-05 1.6987256474249504e-05 1.0351399590110221e-08 0.13341760036036973 8.129970226665667e-05 0.17337165521862155 9.681651357118709e-05']
['59906.9431718816 0.30685692149687316 5.2577749809781655e-05 0.020013963312253462 1.2196439210109822e-05 1.698837969069323e-05 1.0352659138180211e-08 0.13342642208168976 8.130959473406548e-05 0.1734304994151834 9.682804330811381e-05']
['59906.943312161806 0.3068174361715671 5.2583007208386206e-05 0.020009432107866217 1.2195091892070284e-05 1.6984533484952485e-05 1.0351515499108695e-08 0.13339621405244143 8.130061261380189e-05 0.17342122211912567 9.682335595535138e-05']
['59906.943452442014 0.30691458211514666 5.2577927080704436e-05 0.020027309774456124 1.2197350764075026e-05 1.6999708519665726e-05 1.0353432889217318e-08 0.13351539849637414 8.131567176050018e-05 0.17339918361877252 9.683324269054136e-05']
['59906.94359272222 0.30690241108910477 5.257968212518343e-05 0.02002564951349832 1.2196932252002679e-05 1.6998299246395024e-05 1.035307764513701e-08 0.1335043300899888 8.131288168001786e-05 0.17339808099911597 9.683185271125364e-05']
['59906.94373300243 0.30699885546261024 5.258549029747789e-05 0.020031473394738875 1.2198310793326097e-05 1.70032427103279e-05 1.0354247787355028e-08 0.13354315596492583 8.132207195550731e-05 0.1734556994976844 9.68427239237045e-05']
['59906.94387328264 0.3068128195894239 5.257452351704132e-05 0.020029374257087472 1.2198468517618649e-05 1.7001460906949493e-05 1.0354381667892656e-08 0.1335291617139165 8.132312345079099e-05 0.17328365787550742 9.683765244385328e-05']
['59906.94401356285 0.3068708321652478 5.257897068553695e-05 0.02001997679428561 1.2201534677112242e-05 1.699348409277649e-05 1.0356984304904461e-08 0.13346651196190407 8.134356451408161e-05 0.17340432020334373 9.685723331897887e-05']
['59906.944153843055 0.3067658850325039 5.2571261713966025e-05 0.02001076183526019 1.219613685685305e-05 1.69856621926203e-05 1.0352402492764876e-08 0.1334050789017346 8.1307579045687e-05 0.17336080613076932 9.682282772398743e-05']
['59906.94429412326 0.3068487601915216 5.257609501925692e-05 0.020017909463887193 1.2196111792522383e-05 1.6991729288232957e-05 1.0352381217500231e-08 0.13345272975924796 8.130741195014922e-05 0.1733960304322736 9.682531180174531e-05']
['59906.94443440347 0.3068775811413777 5.258356503240312e-05 0.02004120239872286 1.21991411130631e-05 1.7011500945396764e-05 1.0354952584637645e-08 0.13360801599148572 8.132760742042067e-05 0.17326956514989197 9.684632693214045e-05']
['59906.94457468368 0.30690051822116654 5.2580779785086676e-05 0.020016312077362167 1.2196163967756071e-05 1.6990373384438363e-05 1.035242550521409e-08 0.1334420805157478 8.130775978504048e-05 0.17345843770541874 9.682814778807671e-05']
['59906.94471496389 0.3068331670888237 5.25832384641961e-05 0.020022723440303314 1.2240605944688898e-05 1.6995815518326574e-05 1.039014902686548e-08 0.1334848229353554 8.160403963125932e-05 0.17334834415346828 9.707840260079815e-05']
['59906.944855244095 0.3068483803683853 5.2581773591746864e-05 0.020037991536493535 1.220045320715386e-05 1.700877548088805e-05 1.0356066324692825e-08 0.13358661024329024 8.133635471435908e-05 0.17326177012509505 9.68527000773534e-05']
['59906.9449955243 0.30681343317807785 5.257378735471242e-05 0.02002356462976944 1.21969271092751e-05 1.6996529542121833e-05 1.0353073279854261e-08 0.1334904308651296 8.131284739516732e-05 0.17332300231294825 9.682862318719754e-05']
['59906.94513580451 0.30684300991046715 5.2582285109793094e-05 0.02003403661256894 1.219868888798089e-05 1.7005418437196575e-05 1.0354568724065785e-08 0.13356024408379297 8.132459258653927e-05 0.17328276582667418 9.68431002536276e-05']
['59906.94527608472 0.3068458709915059 5.258075829865062e-05 0.020028710604958862 1.219674029683406e-05 1.7000897581526767e-05 1.0352914708529342e-08 0.13352473736639242 8.131160197889374e-05 0.17332113362511348 9.683136247949397e-05']
['59906.94541636493 0.30690799904258126 5.2579612789980704e-05 0.020030290427641706 1.2199011111748728e-05 1.7002238576669075e-05 1.035484223609476e-08 0.13353526951761138 8.132674074499152e-05 0.17337272952496988 9.684345327045792e-05']
['59906.945556645136 0.3069117888213079 5.257971222401771e-05 0.020018482666117512 1.219630895400636e-05 1.6992215837397474e-05 1.0352548573365631e-08 0.1334565511074501 8.13087263600424e-05 0.17345523771385776 9.682837972336815e-05']
['59906.945696925344 0.3069063657872503 5.258212085277758e-05 0.020001001454083685 1.219407727846368e-05 1.6977377323763224e-05 1.0350654268330992e-08 0.13334000969389123 8.12938485230912e-05 0.17356635609335905 9.681719496593259e-05']
['59906.94583720555 0.3068612929051188 5.2575871594825e-05 0.020019621655055643 1.2195757732353341e-05 1.69931826412355e-05 1.0352080681894606e-08 0.13346414436703763 8.130505154902227e-05 0.1733971485380812 9.682320838179602e-05']
['59906.94597748576 0.3069611403806794 5.25862927094282e-05 0.020024777800698775 1.2197067655860146e-05 1.699755931358967e-05 1.03531925795009e-08 0.13349851867132517 8.131378437240097e-05 0.17346262170935423 9.683620041019258e-05']
['59906.94611776597 0.30687634157952715 5.257732029907131e-05 0.020005525046449826 1.2195312716333103e-05 1.6981217068219782e-05 1.0351702940564602e-08 0.1333701669763322 8.130208477555402e-05 0.17350617460319495 9.682150380304217e-05']
['59906.946258046184 0.30685472843708167 5.257565745036578e-05 0.020030672350122146 1.2196648689617587e-05 1.7002562762539156e-05 1.0352836949908944e-08 0.133537815667481 8.131099126411725e-05 0.17331691276960068 9.682807989778355e-05']
['59906.94639832639 0.3068518297137215 5.2578805420414604e-05 0.020017339603226374 1.2195508852325723e-05 1.6991245575480728e-05 1.0351869425965901e-08 0.13344893068817582 8.130339234883816e-05 0.17340289902554568 9.682340825888611e-05']
['59906.9465386066 0.3068678393574348 5.2579486722239585e-05 0.020041717320530023 1.2199081963517326e-05 1.7011938024601648e-05 1.0354902376943824e-08 0.13361144880353348 8.132721309011552e-05 0.1732563905539013 9.684378148843231e-05']
['59906.94667888681 0.30681577452392783 5.2572364729987766e-05 0.020027644528251835 1.2196512325597651e-05 1.6999992667512694e-05 1.0352721200533836e-08 0.1335176301883456 8.131008217065101e-05 0.17329814433558224 9.682552863734276e-05']
['59906.94681916702 0.30695336749767355 5.258288640072904e-05 0.02002403167975965 1.2196146662666913e-05 1.6996925986466434e-05 1.0352410816198197e-08 0.13349354453173098 8.130764441777943e-05 0.17345982296594256 9.682919488976469e-05']
['59906.946959447225 0.30693918479880455 5.2580658529467666e-05 0.020020550526705316 1.2195822059285015e-05 1.6993971091979732e-05 1.035213528429007e-08 0.1334703368447021 8.130548039523344e-05 0.17346884795410245 9.68261679180384e-05']
['59906.94709972743 0.30688398127342054 5.257743490810784e-05 0.0200259170406697 1.2198100186748836e-05 1.6998526330510953e-05 1.0354069018939994e-08 0.13350611360446468 8.132066791165891e-05 0.17337786766895585 9.683717101978263e-05']
['59906.94724000764 0.3068530975856748 5.257603170109169e-05 0.02001234952859336 1.2195405375052915e-05 1.6987009868578104e-05 1.0351781591728754e-08 0.13341566352395573 8.130270250035277e-05 0.17343743406171908 9.682132277187225e-05']
['59906.94738028785 0.30698683085831413 5.25840982044251e-05 0.020031068367972672 1.2197583079066894e-05 1.7002898912930963e-05 1.035363008430697e-08 0.1335404557864845 8.131722052711262e-05 0.17344637507182964 9.683789412325987e-05']
['59906.94752056806 0.30685447697700724 5.257561268218143e-05 0.02002374618291662 1.2197019851791179e-05 1.6996683649219474e-05 1.0353152002146895e-08 0.13349164121944415 8.131346567860786e-05 0.1733628357575631 9.683013347906165e-05']
['59906.947660848266 0.30684559656777977 5.257461574791742e-05 0.020022254106777885 1.2196428891253006e-05 1.6995417135657076e-05 1.0352650379262509e-08 0.1334816940451859 8.13095259416867e-05 0.17336390252259387 9.682628377616787e-05']
['59906.947801128474 0.30690894104104255 5.2579137726441924e-05 0.02003988696439997 1.2198135646042244e-05 1.7010384370064492e-05 1.0354099117723057e-08 0.13359924642933313 8.13209043069483e-05 0.17330969461170942 9.68382940853255e-05']
['59906.94794140868 0.30694303617990865 5.258658640771087e-05 0.0200112280200783 1.2205151196148017e-05 1.6986057902584016e-05 1.0360054101604885e-08 0.133408186800522 8.136767464098677e-05 0.17353484937938665 9.688161614309046e-05']
['59906.94808168889 0.3068490148027922 5.257615108337955e-05 0.020029582899021996 1.2196425304028769e-05 1.700163800772398e-05 1.0352647334332006e-08 0.13353055266014666 8.130950202685846e-05 0.17331846214264554 9.682709735708312e-05']
['59906.9482219691 0.3068642743456703 5.257742772447245e-05 0.020027007257169743 1.2197159056874036e-05 1.6999451735017737e-05 1.035327016309111e-08 0.13351338171446497 8.131439371249358e-05 0.17335089263120534 9.683189831327557e-05']
['59906.948362249306 0.3069294041135945 5.2583541029352003e-05 0.02002096382740801 1.219756060986085e-05 1.699432191251209e-05 1.0353611011852522e-08 0.13347309218272005 8.131707073240567e-05 0.17345631193087444 9.683746578512168e-05']
['59906.948502529514 0.306876044195473 5.2576781901946225e-05 0.02002303154489596 1.2197145778050657e-05 1.699607704562742e-05 1.0353258891675754e-08 0.13348687696597306 8.131430518700439e-05 0.17338916722949993 9.683147330909567e-05']
['59906.94864280972 0.3068765925297021 5.257953268071415e-05 0.020019827759732833 1.2196590213533403e-05 1.699335758831907e-05 1.0352787313867074e-08 0.1334655183982189 8.131060142355602e-05 0.1734110741314832 9.682985676320439e-05']
['59906.94878308993 0.30695252902077996 5.2589598531220836e-05 0.020026363866879497 1.2197672986555323e-05 1.6998905608377577e-05 1.0353706400153396e-08 0.13350909244586331 8.131781991036883e-05 0.17344343657491665 9.684138427681712e-05']
['59906.94892337014 0.3069239351727773 5.258226932862362e-05 0.020023749222495255 1.2205555834376724e-05 1.699668622929395e-05 1.0360397569200953e-08 0.1334916614833017 8.137037222917816e-05 0.17343227368947559 9.688153861527449e-05']
['59906.94906365035 0.30678555322401135 5.257487817885994e-05 0.019995536699385016 1.2194299215427455e-05 1.697273869590681e-05 1.0350842654276803e-08 0.13330357799590012 8.12953281028497e-05 0.17348197522811123 9.681450401087612e-05']
['59906.949203930555 0.3068972901719732 5.2580416523861796e-05 0.020021788090782314 1.2197087212447352e-05 1.6995021568994386e-05 1.0353209179647695e-08 0.1334785872718821 8.131391474964902e-05 0.1734187029000911 9.683311899208859e-05']
['59906.94934421076 0.306956518685919 5.258113945222917e-05 0.02001634249495613 1.2195600267001247e-05 1.6990399203694026e-05 1.0351947021152464e-08 0.13344228329970756 8.130400178000832e-05 0.17351423538621144 9.682518748517023e-05']
['59906.94948449097 0.3070049298021148 5.2587334157584066e-05 0.020040013226285257 1.2198048349062986e-05 1.7010491544481386e-05 1.035402501774564e-08 0.13360008817523503 8.132032232708659e-05 0.17340484162687977 9.684225594843743e-05']
['59906.94962477118 0.30695544345940906 5.2582723870099894e-05 0.020030332861628093 1.2196994259778993e-05 1.7002274595755416e-05 1.0353130278972265e-08 0.13353555241085396 8.131329506519328e-05 0.1734198910485551 9.683385153941962e-05']
['59906.94976505139 0.3068465649521178 5.257460186393906e-05 0.020023063299193646 1.2197093268404082e-05 1.6996103999512443e-05 1.0353214320103421e-08 0.133487088661291 8.131395512269388e-05 0.17335947629082682 9.682999565654838e-05']
['59906.949905331596 0.3070680149119324 5.259713110786383e-05 0.020040955139527014 1.219964851732466e-05 1.7011291065272796e-05 1.0355383282751635e-08 0.13360636759684674 8.133099011549774e-05 0.17346164731508568 9.685653387327572e-05']
['59906.950045611804 0.3067452351539596 5.257710519080915e-05 0.020000090355140165 1.2193543594964648e-05 1.6976603958960522e-05 1.0350201263707432e-08 0.13333393570093444 8.129029063309766e-05 0.17341129945302514 9.681148352059736e-05']
['59906.95018589201 0.30694151507793327 5.258694429336638e-05 0.020042958596234894 1.2198625106748647e-05 1.701299165214389e-05 1.0354514584874382e-08 0.1336197239748993 8.132416737832432e-05 0.17332179110303397 9.684527303844689e-05']
['59906.95032617222 0.3069502020975684 5.258170052374051e-05 0.020031801400783162 1.2198114437152235e-05 1.7003521130505566e-05 1.0354081115058084e-08 0.13354534267188775 8.132076291434823e-05 0.17340485942568065 9.683956686675116e-05']
['59906.95046645243 0.3068895620280012 5.257649071551048e-05 0.020017842308312425 1.2195867471894975e-05 1.699167228481066e-05 1.0352173831710625e-08 0.13345228205541615 8.13057831459665e-05 0.17343727997258507 9.682415891159133e-05']
['59906.95060673264 0.30694149402891246 5.258985719886682e-05 0.020019404844256863 1.2195490051357444e-05 1.699299860651368e-05 1.0351853467208372e-08 0.13346269896171242 8.130326700904963e-05 0.17347879506720004 9.682930499875553e-05']
['59906.950747012845 0.3069437031449306 5.259657109031161e-05 0.020015554638629144 1.2255315767776132e-05 1.6989730450473297e-05 1.0402635112499296e-08 0.1334370309241943 8.170210511850755e-05 0.1735066722207363 9.716806713758312e-05']
['59906.95088729305 0.3069628698347293 5.2610691034671576e-05 0.020007363649062918 1.2195074216802921e-05 1.6982777722589143e-05 1.0351500495875782e-08 0.13338242432708614 8.130049477868615e-05 0.17358044550764318 9.683829440053581e-05']
['59906.95102757326 0.3069287660762189 5.2583035801643566e-05 0.020021157593864927 1.2196621368668361e-05 1.6994486386589018e-05 1.0352813759166976e-08 0.13347438395909952 8.131080912445576e-05 0.17345438211711936 9.68319334444511e-05']
['59906.95116785347 0.3069594363654594 5.257973497351621e-05 0.020035935951260703 1.219778075313419e-05 1.7007030645950704e-05 1.0353797875266605e-08 0.13357290634173802 8.131853835422793e-05 0.1733865300237214 9.68366315500144e-05']
['59906.95130813368 0.3069345829022122 5.259565976785667e-05 0.01999564865717472 1.2193056553970081e-05 1.6972833728630272e-05 1.0349787850471305e-08 0.1333043243811648 8.128704369313388e-05 0.1736302585210474 9.681883545460354e-05']
['59906.951448413885 0.30697661570527557 5.258224037803245e-05 0.02003130424200792 1.2199124680802835e-05 1.7003099129030467e-05 1.0354938636501926e-08 0.13354202828005282 8.132749787201891e-05 0.17343458742522275 9.6845515710829e-05']
['59906.9515886941 0.3068772663219854 5.2577082105882e-05 0.02002005070772786 1.2196998332565115e-05 1.699354683245486e-05 1.0353133736060497e-08 0.13346700471818573 8.131332221710076e-05 0.1734102616037997 9.683081086488283e-05']
['59906.95172897431 0.3068278698195921 5.2574617425720165e-05 0.020034922172932967 1.2198716711965313e-05 1.7006170124179724e-05 1.0354592341797292e-08 0.13356614781955312 8.132477807976877e-05 0.17326172200003898 9.68390929696498e-05']
['59906.95186925452 0.30689270398185353 5.258167220777406e-05 0.02001385025418491 1.2194251106370491e-05 1.6988283724024076e-05 1.0350801818040946e-08 0.13342566836123274 8.129500737580327e-05 0.1734670356206208 9.681792435493392e-05']
['59906.952009534725 0.30687085131473374 5.2577788404798154e-05 0.02002373289828809 1.21967600135947e-05 1.699667237287655e-05 1.0352931444635569e-08 0.13349155265525392 8.131173342396468e-05 0.17337929865947982 9.68298601979246e-05']
['59906.95214981493 0.30689343980654726 5.2585581995034324e-05 0.020042944188708216 1.2198992535039679e-05 1.7012979422655418e-05 1.035482646769438e-08 0.13361962792472146 8.132661690026453e-05 0.1732738118818258 9.684659028690101e-05']
['59906.95229009514 0.3069625874320842 5.258127374886873e-05 0.02004587788876881 1.219936282490939e-05 1.7015469624608443e-05 1.03551407794978e-08 0.13363918592512541 8.132908549939593e-05 0.1733234015069588 9.684632412859831e-05']
['59906.95243037535 0.3068640213673031 5.258293713829252e-05 0.020015235947611218 1.2196507422850645e-05 1.698945993713558e-05 1.0352717038952925e-08 0.13343490631740812 8.131004948567097e-05 0.173429115049895 9.683124199065033e-05']
['59906.95257065556 0.3069454617566771 5.2587986172745275e-05 0.020048964618304237 1.2200565178164889e-05 1.7018089722014048e-05 1.0356161368638895e-08 0.13365976412202824 8.133710118776593e-05 0.17328569763464885 9.685669991969436e-05']
['59906.952710935766 0.3068944345126981 5.258526472665417e-05 0.02001601119977084 1.2194609589014622e-05 1.6990117991606762e-05 1.0351106107560019e-08 0.13344007466513894 8.129739726009749e-05 0.17345435984755916 9.682188217359962e-05']
['59906.952851215974 0.30684078198476294 5.258246277042943e-05 0.020022131837869172 1.2197816902834992e-05 1.6995313350583967e-05 1.0353828560085666e-08 0.13348087891912783 8.131877935223328e-05 0.17335990306563512 9.683831507384254e-05']
['59906.95299149618 0.30708758977264317 5.26099218855921e-05 0.020040085269257563 1.2199391443789515e-05 1.701055269645556e-05 1.0355165071957736e-08 0.13360056846171708 8.132927629193011e-05 0.17348702131092608 9.68620413938154e-05']
['59906.95313177639 0.30688508552697247 5.257932782405859e-05 0.01999978106415685 1.219481291335156e-05 1.697634142462e-05 1.0351278694617482e-08 0.1333318737610457 8.129875275567707e-05 0.17355321176592678 9.681979608560706e-05']
['59906.9532720566 0.30688913183647437 5.25866745765388e-05 0.02002041644120344 1.2196835664217734e-05 1.6993857276670826e-05 1.0352995658878789e-08 0.1334694429413563 8.131223776145156e-05 0.17341968889511808 9.683510909165962e-05']
['59906.95341233681 0.3069808629354184 5.2582991521168764e-05 0.02003843045450275 1.2197264679323477e-05 1.7009148046065535e-05 1.0353359818210736e-08 0.1335895363633517 8.13150978621565e-05 0.17339132657206668 9.68355107264241e-05']
['59906.953552617015 0.3074301466937083 5.272290327175839e-05 0.02049309390316259 1.2786715091727966e-05 1.7395078367651783e-05 1.08537008680333e-08 0.13662062602108394 8.524476727818645e-05 0.17080952067262434 0.00010023160618146034']
['59906.95369289722 0.30684251222986847 5.257576274745357e-05 0.020010941794137226 1.2195870288058237e-05 1.6985814946459414e-05 1.0352176222144246e-08 0.1334062786275815 8.130580192038826e-05 0.17343623360228697 9.682377938499374e-05']
['59906.95383317743 0.30692870300464625 5.259071937555053e-05 0.020023010267183217 1.219816066032242e-05 1.69960589845439e-05 1.0354120350503527e-08 0.1334867351145548 8.132107106881613e-05 0.17344196789009145 9.684472295493105e-05']
['59906.95397345764 0.3069355890947242 5.2597761614054787e-05 0.020020248243827973 1.2196501186813518e-05 1.6993714506304313e-05 1.035271174564021e-08 0.13346832162551983 8.131000791209012e-05 0.17346726746920435 9.683925812124489e-05']
['59906.95411373785 0.3069706798535843 5.258537919890905e-05 0.020018310703301373 1.2195263448645805e-05 1.699206987082565e-05 1.035166112085277e-08 0.1334554046886758 8.130175632430536e-05 0.17351527516490847 9.682560450061639e-05']
['59906.954254018056 0.30691072269053743 5.258505834453641e-05 0.020023592629271676 1.2196973522548738e-05 1.6996553308837487e-05 1.0353112676664527e-08 0.13349061752847785 8.131315681699159e-05 0.17342010516205958 9.683500313751719e-05']
['59906.954394298264 0.30689172110952123 5.257779637520258e-05 0.020022877291839117 1.2196791580371424e-05 1.6995946111566176e-05 1.0352958239347852e-08 0.13348584861226076 8.131194386914283e-05 0.17340587249726047 9.683004124470308e-05']
['59906.95453457847 0.3068133398698296 5.257427411795624e-05 0.020018723292972402 1.219656195210537e-05 1.6992420087815587e-05 1.03527633248219e-08 0.1334581552864827 8.13104130140358e-05 0.17335518458334692 9.682684319724095e-05']
['59906.95467485868 0.3071793757483432 5.2624128149651037e-05 0.020029962545247117 1.219760808961443e-05 1.7001960261448535e-05 1.0353651313919078e-08 0.1335330836349808 8.131738726409622e-05 0.1736462921133624 9.685977666177995e-05']
['59906.95481513889 0.3069130127566421 5.2579603496118245e-05 0.02003269630949383 1.2197746861734311e-05 1.7004280752611797e-05 1.0353769107352903e-08 0.13355130872995885 8.131831241156208e-05 0.17336170402668327 9.683637042595836e-05']
['59906.954955419096 0.30690920386418497 5.258032462803828e-05 0.02002074689378964 1.2196846740909594e-05 1.6994137773537764e-05 1.0353005061066857e-08 0.13347164595859762 8.131231160606396e-05 0.17343755790558735 9.683172288414335e-05']
['59906.955095699304 0.30683154788688416 5.257486198878921e-05 0.020017091280518595 1.2196415805096529e-05 1.6991034792619795e-05 1.0352639271387898e-08 0.1334472752034573 8.130943870064352e-05 0.17338427268342685 9.682634421971088e-05']
['59906.95523597951 0.3068478194337353 5.257956173752325e-05 0.020038038643005254 1.220492670564694e-05 1.700881546613707e-05 1.0359863548149293e-08 0.13358692428670169 8.136617803764626e-05 0.1732608951470336 9.687654639263297e-05']
['59906.95537625972 0.3069915721712475 5.2582516326220784e-05 0.020052545045954964 1.2198929765943002e-05 1.7021128883395362e-05 1.0354773187630329e-08 0.13368363363969976 8.132619843962002e-05 0.17330793853154774 9.684457432317894e-05']
['59906.95551653993 0.3069285120909703 5.257968658613007e-05 0.020013268768922853 1.2195651657600417e-05 1.6987790144003857e-05 1.0351990642847859e-08 0.13342179179281904 8.130434438400278e-05 0.17350672029815123 9.682468619731329e-05']
['59906.95565682014 0.3069250865406066 5.2582921353477215e-05 0.020033557053292222 1.2216267625196e-05 1.7005011374639797e-05 1.0369490019644975e-08 0.13355704702194815 8.144178416797333e-05 0.17336803951865842 9.694187860016291e-05']
['59906.955797100345 0.30684565551322796 5.257600788018002e-05 0.02001233992477331 1.2196230236964974e-05 1.698700171660246e-05 1.0352481756265673e-08 0.13341559949848875 8.13082015797665e-05 0.1734300560147392 9.682592756463888e-05']
['59906.95593738055 0.30691992776671606 5.2579795273077934e-05 0.02004346186300755 1.219958032222367e-05 1.701341883824822e-05 1.0355325396952078e-08 0.133623079086717 8.133053548149115e-05 0.17329684867999906 9.68467390915403e-05']
['59906.95607766076 0.30685043228295006 5.257548259170927e-05 0.02003355823911241 1.2199358147357846e-05 1.7005012381195235e-05 1.0355136809068735e-08 0.13355705492741607 8.132905431571898e-05 0.173293377355534 9.684315383980578e-05']
['59906.95621794097 0.3068852173206299 5.2578354545982034e-05 0.020024111508959136 1.219612838749334e-05 1.699699374759551e-05 1.0352395303749076e-08 0.13349407672639424 8.130752258328894e-05 0.17339114059423566 9.682663164333988e-05']
['59906.95635822118 0.30681826034131365 5.2575607620717085e-05 0.020013937219065886 1.2195304794360082e-05 1.6988357542107717e-05 1.0351696216185052e-08 0.1334262481271059 8.130203196240056e-05 0.17339201221420775 9.682052942378908e-05']
['59906.956498501386 0.3069408221129148 5.258026672932294e-05 0.020044644785478894 1.2199088862801318e-05 1.7014422934027467e-05 1.0354908233237963e-08 0.13363096523652596 8.132725908534212e-05 0.17330985687638883 9.684424360622116e-05']
['59906.956638781594 0.3069110687272254 5.25783359395002e-05 0.020033197227116627 1.2197713917155538e-05 1.70047059446958e-05 1.0353741143125916e-08 0.1335546481807775 8.131809278103692e-05 0.1733564205464479 9.683549774598294e-05']
['59906.9567790618 0.3067705493419669 5.257009628157803e-05 0.02001902287069879 1.2196269741187358e-05 1.6992674377287556e-05 1.035251528849109e-08 0.13346015247132526 8.130846494124906e-05 0.17331039687064165 9.682293888411316e-05']
['59906.95691934202 0.3068853166509833 5.257913129132216e-05 0.020005694736614843 1.2195088771900759e-05 1.6981361105705415e-05 1.0351512850626545e-08 0.13337129824409896 8.130059181267173e-05 0.17351401840688432 9.68212336031759e-05']
['59906.957059622226 0.3069698872049107 5.259031018432007e-05 0.020037487706989113 1.2202258165177193e-05 1.700834781712216e-05 1.0357598420647421e-08 0.13358325137992744 8.134838776784795e-05 0.17338663582498326 9.686743992545252e-05']
['59906.957199902434 0.30686150706817683 5.257775663247249e-05 0.020023131260911854 1.2197873144266057e-05 1.6996161687210544e-05 1.0353876299295055e-08 0.13348754173941238 8.131915429510704e-05 0.17337396532876445 9.683607461981784e-05']
['59906.95734018264 0.30691695252613166 5.25807501030756e-05 0.020019296781528317 1.2196432177360898e-05 1.6992906880020816e-05 1.035265316859752e-08 0.13346197854352213 8.130954784907266e-05 0.17345497398260953 9.682963313378153e-05']
['59906.95748046285 0.3069421101619765 5.258215628185356e-05 0.02000979750472164 1.2193938440218778e-05 1.6984843643436383e-05 1.0350536418768505e-08 0.13339865003147758 8.129292293479186e-05 0.1735434601304989 9.681643702662931e-05']
['59906.95762074306 0.30687336178936253 5.258217387663214e-05 0.020029632125835556 1.2197854551039906e-05 1.7001679792741103e-05 1.0353860516874522e-08 0.13353088083890371 8.131903034026605e-05 0.17334248095045882 9.68383689715677e-05']
['59906.957761023266 0.30697886289478493 5.2584411480904e-05 0.020030089785415903 1.2197385082886121e-05 1.700206826625825e-05 1.0353462019928927e-08 0.13353393190277268 8.131590055257414e-05 0.17344493099201225 9.683695582508341e-05']
['59906.957901303475 0.3069168941759953 5.258077566597885e-05 0.020034460955816732 1.2198287587577136e-05 1.7005778630932327e-05 1.0354228089703533e-08 0.13356307303877824 8.132191725051425e-05 0.1733538211372171 9.684003405067287e-05']
['59906.95804158368 0.3074675632674051 5.277702970357423e-05 0.020598959660609716 1.300841363108396e-05 1.7484940013528467e-05 1.1041884432912018e-08 0.13732639773739813 8.672275754055974e-05 0.17014116553000697 0.00010151971010483958']
['59906.95818186389 0.3069436401167084 5.258483930485166e-05 0.020018853487638752 1.2196423637792855e-05 1.6992530600480727e-05 1.0352645919987034e-08 0.133459023250925 8.130949091861903e-05 0.17348461686578337 9.68318059222385e-05']
['59906.9583221441 0.3069805317612808 5.259242454138554e-05 0.020043752772941844 1.2197938653005986e-05 1.7013665770269753e-05 1.0353931904840525e-08 0.13362501848627897 8.131959102003991e-05 0.17335551327500184 9.684440615135129e-05']
['59906.95846242431 0.3068755596814979 5.257725456798188e-05 0.020009489972431713 1.219420734929846e-05 1.6984582601921173e-05 1.035076467588463e-08 0.13339659981621144 8.129471566198972e-05 0.17347895986528644 9.681528026334545e-05']
['59906.958602704515 0.30681449504601355 5.257921838583969e-05 0.019981078558899412 1.2205160566793362e-05 1.6960466245100406e-05 1.0360062055655694e-08 0.13320719039266277 8.136773711195575e-05 0.17360730465335078 9.687766950534145e-05']
['59906.95874298472 0.30704420936375665 5.2607398678791314e-05 0.020013558684342236 1.2196335932585973e-05 1.6988036231854916e-05 1.0352571473495248e-08 0.1334237245622816 8.130890621723983e-05 0.17362048480147504 9.684356780908681e-05']
['59906.95888326493 0.30692396163684377 5.2578565564349765e-05 0.020034961621024302 1.219809893852947e-05 1.7006203608759626e-05 1.035406795941849e-08 0.13356641080682868 8.132065959019648e-05 0.17335755083001508 9.683777792261263e-05']
['59906.95902354514 0.3069009843961291 5.257878395196065e-05 0.02003054719414879 1.2197801956785544e-05 1.7002456526849463e-05 1.0353815873484868e-08 0.13353698129432526 8.131867971190362e-05 0.17336400310180386 9.683623387944267e-05']
['59906.95916382535 0.306853394073183 5.257570699951948e-05 0.02001252945043467 1.2195712946662543e-05 1.6987162590980317e-05 1.0352042666619564e-08 0.1334168630028978 8.13047529777503e-05 0.17343653107028523 9.682286828674471e-05']
['59906.959304105556 0.30694420617956136 5.258063992841185e-05 0.020038711704127413 1.2198094338024308e-05 1.7009386778161578e-05 1.0354064054388424e-08 0.13359141136084943 8.132062892016206e-05 0.17335279481871194 9.683887846961053e-05']
['59906.959444385764 0.3068129649125646 5.257467726119387e-05 0.020014482541490387 1.2196152622923368e-05 1.6988820426158055e-05 1.0352415875421007e-08 0.1334298836099359 8.130768415282246e-05 0.1733830813026287 9.682477054666245e-05']
['59906.95958466597 0.30686911092982394 5.257750516779303e-05 0.020010600342666263 1.2194427237269968e-05 1.6985525113449123e-05 1.0350951322591789e-08 0.13340400228444177 8.12961815817998e-05 0.17346510864538217 9.681664727437253e-05']
['59906.95972494618 0.3069033060850085 5.258429929658196e-05 0.02001478359344514 1.2195889017482953e-05 1.6989075966993932e-05 1.035219212017371e-08 0.13343189062296762 8.130592678321968e-05 0.17347141546204087 9.68285198822681e-05']
['59906.95986522639 0.3068622786940891 5.257647858673447e-05 0.020031931431509883 1.2197721874269613e-05 1.700363150401443e-05 1.0353747897334118e-08 0.13354620954339924 8.131814582846409e-05 0.17331606915068987 9.683453382735263e-05']
['59906.9600055066 0.3069183136452237 5.258186354397254e-05 0.020016898737556018 1.219632158155798e-05 1.6990871357077118e-05 1.0352559291964348e-08 0.1334459915837068 8.130881054371986e-05 0.17347232206151691 9.682961863908934e-05']
['59906.960145786805 0.3069336868081291 5.258063704683718e-05 0.02004602587978042 1.2200088675260689e-05 1.701559524328061e-05 1.035575690041169e-08 0.13364017253186947 8.133392450173793e-05 0.17329351427625964 9.685004216367504e-05']
['59906.96028606701 0.30687458719289784 5.257742585361402e-05 0.020014000628990225 1.2195412640290273e-05 1.6988411366123183e-05 1.0351787758653758e-08 0.13342667085993484 8.130275093526849e-05 0.173447916332963 9.682212050474097e-05']
['59906.96042634722 0.30686658722844823 5.258182737104882e-05 0.020005882004200597 1.2206228989001583e-05 1.698152006336917e-05 1.0360968960593014e-08 0.13337254669467066 8.137485992667723e-05 0.17349404053377757 9.688506798142384e-05']
['59906.96056662743 0.3069834619019386 5.258372156503457e-05 0.020031901988523046 1.220072786324301e-05 1.700360651203099e-05 1.0356299460022098e-08 0.1335460132568203 8.133818575495341e-05 0.1734374486451183 9.685529534071118e-05']
['59906.96070690764 0.30684991237625003 5.257625908660947e-05 0.020029703976873908 1.2197842646147702e-05 1.7001740781796675e-05 1.0353850411688168e-08 0.13353135984582606 8.1318950974318e-05 0.17331855253042397 9.683509078379501e-05']
['59906.960847187846 0.30698668719572897 5.2594724663863894e-05 0.020030268123775587 1.2196987793789249e-05 1.7002219644559513e-05 1.0353124790469707e-08 0.13353512082517058 8.131325195859499e-05 0.1734515663705584 9.68403325404741e-05']
['59906.960987468054 0.3069392459248914 5.2578406494483904e-05 0.020034927110449838 1.219871145117955e-05 1.7006174315274213e-05 1.0354587876303645e-08 0.13356618073633225 8.132474300786367e-05 0.17337306518855916 9.684112068121816e-05']
['59906.96112774826 0.30681600713500456 5.257663743216814e-05 0.02000657250069923 1.219706582344081e-05 1.6982106175000874e-05 1.035319102409506e-08 0.13337715000466152 8.131377215627207e-05 0.17343885713034304 9.683094725321957e-05']
['59906.96126802847 0.306867473904393 5.257540788750586e-05 0.020026512904517964 1.2196858024015424e-05 1.6999032115454208e-05 1.0353014638464544e-08 0.13351008603011974 8.131238682676949e-05 0.17335738787427327 9.682911631324439e-05']
['59906.96140830868 0.3068529136938295 5.2574374020639765e-05 0.0200282093355945 1.2196362090746097e-05 1.700047209087525e-05 1.0352593677231172e-08 0.13352139557062997 8.130908060497398e-05 0.17333151812319952 9.682577855348376e-05']
['59906.961548588886 0.30688046452637274 5.257571286613173e-05 0.02003523773870159 1.2197382273750329e-05 1.7006437984723443e-05 1.0353459635460408e-08 0.13356825159134394 8.13158818250022e-05 0.1733122129350288 9.6832216851416e-05']
['59906.961688869094 0.3069596427516027 5.258130880986539e-05 0.020066700943959008 1.2201854465427466e-05 1.7033144782815353e-05 1.0357255749657052e-08 0.13377800629306005 8.13456964361831e-05 0.17318163645854265 9.686029302477914e-05']
['59906.9618291493 0.3069328853234041 5.257989502211719e-05 0.020045624520861123 1.2199074081700333e-05 1.701525455924882e-05 1.035489568664977e-08 0.13363749680574083 8.132716054466888e-05 0.1732953885176633 9.684395904131146e-05']
['59906.96196942951 0.3069105826257352 5.258640136126872e-05 0.020006714101999685 1.2196434917208357e-05 1.698222636991776e-05 1.0352655494252274e-08 0.13337809401333123 8.130956611472238e-05 0.17353248861240395 9.683271735262238e-05']
['59906.96210970972 0.3068825251360534 5.257912050958668e-05 0.020028096477220238 1.219743193509369e-05 1.7000376293711875e-05 1.0353501789317883e-08 0.13352064318146825 8.13162129006246e-05 0.17336188195458516 9.68343451160865e-05']
['59906.96224998993 0.3069645338981202 5.258152978007909e-05 0.020047415029516232 1.220057471979529e-05 1.701677439019874e-05 1.0356169467826328e-08 0.13364943353010822 8.133716479863528e-05 0.17331510036801195 9.685324801726424e-05']
['59906.96239027014 0.30685832698673343 5.257866065493493e-05 0.020027052106917034 1.2198134376173131e-05 1.6999489804665618e-05 1.0354098039824678e-08 0.13351368071278025 8.132089584115422e-05 0.17334464627395318 9.683802794705526e-05']
['59906.96253055035 0.3067951336318983 5.2578178999000386e-05 0.02002437485613273 1.2196720647239638e-05 1.699721728361912e-05 1.035289802943557e-08 0.13349583237421822 8.131147098159759e-05 0.1732993012576801 9.682985190550543e-05']
['59906.96267083056 0.30678480307436184 5.258523185297955e-05 0.020000230613522102 1.2194324645748886e-05 1.6976723013972763e-05 1.0350864240204057e-08 0.13333487075681402 8.12954976383259e-05 0.17344993231754782 9.682026928951741e-05']
['59906.96281111077 0.30686453415400217 5.258089394827951e-05 0.020033610394253734 1.2206717106651835e-05 1.7005056651854165e-05 1.036138328772287e-08 0.13355740262835822 8.137811404434557e-05 0.17330713152564395 9.688729459436222e-05']
['59906.962951390975 0.30694557718942606 5.2581485079685834e-05 0.020029506088722542 1.2197800261738685e-05 1.700157280911684e-05 1.0353814434684408e-08 0.1335300405914836 8.131866841159124e-05 0.17341553659794245 9.683769103721727e-05']
['59906.96309167118 0.3068800711603883 5.2576873913351555e-05 0.02004652013139248 1.2199555380419466e-05 1.7016014777078955e-05 1.0355304225691123e-08 0.13364346754261652 8.133036920279644e-05 0.17323660361777177 9.684501342435576e-05']
['59906.96323195139 0.30687953241187915 5.258469640698666e-05 0.020008919004268377 1.2195850910370301e-05 1.698409794909161e-05 1.0352159773851868e-08 0.1333927933617892 8.130567273580201e-05 0.17348673905008996 9.682852221962438e-05']
['59906.9633722316 0.30692641587930997 5.258758560445611e-05 0.02001324735038716 1.2196019891878909e-05 1.69877719633861e-05 1.035230320981126e-08 0.13342164900258108 8.130679927919273e-05 0.1735047668767289 9.683103721809931e-05']
['59906.96351251181 0.3068464310794384 5.257989622193406e-05 0.020013557599072827 1.2195892417060937e-05 1.6988035310649628e-05 1.0352195005825127e-08 0.1334237173271522 8.13059494470729e-05 0.17342271375228618 9.682614782278251e-05']
['59906.963652792016 0.30692502510292463 5.258114956346602e-05 0.020021239558531034 1.2196801554693221e-05 1.6994555960358456e-05 1.0352966705815149e-08 0.1334749303902069 8.131201036462148e-05 0.17345009471271775 9.683191787294049e-05']
['59906.963793072224 0.30693463293408546 5.257926159859083e-05 0.0200447274190007 1.2200353102657744e-05 1.7014493075539257e-05 1.0355981353357452e-08 0.13363151612667135 8.133568735105164e-05 0.17330311680741411 9.68507758725818e-05']
['59906.96393335243 0.30695614113418607 5.258309182233413e-05 0.020026345674078835 1.219927504145241e-05 1.6998890165848756e-05 1.0355066266585267e-08 0.1335089711605256 8.13285002763494e-05 0.17344716997366047 9.684681978669298e-05']
['59906.96407363264 0.3068436957142571 5.2585027318881585e-05 0.020020473107389452 1.2197961390448015e-05 1.699390537642341e-05 1.035395120498075e-08 0.1334698207159297 8.131974260298678e-05 0.17337387499832743 9.684051649564632e-05']
['59906.96421391285 0.3069124110674495 5.258018067164897e-05 0.02002089905704721 1.219583454641215e-05 1.699426693372229e-05 1.0352145883692784e-08 0.13347266038031472 8.130556364274766e-05 0.17343975068713477 9.682597832569594e-05']
['59906.964354193056 0.3069038094501514 5.2581605209625386e-05 0.020025686379399502 1.219744241163581e-05 1.699833053914385e-05 1.0353510682083029e-08 0.13350457586266334 8.131628274423873e-05 0.17339923358748804 9.68357529312489e-05']
['59906.964494473264 0.30684858768015005 5.2586551781252756e-05 0.020012908679036198 1.219552739020536e-05 1.6987484490214957e-05 1.0351885161406853e-08 0.13341939119357465 8.130351593470241e-05 0.1734291964865754 9.682771881846017e-05']
['59906.96463475347 0.30695311108146717 5.25831013950107e-05 0.020032540339624635 1.2199878386299917e-05 1.7004148361274968e-05 1.0355578401597906e-08 0.1335502689308309 8.133252257533279e-05 0.17340284215063625 9.685020279165654e-05']
['59906.96477503368 0.30697510700309366 5.258298783027164e-05 0.020034333503523474 1.2198109010637998e-05 1.7005670446065765e-05 1.035407650888974e-08 0.13356222335682316 8.132072673758665e-05 0.1734128836462705 9.684023547207915e-05']
['59906.96491531389 0.3068451497567516 5.2577523821316646e-05 0.020009674779490012 1.2195249647065e-05 1.6984739471024353e-05 1.0351649405707129e-08 0.13339783186326673 8.130166431376666e-05 0.17344731789348486 9.682126125686196e-05']
['59906.9650555941 0.3068570019039426 5.2575697922585566e-05 0.02000646361161564 1.2194787222815568e-05 1.6982013747076063e-05 1.035125688781325e-08 0.13337642407743758 8.129858148543712e-05 0.17348057782650503 9.681768104840782e-05']
['59906.965195874305 0.30688442204294575 5.257940388691017e-05 0.02003647197875697 1.2197713863311922e-05 1.7007485640220914e-05 1.0353741097422037e-08 0.1335764798583798 8.131809242207948e-05 0.17330794218456594 9.683607730731705e-05']
['59906.96533615451 0.30687448074005 5.257891508227699e-05 0.020019280932647994 1.2198761688244306e-05 1.699289342707337e-05 1.0354630518848618e-08 0.13346187288431996 8.132507792162872e-05 0.17341260785573007 9.684167806367399e-05']
['59906.96547643472 0.3068457472208006 5.257674851778572e-05 0.02002111214048241 1.219701690489497e-05 1.6994447804559642e-05 1.0353149500743703e-08 0.1334740809365494 8.131344603263314e-05 0.1733716662842512 9.683073370786997e-05']
['59906.96561671493 0.30692402247798634 5.2580693192702784e-05 0.020027461817333187 1.2196376523238078e-05 1.699983757766811e-05 1.0352605927910851e-08 0.1335164121155546 8.130917682158719e-05 0.17340761036243174 9.682929067193084e-05']
['59906.96575699514 0.30695135141076707 5.25886835842875e-05 0.02003292288586041 1.2197213515963062e-05 1.7004473076605022e-05 1.0353316389401588e-08 0.13355281923906942 8.131475677308708e-05 0.17339853217169765 9.683831530027059e-05']
['59906.965897275346 0.3068564895667857 5.257626007609986e-05 0.020004540488074662 1.2193362074295522e-05 1.6980381349114874e-05 1.035004718417802e-08 0.13336360325383106 8.128908049530348e-05 0.17349288631295462 9.681000842558388e-05']
['59906.966037555554 0.3067630822092773 5.257055510874479e-05 0.020020076578511622 1.2196561131873188e-05 1.6993568792258154e-05 1.03527626285872e-08 0.13346717719007747 8.131040754582126e-05 0.1732959050191998 9.682481933734306e-05']
['59906.96617783576 0.30683472437812065 5.257360966034535e-05 0.02001971060654701 1.2195835788485434e-05 1.6993258145606418e-05 1.0352146937997332e-08 0.13346473737698009 8.130557192323622e-05 0.17336998700114056 9.682241712786815e-05']
['59906.96631811597 0.3068885928653763 5.257859510799012e-05 0.020038460683678178 1.2198111002344205e-05 1.7009173705386574e-05 1.0354078199502477e-08 0.13358973789118786 8.132074001562804e-05 0.17329885497418843 9.683786150168399e-05']
['59906.96645839618 0.3069176481393078 5.257936906390191e-05 0.020038080109628827 1.2197921998813001e-05 1.7008850664100352e-05 1.0353917768322462e-08 0.13358720073085886 8.131947999208668e-05 0.1733304474084489 9.683722361437977e-05']
['59906.96659867639 0.30686411528847934 5.258876203743921e-05 0.020028252191715477 1.2202645775909212e-05 1.700050846828056e-05 1.0357927434855402e-08 0.13352168127810318 8.135097183939475e-05 0.17334243401037616 9.686876953819743e-05']
['59906.966738956595 0.3068370938518339 5.258298526251068e-05 0.020038266859521512 1.2200932547932238e-05 1.700900918233258e-05 1.0356473201782449e-08 0.13358844573014342 8.133955031954826e-05 0.17324864812169047 9.685604155293432e-05']
['59906.9668792368 0.30700915967699327 5.258710030372022e-05 0.020021582250774463 1.2195828053459962e-05 1.699484684656913e-05 1.0352140372303792e-08 0.1334772150051631 8.130552035639974e-05 0.17353194467183017 9.682969977635201e-05']
['59906.96701951701 0.3068849723175564 5.2585715198538e-05 0.020008359879529605 1.2195212094824667e-05 1.6983623349273047e-05 1.0351617530375539e-08 0.13338906586353072 8.130141396549777e-05 0.17349590645402568 9.682549951191052e-05']
['59906.96715979722 0.3068674048871251 5.2575185608222514e-05 0.020035715428723587 1.2198750628254512e-05 1.700684346060753e-05 1.0354621130837704e-08 0.1335714361914906 8.132500418836343e-05 0.17329596869563452 9.683959132491408e-05']
['59906.96730007743 0.3069764935043584 5.258151894997679e-05 0.02004804110136551 1.2199814493127013e-05 1.7017305816489635e-05 1.0355524167388319e-08 0.13365360734243673 8.133209662084675e-05 0.17332288616192168 9.684898593082698e-05']
['59906.967440357635 0.3068975863757316 5.25792542187271e-05 0.020032814656662675 1.2197320273246558e-05 1.700438120880872e-05 1.0353407007798279e-08 0.1335520977110845 8.131546848831039e-05 0.1733454886646471 9.683379260191626e-05']
['59906.967580637844 0.3069699856766983 5.2583565153770944e-05 0.02002980652210749 1.2198137440558113e-05 1.7001827824894356e-05 1.0354100640955436e-08 0.1335320434807166 8.132091627038742e-05 0.17343794219598171 9.684070811046476e-05']
['59906.96772091806 0.3068267165264258 5.257548717341432e-05 0.020023025449317687 1.2197230175843853e-05 1.6996071871539886e-05 1.0353330530747612e-08 0.13348683632878458 8.131486783895902e-05 0.1733398801976412 9.683124280514644e-05']
['59906.96786119827 0.30691553910201463 5.258044979216835e-05 0.02003401923135061 1.2196847587792371e-05 1.700540368356023e-05 1.0353005779923285e-08 0.13356012820900406 8.131231725194914e-05 0.17335541089301057 9.683179559023143e-05']
['59906.968001478475 0.3069575126191462 5.2582254358004635e-05 0.020024221244324496 1.2198166822584071e-05 1.6997086893866597e-05 1.0354125581193673e-08 0.13349480829549665 8.132111215056047e-05 0.17346270432364957 9.684016085681566e-05']
['59906.96814175868 0.30697665879710334 5.258488420454248e-05 0.020013207339426554 1.2196719108513586e-05 1.6987738001027923e-05 1.0352896723324331e-08 0.1334213822628437 8.13114607234239e-05 0.17355527653425964 9.68334843521705e-05']
['59906.96828203889 0.30693214880315944 5.2584891893439186e-05 0.02002378822550034 1.2195055228112733e-05 1.699671933607291e-05 1.0351484377774949e-08 0.1334919215033356 8.130036818741823e-05 0.17344022729982383 9.68241742689007e-05']
['59906.9684223191 0.307002664901313 5.258845742003995e-05 0.020030222389398833 1.2197723129158814e-05 1.7002180824014823e-05 1.0353748962517155e-08 0.13353481592932556 8.131815419439209e-05 0.17346784897198744 9.684104530312692e-05']
['59906.96856259931 0.3069691172049232 5.2583829542288825e-05 0.020018933781054717 1.2195423221924985e-05 1.6992598755648983e-05 1.0351796740624266e-08 0.13345955854036476 8.13028214794999e-05 0.17350955866455844 9.682565729113291e-05']
['59906.968702879516 0.3069308563149642 5.258768433516123e-05 0.020042658929132727 1.2198413850847429e-05 1.7012737286807397e-05 1.0354335265296055e-08 0.1336177261942182 8.132275900564951e-05 0.173313130120746 9.68444922338153e-05']
['59906.968843159724 0.3071031137158594 5.2625770755292074e-05 0.020045681778762987 1.2199782194257212e-05 1.701530316126542e-05 1.0355496751256131e-08 0.13363787852508657 8.133188129504809e-05 0.17346523519077284 9.687283758918362e-05']
['59906.96898343993 0.3069270089254572 5.2580595324407224e-05 0.020040027785989574 1.2199402521816884e-05 1.701050390314225e-05 1.0355174475279418e-08 0.1336001852399305 8.13293501454459e-05 0.1733268236855267 9.684617803377486e-05']
['59906.96912372014 0.3067891303160047 5.2570578540832225e-05 0.020025747371457393 1.2197063571701406e-05 1.6998382310810528e-05 1.035318911275929e-08 0.13350498247638262 8.131375714467603e-05 0.17328414783962207 9.682764496310525e-05']
['59906.96926400035 0.3067917702707843 5.257254628780019e-05 0.019998871093434015 1.219409100381614e-05 1.6975569017480753e-05 1.0350665918772004e-08 0.1333258072895601 8.129394002544093e-05 0.17346596298122421 9.681207211935338e-05']
['59906.96940428056 0.30689781795333104 5.257874120191139e-05 0.020034725694767552 1.2199731219478657e-05 1.7006003348333136e-05 1.0355453482520237e-08 0.133564837965117 8.133154146319104e-05 0.17333297998821404 9.684701163771827e-05']
['59906.969544560765 0.30690277131184396 5.257902798189613e-05 0.020029489063982876 1.2197604276009758e-05 1.7001558358068984e-05 1.0353648076830893e-08 0.13352992709321918 8.131736184006505e-05 0.17337284421862478 9.683525969474695e-05']
['59906.96968484097 0.30688955948084506 5.2578348243401954e-05 0.02003006581484603 1.2198666877369904e-05 1.7002047919406606e-05 1.0354550040878911e-08 0.13353377209897355 8.13244458491327e-05 0.17335578738187152 9.684083950830334e-05']
['59906.96982512118 0.3068808150659077 5.25858951550073e-05 0.02002705600811503 1.2197551708255668e-05 1.6999493116105326e-05 1.035360345593537e-08 0.1335137067207669 8.131701138837113e-05 0.1733671083451408 9.683869428276024e-05']
['59906.96996540139 0.306885901327909 5.257813527101236e-05 0.020003439316382182 1.2195738146696565e-05 1.6979446645551935e-05 1.0352064057072795e-08 0.13335626210921453 8.13049209779771e-05 0.17352963921869446 9.682432795435233e-05']
['59906.9701056816 0.3068069975413359 5.2576085908072003e-05 0.01999532964367135 1.219459114141281e-05 1.697256294155841e-05 1.0351090448749263e-08 0.13330219762447568 8.12972742760854e-05 0.17350479991686021 9.681679407072941e-05']
['59906.970245961806 0.306930902193543 5.2580256098981826e-05 0.02003945760560702 1.219901596662201e-05 1.7010019919001783e-05 1.0354846357039192e-08 0.1335963840373801 8.132677311081339e-05 0.1733345181561629 9.684382972627753e-05']
['59906.970386242014 0.3068849411918336 5.25784736753875e-05 0.02003047370681079 1.2197851069307165e-05 1.7002394148859612e-05 1.0353857561487982e-08 0.1335364913787386 8.131900712871443e-05 0.17334844981309502 9.683634036059667e-05']
['59906.97052652222 0.30688759940344945 5.2577411618183895e-05 0.020032955831898763 1.2197981021413668e-05 1.7004501042070936e-05 1.035396786826193e-08 0.1335530388793251 8.131987347609112e-05 0.17333456052412435 9.68364912346343e-05']
['59906.97066680243 0.3068798785237184 5.257712925307534e-05 0.020021561417252705 1.2196451040340065e-05 1.6994829162526623e-05 1.0352669179991524e-08 0.13347707611501805 8.13096736022671e-05 0.17340280240870035 9.68277725748238e-05']
['59906.97080708264 0.30690689228361157 5.258228823554571e-05 0.02003250715608869 1.2197154819473534e-05 1.7004120194214836e-05 1.0353266566273852e-08 0.13355004770725795 8.131436546315689e-05 0.1733568445763536 9.683451382003139e-05']
['59906.970947362846 0.30693541108964445 5.258145634697529e-05 0.020041519200956672 1.2198505747187745e-05 1.701176985548473e-05 1.0354413269332394e-08 0.1336101280063778 8.13233716479183e-05 0.17332528308326664 9.684162497477162e-05']
['59906.971087643054 0.3067972522923478 5.258015798356395e-05 0.020009099479278217 1.219592561877569e-05 1.6984251141037852e-05 1.0352223188315912e-08 0.13339399652852144 8.130617079183794e-05 0.17340325576382634 9.682647583387545e-05']
['59906.97122792326 0.3071360831145755 5.263232890428699e-05 0.020000429927263003 1.2192784083798334e-05 1.697689219673058e-05 1.0349556570606353e-08 0.13333619951508668 8.128522722532224e-05 0.17379988359948884 9.683723566356751e-05']
['59906.97136820347 0.3068518781210313 5.2576257065494616e-05 0.020009299303733172 1.2193960066745049e-05 1.698442075730322e-05 1.0350554775934148e-08 0.1333953286915545 8.129306711163367e-05 0.17345654942947683 9.681335428252421e-05']
['59906.97150848368 0.30693563558475817 5.258176242696992e-05 0.02001713330371447 1.2194937903393365e-05 1.6991070463016315e-05 1.0351384789460099e-08 0.13344755535809646 8.129958602262243e-05 0.1734880802266617 9.682181793054751e-05']
['59906.97164876389 0.30692519172451466 5.2578699211996215e-05 0.02004790775460788 1.2199609977327752e-05 1.7017192628246317e-05 1.0355350568986224e-08 0.13365271836405254 8.133073318218502e-05 0.17327247336046211 9.684631005246066e-05']
['59906.971789044095 0.30684309972001295 5.257370706521142e-05 0.02002856850930848 1.2197093062205537e-05 1.7000776966992632e-05 1.035321414507666e-08 0.13352379006205656 8.131395374803691e-05 0.1733193096579564 9.682950866712352e-05']
['59906.9719293243 0.3068273902723362 5.2574000349327204e-05 0.020017571615425875 1.2196188471959073e-05 1.6991442513552237e-05 1.0352446305027608e-08 0.1334504774361725 8.130792314639383e-05 0.1733769128361637 9.682460368682612e-05']
['59906.97206960451 0.3069184122391537 5.258067726938595e-05 0.020032306502700173 1.2198440419976243e-05 1.7003949874328807e-05 1.035435781787304e-08 0.13354871001800117 8.132293613317496e-05 0.17336970222115256 9.68408362387881e-05']
['59906.97220988472 0.30687859023036923 5.257827351344665e-05 0.020032328791426537 1.2198051174794087e-05 1.7003968793587344e-05 1.0354027416300694e-08 0.13354885860951024 8.132034116529392e-05 0.173329731620859 9.683735195106587e-05']
['59906.97235016493 0.30694745832386794 5.258951442541736e-05 0.02003570615499147 1.219696197287489e-05 1.7006835588819226e-05 1.0353102872996877e-08 0.13357137436660982 8.131307981916592e-05 0.17337608395725812 9.683735837567664e-05']
['59906.972490445136 0.30688246836897437 5.257915962294542e-05 0.020024523786854657 1.2200350192771388e-05 1.6997343699942174e-05 1.0355978883369198e-08 0.13349682524569773 8.133566795180925e-05 0.17338564312327664 9.685070421954682e-05']
['59906.972630725344 0.3069121587570023 5.258358369695245e-05 0.020024223242419002 1.219798063749635e-05 1.699708858990189e-05 1.0353967542382788e-08 0.1334948216161267 8.131987091664234e-05 0.1734173371408756 9.683984035671359e-05']
['59906.97277100555 0.30685921568287233 5.257743422620651e-05 0.02002102752989676 1.2196994599183743e-05 1.699437598486394e-05 1.0353130567067965e-08 0.13347351686597841 8.131329732789162e-05 0.17338569881689392 9.683098115864147e-05']
['59906.97291128576 0.30688104630151936 5.257745359201173e-05 0.020023606625136095 1.2197234265256953e-05 1.699656518889618e-05 1.035333400194926e-08 0.13349071083424063 8.131489510171302e-05 0.17339033546727872 9.683233339965913e-05']
['59906.973051565976 0.3068587930803079 5.2576506453723034e-05 0.02002327124031436 1.2196710951730021e-05 1.699628050541769e-05 1.0352889799631405e-08 0.13348847493542906 8.131140634486682e-05 0.17337031814487883 9.682888945277864e-05']
['59906.973191846184 0.3069529972634999 5.259293975122398e-05 0.020009020436039616 1.2195477360069795e-05 1.69841840470531e-05 1.0351842694508834e-08 0.13339346957359743 8.130318240046531e-05 0.17355952768990246 9.683090818596719e-05']
['59906.97333212639 0.30691087274402273 5.257905703013924e-05 0.020040849917118766 1.2197868166175489e-05 1.701120174971868e-05 1.0353872073760542e-08 0.1336056661141251 8.13191211078366e-05 0.17330520662989762 9.683675281590989e-05']
['59906.9734724066 0.30690133971749084 5.2578918751240976e-05 0.020007689622042767 1.2194023048179839e-05 1.6983054417048114e-05 1.0350608236236386e-08 0.1333845974802851 8.12934869878656e-05 0.17351674223720573 9.681515234556971e-05']
['59906.97361268681 0.3068775775968492 5.2577717882314305e-05 0.02000410291374926 1.2194574547052247e-05 1.6980009924491635e-05 1.0351076363018537e-08 0.13336068609166174 8.129716364701498e-05 0.17351689150518745 9.681758742481538e-05']
['59906.97375296702 0.3068853751628665 5.257694696325053e-05 0.020029714852226974 1.2198452747858527e-05 1.7001750013083068e-05 1.0354368282104524e-08 0.13353143234817985 8.132301831905685e-05 0.17335394281468666 9.683887990109198e-05']
['59906.973893247225 0.3068218934052195 5.257439004671912e-05 0.020007223698029375 1.2194372866470834e-05 1.6982658928462322e-05 1.0350905171224098e-08 0.13338149132019586 8.129581910980556e-05 0.17344040208502362 9.681465123378169e-05']
['59906.97403352743 0.30708518567990917 5.2593438313446515e-05 0.020055855541098126 1.2217622057838942e-05 1.7023938918947978e-05 1.0370639697779424e-08 0.13370570360732084 8.145081371892628e-05 0.17337948207258833 9.695516906852122e-05']
['59906.97417380764 0.3068348643902086 5.2577381880861685e-05 0.02000684793361663 1.2194669068154343e-05 1.6982339969722446e-05 1.0351156595021871e-08 0.13337898622411087 8.129779378769563e-05 0.1734558781660977 9.681793408347775e-05']
['59906.97431408785 0.30688277585292467 5.2576945077417074e-05 0.020043647523737544 1.219828686457261e-05 1.7013576431970442e-05 1.035422747599823e-08 0.13362431682491696 8.132191243048408e-05 0.1732584590280077 9.683795017979806e-05']
['59906.97445436806 0.3069389829573142 5.258120557839353e-05 0.020029671665566337 1.2198245328997411e-05 1.700171335510698e-05 1.0354192219506993e-08 0.13353114443710892 8.132163552664942e-05 0.17340783852020528 9.684003090048295e-05']
['59906.974594648265 0.30689322890785226 5.2577596483135245e-05 0.020022990749986598 1.219632088849913e-05 1.6996042417832875e-05 1.0352558703677726e-08 0.13348660499991066 8.130880592332755e-05 0.1734066239079416 9.682729766249154e-05']
['59906.97473492847 0.30697036711129755 5.2583374051913685e-05 0.020021027965653596 1.2197648918390074e-05 1.699437635474583e-05 1.0353685970460218e-08 0.13347351977102398 8.131765945593382e-05 0.17349684734027357 9.683786948335188e-05']
['59906.97487520868 0.30701735126768265 5.258816772780804e-05 0.0201216701723728 1.2230929501876836e-05 1.7079804113055368e-05 1.0381935407105022e-08 0.13414446781581868 8.153953001251224e-05 0.17287288345186397 9.702685370364977e-05']
['59906.97501548889 0.3069549668433424 5.2581656720708796e-05 0.020042330885541516 1.2206284515603338e-05 1.7012458834758913e-05 1.036101609303644e-08 0.13361553923694344 8.137523010402226e-05 0.17333942760639895 9.688528628216481e-05']
['59906.9751557691 0.30686321843618825 5.257719184221106e-05 0.02001839833370357 1.2196499670143823e-05 1.699214425382125e-05 1.0352710458250989e-08 0.13345598889135712 8.130999780095882e-05 0.17340722954483112 9.682807880157796e-05']
['59906.975296049306 0.3069089359664728 5.2578628590172e-05 0.020039322722893764 1.2199248338865185e-05 1.7009905426998838e-05 1.0355043600725265e-08 0.13359548481929176 8.132832225910123e-05 0.17331345114718102 9.684424704598345e-05']
['59906.975436329514 0.30690268205597626 5.257927474163237e-05 0.020030637284842317 1.2197555005540966e-05 1.7002532998205204e-05 1.0353606254758058e-08 0.13353758189894877 8.131703337027312e-05 0.1733651001570275 9.683511784728808e-05']
['59906.97557660972 0.30685993605151163 5.258074110295975e-05 0.020026965053304063 1.221336326626658e-05 1.699941591126392e-05 1.0367024723217614e-08 0.13351310035536043 8.142242177511053e-05 0.1733468356961512 9.692442985470936e-05']
['59906.97571688993 0.3067704409872585 5.257301041772244e-05 0.020020385291637598 1.2197684609345275e-05 1.6993830836098137e-05 1.035371626588392e-08 0.133469235277584 8.131789739563517e-05 0.17330120570967447 9.683244219386911e-05']
['59906.97585717014 0.3068211497229151 5.257451859413125e-05 0.020010313094867456 1.2194477198076417e-05 1.6985281289944737e-05 1.0350993730641428e-08 0.13340208729911637 8.129651465384279e-05 0.1734190624237987 9.681530509308498e-05']
['59906.97599745035 0.306874726492012 5.257492352009417e-05 0.020031559937935525 1.2197780564804579e-05 1.700331617047477e-05 1.0353797715407466e-08 0.13354373291957017 8.13185370986972e-05 0.1733309935724418 9.68340180877358e-05']
['59906.976137730555 0.306994124487209 5.258377861022533e-05 0.020032468474519873 1.2199294087434514e-05 1.7004087360279457e-05 1.035508243331699e-08 0.1335497898301325 8.132862724956344e-05 0.17344433465707648 9.684729930786724e-05']
['59906.97627801076 0.3068776589528981 5.2577227220309234e-05 0.02002717985816653 1.2197239749765825e-05 1.6999598243294117e-05 1.035333865734498e-08 0.13351453238777689 8.13149316651055e-05 0.1733631265651212 9.68322411899921e-05']
['59906.97641829097 0.3068627012501782 5.2588356468871245e-05 0.02001482634870533 1.2195026098418778e-05 1.6989112258785946e-05 1.0351459651722769e-08 0.13343217565803556 8.130017398945853e-05 0.17343052559214267 9.682589285316867e-05']
['59906.97655857118 0.3068761195028261 5.257823756591792e-05 0.020000131389001495 1.2194718281634655e-05 1.69766387895838e-05 1.0351198368721383e-08 0.13333420926000997 8.129812187756436e-05 0.17354191024281615 9.68186742646139e-05']
['59906.97669885139 0.3069321005567872 5.258036368270911e-05 0.020036409636927932 1.2198864269339307e-05 1.70074327228329e-05 1.0354717592386416e-08 0.13357606424618623 8.13257617955954e-05 0.17335603631060098 9.684303886516511e-05']
['59906.976839131596 0.3068282606839615 5.257416616902376e-05 0.020018782881830916 1.2195543918904678e-05 1.6992470668409645e-05 1.0351899191402584e-08 0.13345855254553946 8.13036261260312e-05 0.17336970813842206 9.682108535649446e-05']
['59906.976979411804 0.30691331695086366 5.257973079339212e-05 0.020031235495130646 1.2197598043249034e-05 1.700304077486865e-05 1.0353642786299275e-08 0.13354156996753763 8.13173202883269e-05 0.17337174698332602 9.683560641200079e-05']
['59906.97711969201 0.3068491600425383 5.258485440295977e-05 0.020005127038298133 1.2195443380519776e-05 1.6980879228407873e-05 1.0351813851770969e-08 0.13336751358865423 8.130295587013184e-05 0.1734816464538841 9.682632671851743e-05']
['59906.97725997222 0.3068603274830418 5.258295280443845e-05 0.0200193903905292 1.2196856834904079e-05 1.6992986337808594e-05 1.0353013629115485e-08 0.13346260260352802 8.131237889936053e-05 0.1733977248795138 9.683320653529435e-05']
['59906.97740025243 0.3068355841248018 5.257339687477036e-05 0.02001215885381541 1.2195165692553571e-05 1.698684801879979e-05 1.0351578142904523e-08 0.1334143923587694 8.130110461702381e-05 0.17342119176603238 9.68185502416782e-05']
['59906.977540532636 0.3067844319022466 5.2571894007213476e-05 0.020009349712650608 1.2194763733080488e-05 1.698446354572128e-05 1.035123694910685e-08 0.13339566475100406 8.129842488720325e-05 0.17338876715124252 9.681548393023669e-05']
['59906.977680812844 0.30681065870158936 5.257975256459287e-05 0.02002486140513355 1.2197683723570858e-05 1.699763027923798e-05 1.0353715514015244e-08 0.13349907603422367 8.13178914904724e-05 0.17331158266736568 9.683609789851124e-05']
['59906.97782109305 0.3068366310494947 5.257878870917438e-05 0.020014238241445628 1.2194783832047448e-05 1.6988613057839544e-05 1.0351254009639878e-08 0.13342825494297086 8.129855888031633e-05 0.17340837610652385 9.681934051696625e-05']
['59906.97796137326 0.30698289154194147 5.258413925043139e-05 0.020018516191912306 1.2195922888222628e-05 1.6992244294975937e-05 1.0352220870550486e-08 0.1334567746127487 8.130615258815085e-05 0.17352611692919276 9.682862257306168e-05']
['59906.97810165347 0.30700837221468275 5.2586282696153495e-05 0.020047725623635996 1.2199406841824943e-05 1.7017038030675834e-05 1.0355178142216147e-08 0.1336515041575733 8.132937894549962e-05 0.17335686805710945 9.68492901753051e-05']
['59906.97824193368 0.30678211539350153 5.257972359120072e-05 0.020016150404982787 1.2231917071790691e-05 1.6990236152660552e-05 1.0382773682483364e-08 0.13344100269988526 8.154611381193795e-05 0.17334111269361627 9.702781050171444e-05']
['59906.97838221389 0.3069647814811292 5.258379851899796e-05 0.020017089202089593 1.2196308599543738e-05 1.6991033028394463e-05 1.0352548272488413e-08 0.13344726134726395 8.130872399695825e-05 0.17351752013386526 9.683059673832495e-05']
['59906.9785224941 0.3068965661910022 5.258302438675448e-05 0.020041460346903968 1.2198161206534162e-05 1.7011719898613216e-05 1.0354120814142454e-08 0.13360973564602646 8.132107471022775e-05 0.17328683054497573 9.684054752883453e-05']
['59906.97866277431 0.3069185050628222 5.2580473234372e-05 0.020029032849639666 1.2197909335954484e-05 1.700117111130722e-05 1.0353907019754319e-08 0.13352688566426446 8.13193955730299e-05 0.17339161939855774 9.683775225558173e-05']
['59906.97880305452 0.3069544259469069 5.2582197969070864e-05 0.020024606277667792 1.21973322559687e-05 1.699741372031908e-05 1.0353417179048735e-08 0.13349737518445196 8.131554837312466e-05 0.17345705076245496 9.683545812604253e-05']
['59906.978943334725 0.3068361328196291 5.257464654356191e-05 0.02003474997085891 1.2198853604423391e-05 1.7006023954519476e-05 1.0354708539724625e-08 0.13356499980572606 8.132569069615593e-05 0.17327113301390307 9.683987518779281e-05']
['59906.97908361493 0.3069221265206228 5.258141422054557e-05 0.020016945093694838 1.2196505518049025e-05 1.6990910705389842e-05 1.0352715422107094e-08 0.13344630062463225 8.13100367869935e-05 0.17347582589599053 9.683040433528524e-05']
['59906.97922389514 0.3069532857441448 5.2582259374188e-05 0.020046850675928957 1.2199697130362377e-05 1.7016295351995717e-05 1.0355424546779643e-08 0.13364567117285972 8.133131420241585e-05 0.1733076145712851 9.684873086822806e-05']
['59906.97936417535 0.3068538443582756 5.2582883621429037e-05 0.020021803188556436 1.2196249243301997e-05 1.6995034384383083e-05 1.0352497889345605e-08 0.13347868792370957 8.130832828867997e-05 0.17337515643456605 9.682976762878503e-05']
['59906.97950445556 0.30694596803789487 5.258238954763332e-05 0.02003405538735767 1.219890983009999e-05 1.7005434373732208e-05 1.035475626556121e-08 0.13356036924905113 8.132606553399994e-05 0.17338559878884374 9.684439387894123e-05']
['59906.979644735766 0.3069251878751449 5.257990738724828e-05 0.020044107088152033 1.2199959446242559e-05 1.7013966522361028e-05 1.0355647207414215e-08 0.13362738058768023 8.133306297495038e-05 0.17329780728746466 9.684892252234328e-05']
['59906.979785015974 0.3069231932098341 5.258036287566258e-05 0.020037600010151906 1.2198595905379624e-05 1.7008443143007404e-05 1.0354489797982515e-08 0.13358400006767937 8.132397270253083e-05 0.1733391931421547 9.684153600732661e-05']
['59906.97992529618 0.306815907443163 5.2573051288833674e-05 0.020016388768187267 1.2195289983576374e-05 1.6990438481632522e-05 1.0351683644401382e-08 0.13344259178791512 8.13019332238425e-05 0.17337331565524788 9.681905839116843e-05']
['59906.98006557639 0.30692688898356724 5.2589778891365346e-05 0.020009394426618456 1.2194976341385329e-05 1.698450150011599e-05 1.0351417416641025e-08 0.13339596284412303 8.129984227590219e-05 0.1735309261394442 9.682638688874676e-05']
['59906.9802058566 0.3069860561356632 5.2586775082068664e-05 0.020025734037172137 1.2196967358210642e-05 1.699837099231767e-05 1.0353107444211839e-08 0.1335048935811476 8.131311572140429e-05 0.17348116255451562 9.683590089349384e-05']
['59906.98034613681 0.3069501387067021 5.2582405729630325e-05 0.020029515846058173 1.2197374405316163e-05 1.700158109140056e-05 1.0353452956526053e-08 0.13353010564038784 8.131582936877443e-05 0.1734200330663143 9.683580690140965e-05']
['59906.980486417015 0.30682575104344045 5.258328869164417e-05 0.02000180186245573 1.219398259287132e-05 1.697805673149071e-05 1.0350573896703987e-08 0.13334534574970489 8.129321728580881e-05 0.17348040529373557 9.681729920993725e-05']
['59906.98062669722 0.306823547237446 5.257496729799221e-05 0.020024611157020922 1.219627360058712e-05 1.6997417862042653e-05 1.0352518564451353e-08 0.13349740771347282 8.13084906705808e-05 0.17332613952397316 9.682560529897489e-05']
['59906.98076697743 0.30688527512850894 5.258297301751999e-05 0.019992811899451464 1.2192899797122726e-05 1.6970425813888885e-05 1.0349654791126666e-08 0.13328541266300978 8.128599864748485e-05 0.17359986246549916 9.681106665810549e-05']
['59906.98090725764 0.3068707586857733 5.25775841366883e-05 0.0199955438704469 1.2193580585638824e-05 1.697274478289319e-05 1.0350232662366864e-08 0.13330362580297936 8.129053723759216e-05 0.17356713288279393 9.68119506983869e-05']
['59906.98104753785 0.30688687830855893 5.257810776924358e-05 0.02000624655182385 1.2194869828326197e-05 1.698182950100241e-05 1.0351327005548413e-08 0.133374977012159 8.129913218884132e-05 0.17351190129639993 9.681945213257968e-05']
['59906.981187818055 0.30688728425699796 5.2580555359147566e-05 0.020030768018149205 1.2196355654937988e-05 1.7002643968082636e-05 1.0352588214347581e-08 0.13353845345432805 8.130903769958659e-05 0.1733488308026699 9.68290990018454e-05']
['59906.98132809826 0.30689060950234737 5.25786381451075e-05 0.020023682877682424 1.2197125857931373e-05 1.6996629914067763e-05 1.0353241982953349e-08 0.1334912191845495 8.131417238620916e-05 0.17339939031779786 9.683236969138106e-05']
['59906.98146837847 0.30689487699497997 5.257823079130204e-05 0.020019644141692067 1.2196399008070379e-05 1.6993201728485317e-05 1.035262501362928e-08 0.13346429427794712 8.130932672046919e-05 0.17343058271703285 9.682807942368488e-05']
['59906.98160865868 0.3069419756396503 5.2579114887421624e-05 0.02002462235421995 1.2196009035618963e-05 1.6997427366520384e-05 1.0352293994731614e-08 0.13349748236146636 8.130672690412643e-05 0.17344449327818395 9.682637637651674e-05']
['59906.98174893889 0.3068712594540453 5.257675964135367e-05 0.0200107986448633 1.2194898888827584e-05 1.6985693437581842e-05 1.0351351672868118e-08 0.1334053242990887 8.129932592551724e-05 0.17346593515495662 9.681888271576034e-05']
['59906.981889219096 0.3068060642935231 5.257566786394508e-05 0.020023698486104025 1.2196285652477209e-05 1.6996643162907502e-05 1.0352528794413386e-08 0.1334913232406935 8.130857101651473e-05 0.1733147410528296 9.682605316797482e-05']
['59906.982029499304 0.3068737408653838 5.258193299319449e-05 0.020004813164313358 1.2207534522394967e-05 1.6980612803894888e-05 1.03620771317553e-08 0.1333654210954224 8.138356348263312e-05 0.17350831976996142 9.689243563061344e-05']
['59906.98216977951 0.30696410917509603 5.258322598069397e-05 0.020043898080750324 1.2206149284804028e-05 1.7013789111368362e-05 1.0360901305568875e-08 0.13362598720500216 8.137432856536019e-05 0.17333812197009388 9.688538075478635e-05']
['59906.98231005972 0.3068621171449611 5.258187351886806e-05 0.02003642386092913 1.2197462591417746e-05 1.7007444796540107e-05 1.035352781121394e-08 0.13357615907286088 8.131641727611831e-05 0.1732859580721002 9.683601159371461e-05']
['59906.98245033993 0.30690412846505244 5.2578837172141835e-05 0.020025494741569214 1.21959179230468e-05 1.6998167871901322e-05 1.0352216655978346e-08 0.13350329827712812 8.130611948697867e-05 0.17340083018792432 9.682571551197262e-05']
['59906.98259062014 0.3069145244656486 5.2584991445811425e-05 0.02002713216956713 1.2197098815014756e-05 1.6999557763953724e-05 1.0353219028212787e-08 0.13351421446378087 8.131399210009838e-05 0.17340031000186773 9.683566820449437e-05']
['59906.982730900345 0.3069128546482766 5.258089355897866e-05 0.020020120083590248 1.2195946892690807e-05 1.6993605720515823e-05 1.035224124617591e-08 0.133467467223935 8.130631261793871e-05 0.17344538742434162 9.682699437133543e-05']
['59906.98287118055 0.30680526554771614 5.257165231679246e-05 0.02001250797988331 1.2195669831990156e-05 1.698714436621029e-05 1.0352006069749003e-08 0.1334167198658887 8.130446554660105e-05 0.17338854568182743 9.682042524765188e-05']
['59906.98301146076 0.30692557499898243 5.2584273794509434e-05 0.020017609083004973 1.2194877833825928e-05 1.699147431702114e-05 1.0351333800827634e-08 0.13345072722003315 8.129918555883952e-05 0.17347484777894928 9.682284556356806e-05']
['59906.98315174097 0.30696011807498547 5.258101520597682e-05 0.020025005997682643 1.2195026015203403e-05 1.699775301320557e-05 1.0351459581087364e-08 0.13350003998455096 8.130017343468935e-05 0.1734600780904345 9.682190537580704e-05']
['59906.98329202118 0.3068486891148544 5.257671847825052e-05 0.020018875605201998 1.2195074024049124e-05 1.69925493744515e-05 1.0351500332261277e-08 0.13345917070134666 8.130049349366082e-05 0.17338951841350775 9.68198407778798e-05']
['59906.983432301386 0.3069807376529679 5.2584280327694986e-05 0.02002973217737315 1.219621011025357e-05 1.7001764719123886e-05 1.035246467218243e-08 0.13353154784915433 8.130806740169047e-05 0.17344918980381357 9.683030704371153e-05']
['59906.983572581594 0.30678814600414067 5.257760509679179e-05 0.02001161749941652 1.2195087771572829e-05 1.6986388502914206e-05 1.0351512001521826e-08 0.13341078332944348 8.130058514381887e-05 0.1733773626746972 9.682039920616691e-05']
['59906.98371286181 0.30694409533635614 5.258150335394589e-05 0.02003258927227606 1.2197303170650919e-05 1.7004189896599515e-05 1.0353392490664222e-08 0.13355059514850706 8.131535447100613e-05 0.17339350018784908 9.683491812206172e-05']
['59906.98385314202 0.3068646814828299 5.257634686491241e-05 0.020015897222443145 1.2194895132447662e-05 1.699002124464621e-05 1.0351348484353809e-08 0.13343931481628762 8.129930088298442e-05 0.1734253666665423 9.681863753287181e-05']
['59906.983993422225 0.30683905982990667 5.257436323506569e-05 0.020014833267433585 1.2195451080581913e-05 1.6989118131584887e-05 1.035182038778671e-08 0.13343222178289058 8.130300720387942e-05 0.1734068380470161 9.682067263744193e-05']
['59906.98413370243 0.3068511303570659 5.25788659631649e-05 0.020018176698917818 1.2195752563020264e-05 1.699195612437211e-05 1.035207629402841e-08 0.1334545113261188 8.130501708680176e-05 0.1733966190309471 9.682480544497669e-05']
['59906.98427398264 0.30694177964246333 5.257988840059844e-05 0.020032997497103345 1.2196494811123967e-05 1.700453640859501e-05 1.0352706333786836e-08 0.13355331664735562 8.130996540749311e-05 0.1733884629951077 9.682951584505167e-05']
['59906.98441426285 0.30687895681673005 5.257720719182646e-05 0.020021754748996118 1.2196302338886965e-05 1.6994993267607266e-05 1.0352542958277893e-08 0.13347836499330745 8.130868225924644e-05 0.1734005918234226 9.68269824316928e-05']
['59906.98455454306 0.3068788951544783 5.257856559913947e-05 0.0200085315090719 1.2193856281516101e-05 1.698376903295324e-05 1.035046668029571e-08 0.13339021006047933 8.129237521010735e-05 0.17348868509399898 9.681402701966224e-05']
['59906.984694823266 0.3068457485025584 5.25798504604984e-05 0.02001317221254416 1.2194057607227579e-05 1.698770818440409e-05 1.0350637570867193e-08 0.13342114808362773 8.12937173815172e-05 0.17342460041893068 9.681585180203892e-05']
['59906.984835103474 0.30686354122662174 5.2576324604826e-05 0.020017696419166175 1.2194712444982245e-05 1.6991548450257225e-05 1.0351193414416944e-08 0.13345130946110784 8.12980829665483e-05 0.1734122317655139 9.68176027537751e-05']
['59906.98497538368 0.3068657757972232 5.257636717988838e-05 0.020027565881622557 1.2195694896821814e-05 1.699992591018039e-05 1.0352027345438903e-08 0.13351710587748372 8.130463264547876e-05 0.17334866991973946 9.682312572650553e-05']
['59906.98511566389 0.30683098378372364 5.2576714053320615e-05 0.01998743014336827 1.2191091344336653e-05 1.696585763744539e-05 1.0348119728725322e-08 0.1332495342891218 8.127394229557769e-05 0.17358144949460183 9.679754416776044e-05']
['59906.9852559441 0.3070532826795117 5.25892511823991e-05 0.020027485684158956 1.2195989340510614e-05 1.6999857836459027e-05 1.0352277277004422e-08 0.1335165712277264 8.13065956034041e-05 0.1735367114517853 9.683177076012271e-05']
['59906.98539622431 0.30691922719281495 5.258072610779551e-05 0.02002047634082485 1.2196294500231921e-05 1.699390812104862e-05 1.035253630462084e-08 0.13346984227216568 8.130863000154614e-05 0.17344938492064926 9.682884937223688e-05']
['59906.985536504515 0.3069625333285605 5.258241779401194e-05 0.020037393468500822 1.2197709597339816e-05 1.7008267825008875e-05 1.0353737476352448e-08 0.13358262312333882 8.131806398226545e-05 0.17337991020522167 9.683768992953022e-05']
['59906.98567678472 0.3069685430335532 5.2581573256069706e-05 0.020047402737794748 1.2199297115804837e-05 1.7016763956661492e-05 1.0355085003877556e-08 0.1336493515852983 8.132864743869892e-05 0.1733191914482549 9.684611887056503e-05']
['59906.98581706493 0.30695356296428733 5.258960565158433e-05 0.02004051006521026 1.219866294408084e-05 1.7010913274459172e-05 1.0354546702199459e-08 0.13360340043473506 8.132441962720559e-05 0.17335016252955227 9.684692999930856e-05']
['59906.98595734514 0.3069290375244621 5.258624389377686e-05 0.020022225793057583 1.2193946507328643e-05 1.6995393102224846e-05 1.0350543266344034e-08 0.13348150528705055 8.12929767155243e-05 0.17344753223741155 9.68187022745428e-05']
['59906.98609762535 0.3068939583774234 5.258463478137e-05 0.020028047329121244 1.2195927925112505e-05 1.700033457550975e-05 1.0352225145995402e-08 0.13352031552747495 8.13061861674167e-05 0.17337364284994844 9.682891987511113e-05']
['59906.986237905556 0.306926033792593 5.258018420443596e-05 0.020018746433401336 1.219398967164968e-05 1.699243973002172e-05 1.0350579905357677e-08 0.1334583095560089 8.129326447766454e-05 0.17346772423658408 9.681565276549e-05']
['59906.986378185764 0.30700738750696877 5.2584863814500686e-05 0.020038132517189472 1.2197441769073453e-05 1.7008895149019457e-05 1.0353510136659161e-08 0.1335875501145965 8.13162784604897e-05 0.17341983739237227 9.683751878819224e-05']
['59906.98651846597 0.30702909658973815 5.258725235806559e-05 0.02004207902084121 1.2197819640922293e-05 1.7012245045361348e-05 1.035383088424635e-08 0.13361386013894141 8.131879760614862e-05 0.17341523645079673 9.6840931194824e-05']
['59906.98665874618 0.3068994528991817 5.257895025904307e-05 0.020023363002869905 1.2196105745107676e-05 1.6996358395893984e-05 1.03523760842952e-08 0.13348908668579937 8.130737163405117e-05 0.17341036621338232 9.682682837096667e-05']
['59906.98679902639 0.306858410103038 5.257592617776133e-05 0.020016936898468785 1.2194526688835895e-05 1.6990903749065918e-05 1.0351035739702804e-08 0.1334462459897919 8.12968445922393e-05 0.1734121641132461 9.68163465232195e-05']
['59906.9869393066 0.3069541993048971 5.258242138752391e-05 0.020029252220528045 1.2195976906798002e-05 1.7001357319100583e-05 1.0352266722941364e-08 0.13352834813685363 8.130651271198669e-05 0.17342585116804346 9.682799207026646e-05']
['59906.987079586805 0.30686515826891225 5.2576810051606446e-05 0.0200181482630115 1.220059329200102e-05 1.6991931987225168e-05 1.0356185232404172e-08 0.13345432175341002 8.133728861334012e-05 0.17341083651550224 9.68507897447021e-05']
['59906.98721986701 0.3068811354469432 5.257862804143795e-05 0.02002200463934654 1.2195147233380008e-05 1.6995205381124602e-05 1.0351562474271361e-08 0.13348003092897692 8.130098155586672e-05 0.17340110451796625 9.682128758009402e-05']
['59906.98736014722 0.30684999922556544 5.2575468129720654e-05 0.02002142128969492 1.2195112700977498e-05 1.6994710218561367e-05 1.0351533162257728e-08 0.13347614193129945 8.130075133984999e-05 0.173373857294266 9.681937831593112e-05']
['59906.98750042743 0.3068552017522522 5.2584171277492565e-05 0.020012248225766097 1.2193778769834713e-05 1.6986923880067664e-05 1.0350400886337096e-08 0.133414988171774 8.129185846556477e-05 0.17344021358047823 9.681663762869525e-05']
['59906.98764070764 0.30682692124739475 5.258013095501879e-05 0.02002563659142325 1.2195682138990377e-05 1.699828827779704e-05 1.0352016516255241e-08 0.13350424394282168 8.130454759326917e-05 0.17332267730457307 9.682509814398897e-05']
['59906.987780987845 0.30693401847007695 5.258051084901576e-05 0.020021771120929947 1.2195656731012326e-05 1.6995007164536318e-05 1.0351994949293637e-08 0.13347847413953298 8.130437820674883e-05 0.17345554433054397 9.682516220864037e-05']
['59906.98792126805 0.30698371212649755 5.258648604335489e-05 0.0200365511155984 1.2197791351461267e-05 1.7007552813658214e-05 1.0353806871406033e-08 0.13357700743732265 8.131860900974179e-05 0.1734067046891749 9.684035669940099e-05']
['59906.98806154826 0.3069190284394798 5.257919835983158e-05 0.020018586447603452 1.219589586573808e-05 1.6992303929858744e-05 1.0352197933153205e-08 0.133457242984023 8.130597243825387e-05 0.17346178545545682 9.68257881676809e-05']
['59906.98820182847 0.30693897093136663 5.2588635335068333e-05 0.02002848151177584 1.220928972257486e-05 1.70007031211934e-05 1.0363566991940611e-08 0.13352321007850562 8.139526481716573e-05 0.173415760852861 9.690590127056935e-05']
['59906.98834210868 0.30695447711837254 5.258101192838892e-05 0.020039451920311077 1.2197742728061515e-05 1.7010015093172705e-05 1.0353765598582457e-08 0.1335963461354072 8.131828485374343e-05 0.17335813098296535 9.683711203339315e-05']
['59906.988482388886 0.30685587635485745 5.2576747123416423e-05 0.020010621816313932 1.2194579771790254e-05 1.698554334084738e-05 1.0351080797913899e-08 0.1334041454420929 8.12971984786017e-05 0.17345173091276456 9.68170894963737e-05']
['59906.988622669094 0.30704356934601307 5.258868287310881e-05 0.02004033701006081 1.2196831504541106e-05 1.701076638068604e-05 1.0352992128035605e-08 0.13360224673373874 8.131221003027404e-05 0.17344132261227432 9.683617643389171e-05']
['59906.9887629493 0.30690233999932787 5.2577763667728306e-05 0.020023599254570708 1.219540119429627e-05 1.699655893256597e-05 1.0351778042992295e-08 0.13349066169713808 8.13026746286418e-05 0.1734116783021898 9.682223987323514e-05']
['59906.98890322951 0.3068672265687483 5.2577244019759824e-05 0.02004368649552734 1.2199191331937937e-05 1.7013609512253038e-05 1.0354995211742534e-08 0.13362457663684893 8.132794221291957e-05 0.1732426499318994 9.684317618346351e-05']
['59906.98904350972 0.3069458394358607 5.259085945414836e-05 0.02002011051568881 1.2196816940432735e-05 1.699359759902884e-05 1.0352979765636464e-08 0.13346740343792537 8.131211293621824e-05 0.1734784359979353 9.683727695613036e-05']
['59906.989183789934 0.30688529425116906 5.2577147814186084e-05 0.02003683119369743 1.219834498491102e-05 1.7007790551332417e-05 1.0354276810073708e-08 0.13357887462464954 8.13222998994068e-05 0.17330641962651952 9.683838563918665e-05']
['59906.98932407014 0.30695142033296197 5.258758852182017e-05 0.02003874288604405 1.2197121520972798e-05 1.7009413246194472e-05 1.0353238301628573e-08 0.13359161924029367 8.131414347315198e-05 0.1733598010926683 9.683720563560587e-05']
['59906.98946435035 0.3069306494933358 5.258075239468706e-05 0.02001810211660566 1.2193859390898451e-05 1.6991892816939324e-05 1.0350469319621421e-08 0.1334540141107044 8.1292395939323e-05 0.17347663538263142 9.681523206576043e-05']
['59906.98960463056 0.3068367640284222 5.257388208896519e-05 0.020012680074998325 1.2194064979147245e-05 1.6987290445080887e-05 1.0350643828346954e-08 0.13341786716665552 8.12937665276483e-05 0.17341889686176667 9.681265182896401e-05']
['59906.98974491077 0.30681520256714323 5.2573424632041185e-05 0.020006812270074982 1.2193302118977571e-05 1.698230969756809e-05 1.0349996292523532e-08 0.13337874846716655 8.128868079318382e-05 0.17343645409997668 9.680813293642764e-05']
['59906.989885190975 0.3068315311375134 5.2580215834739575e-05 0.02001656492572449 1.2195521985332892e-05 1.6990588008794184e-05 1.0351880573608613e-08 0.13344376617149661 8.130347990221929e-05 0.17338776496601677 9.682424769363495e-05']
['59906.99002547118 0.3068463014330707 5.25767184894301e-05 0.020004208925582682 1.2193229590266322e-05 1.6980099910130648e-05 1.0349934728241338e-08 0.13336139283721787 8.128819726844215e-05 0.1734849085958528 9.680951576301757e-05']
['59906.99016575139 0.30686135282763344 5.258179955792522e-05 0.02003512302998855 1.2197069862885702e-05 1.7006340616943728e-05 1.0353194452882377e-08 0.1335674868665903 8.131379908590469e-05 0.17329386596104313 9.683377286119084e-05']
['59906.9903060316 0.30684518680941736 5.2574909207931344e-05 0.02001357553704228 1.2194471056870438e-05 1.6988050536871004e-05 1.035098851782389e-08 0.13342383691361523 8.129647371246959e-05 0.17342134989580213 9.681548283360716e-05']
['59906.99044631181 0.3069375265758276 5.2581538006940935e-05 0.020014316669715496 1.2195078559275216e-05 1.6988679629822625e-05 1.0351504181880747e-08 0.1334287777981033 8.130052372850144e-05 0.17350874877772432 9.682248343078172e-05']
['59906.990586592015 0.30684115182339555 5.2574521103858864e-05 0.02002998098883443 1.2196765197836631e-05 1.7001975916851677e-05 1.0352935845156793e-08 0.13353320659222953 8.131176798557755e-05 0.17330794523116602 9.682811514348761e-05']
['59906.99072687222 0.3069404169119433 5.2589693382243746e-05 0.0200354232713059 1.2198160161262122e-05 1.700659546968921e-05 1.0354119926887989e-08 0.1335694884753727 8.132106774174748e-05 0.1733709284365706 9.684416300787721e-05']
['59906.99086715243 0.30698938594805036 5.2584056455291664e-05 0.020034093088608613 1.2196691602746565e-05 1.7005466375547933e-05 1.0352873375704146e-08 0.13356062059072407 8.131127735164378e-05 0.1734287653573263 9.683288087137158e-05']
['59906.99100743264 0.30689289766623207 5.257799792984966e-05 0.02003430634042904 1.2197820580196712e-05 1.7005647389315103e-05 1.035383168152724e-08 0.13356204226952695 8.131880386797808e-05 0.17333085539670512 9.683591135952592e-05']
['59906.99114771285 0.3068447572709322 5.257488820574797e-05 0.020032626400620004 1.219857411583938e-05 1.7004221412116677e-05 1.0354471302446315e-08 0.13355084267080003 8.13238274389292e-05 0.17329391460013216 9.68384416394834e-05']
['59906.991287993056 0.3068749011520574 5.2575772645908615e-05 0.020029401301365206 1.2195606568970717e-05 1.700148386284541e-05 1.035195237043029e-08 0.13352934200910138 8.130404379313811e-05 0.17334555914295602 9.682230841304493e-05']
['59906.991428273264 0.3068889875713434 5.2583140724381375e-05 0.02002131622884873 1.2194999877039237e-05 1.6994621040145386e-05 1.0351437394324535e-08 0.13347544152565818 8.129999918026158e-05 0.17341354604568524 9.682291337875879e-05']
['59906.99156855347 0.3069513807263968 5.258627399631454e-05 0.02004567768470017 1.2200330710341999e-05 1.701529968611697e-05 1.0355962346169514e-08 0.13363785123133445 8.133553806894666e-05 0.17331352949506237 9.685445764537912e-05']
['59906.99170883368 0.3068435736918882 5.257404623731409e-05 0.020018020178894494 1.219536924460286e-05 1.699182326604995e-05 1.0351750923250234e-08 0.13345346785929663 8.130246163068573e-05 0.17339010583259157 9.682004237229172e-05']
['59906.99184911389 0.3068675892136264 5.2576927011314383e-05 0.020013808901383903 1.2198358931454412e-05 1.6988248622676392e-05 1.0354288648267415e-08 0.13342539267589268 8.132239287636275e-05 0.1734421965377337 9.68383438369873e-05']
['59906.9919893941 0.30689273191998173 5.257719823623838e-05 0.020017664883407844 1.219416353917012e-05 1.6991521681874173e-05 1.0350727488692723e-08 0.13345109922271897 8.129442359446747e-05 0.17344163269726276 9.681500442560242e-05']
['59906.992129674305 0.30691186620764055 5.258046703276681e-05 0.02001845353789658 1.2194993047002743e-05 1.6992191112595634e-05 1.0351431596809498e-08 0.13345635691931054 8.129995364668496e-05 0.17345550928833 9.682142312699705e-05']
['59906.99226995451 0.30692163468532885 5.258001621989123e-05 0.020031030293201673 1.2197589902471548e-05 1.7002866594061567e-05 1.0353635876192729e-08 0.1335402019546778 8.1317266016477e-05 0.17338143273065104 9.683571581848564e-05']
['59906.99241023472 0.3068548739166672 5.2577857607902135e-05 0.020015461541103813 1.2195176227793644e-05 1.6989651426839452e-05 1.035158708549404e-08 0.13343641027402542 8.130117485195763e-05 0.1734184636426418 9.682103151147183e-05']
['59906.99255051493 0.3069326443634022 5.2580470947709596e-05 0.020030762640174074 1.2196756324254291e-05 1.7002639403115562e-05 1.0352928313026168e-08 0.1335384176011605 8.131170882836195e-05 0.17339422676224167 9.683129616849734e-05']
['59906.99269079514 0.3068756255748274 5.257599067123393e-05 0.02002884979166257 1.2195918501233412e-05 1.7001015726870275e-05 1.0352217146758386e-08 0.13352566527775048 8.13061233415561e-05 0.17334996029707692 9.682417305556506e-05']
['59906.992831075346 0.30685498307788345 5.2584520858875565e-05 0.020010626743958374 1.2193685265944482e-05 1.6985547523561887e-05 1.0350321517770008e-08 0.13340417829305581 8.129123510629654e-05 0.17345080478482763 9.681630409731978e-05']
['59906.992971355554 0.3068330230057994 5.258047450471418e-05 0.020006172729876752 1.2194918751483004e-05 1.6981766838987535e-05 1.035136853281368e-08 0.133374484865845 8.129945834322004e-05 0.1734585381399544 9.682101128392467e-05']
['59906.99311163576 0.3068752952830942 5.258353896562319e-05 0.02001642022850818 1.2193056550374358e-05 1.6990465185982306e-05 1.0349787847419161e-08 0.1334428015233879 8.128704366916238e-05 0.17343249375970632 9.681225149030222e-05']
['59906.99325191597 0.3069459738140506 5.258296639993911e-05 0.020014066563106742 1.2194872353401401e-05 1.6988467332739514e-05 1.0351329148898815e-08 0.13342711042071162 8.129914902267602e-05 0.17351886339333897 9.682210484816165e-05']
['59906.99339219618 0.3068128516863424 5.2573313586090376e-05 0.02001977888880666 1.2194746314627543e-05 1.6993316105388543e-05 1.0351222163864785e-08 0.1334651925920444 8.129830876418362e-05 0.17334765909429803 9.681615727417573e-05']
['59906.99353247639 0.306884914787487 5.2594338695907216e-05 0.020025156826532498 1.2196678922645401e-05 1.699788104070965e-05 1.035286261249999e-08 0.13350104551021666 8.131119281763601e-05 0.1733838692772703 9.683839393694313e-05']
['59906.993672756595 0.30687130319232236 5.257695129785991e-05 0.0200155501794559 1.2194815663622958e-05 1.6989726665409492e-05 1.035128102912035e-08 0.1334370011963727 8.129877109081972e-05 0.17343430199594967 9.681852089685649e-05']
['59906.9938130368 0.30691609103095363 5.258176570937443e-05 0.020016795189683106 1.2195692498722133e-05 1.6990783462912742e-05 1.0352025309868672e-08 0.13344530126455403 8.130461665814755e-05 0.1734707897663996 9.682604388822187e-05']
['59906.99395331701 0.3069153522103561 5.2578816620076794e-05 0.02003619602910485 1.2197348488051354e-05 1.700725140688129e-05 1.035343095726842e-08 0.13357464019403234 8.131565658700902e-05 0.17334071201632376 9.683371294824983e-05']
['59906.99409359722 0.30687051927495296 5.257691280767821e-05 0.020013252793143543 1.2195564416219838e-05 1.6987776583341207e-05 1.0351916590064064e-08 0.13342168528762363 8.130376277479892e-05 0.17344883398732933 9.682269156415234e-05']
['59906.99423387743 0.30694116223557044 5.2583753037059495e-05 0.020045341868771428 1.2199225480772066e-05 1.7015014636703486e-05 1.0355024198173215e-08 0.1336356124584762 8.132816987181378e-05 0.17330554977709425 9.684690133484427e-05']
['59906.994374157635 0.3068273740280292 5.2584367215863616e-05 0.02000495579018758 1.2193815362556743e-05 1.6980733868496994e-05 1.0350431947204255e-08 0.13336637193458387 8.129210241704496e-05 0.1734610020934453 9.681694888229085e-05']
['59906.99451443785 0.3068421672107816 5.257570847565202e-05 0.020019140809043927 1.2196042387849137e-05 1.6992774486464137e-05 1.0352322304983855e-08 0.13346093872695952 8.130694925232758e-05 0.1733812284838221 9.682471336615111e-05']
['59906.99465471806 0.30687702637084163 5.2577822236816585e-05 0.020020021274004075 1.2195315473218693e-05 1.699352184833415e-05 1.0351705280681769e-08 0.1334668084933605 8.130210315479128e-05 0.17341021787748112 9.68217918061766e-05']
['59906.99479499827 0.3069243672812283 5.2579456631101765e-05 0.0200391722409995 1.2197934541044301e-05 1.7009777693999808e-05 1.0353928414499042e-08 0.13359448160666332 8.131956360696202e-05 0.17332988567456498 9.683734137639598e-05']
['59906.994935278475 0.3068424218009891 5.257449436994362e-05 0.020025469754341916 1.21965470260643e-05 1.6998146662084047e-05 1.035275065520474e-08 0.13350313169561276 8.131031350709533e-05 0.17333929010537633 9.682687922719272e-05']
['59906.99507555868 0.30697423284675246 5.25834473618742e-05 0.020021118198538267 1.2195861796776649e-05 1.6994452946797162e-05 1.0352169014520577e-08 0.13347412132358843 8.130574531184433e-05 0.17350011152316402 9.682790484758767e-05']
['59906.99521583889 0.30689285043876213 5.257978360498162e-05 0.020009769569386236 1.2194643352500074e-05 1.698481993118723e-05 1.0351134766896582e-08 0.13339846379590825 8.129762235000049e-05 0.17349438664285388 9.681909441690722e-05']
['59906.9953561191 0.3068717310719936 5.258656454067535e-05 0.02002558352168935 1.2195840189949522e-05 1.699824323080782e-05 1.0352150674076088e-08 0.13350389014459568 8.130560126633015e-05 0.17336784092739793 9.682947674892229e-05']
['59906.99549639931 0.30683253762347246 5.2576184991935994e-05 0.020031400870822065 1.2197147124651504e-05 1.700318115011535e-05 1.0353260034706054e-08 0.1335426724721471 8.131431416434336e-05 0.17328986515132536 9.683115674370418e-05']
['59906.995636679516 0.3069221595561971 5.258039651904874e-05 0.020028250784619415 1.2197452190093433e-05 1.7000507273900328e-05 1.0353518982295652e-08 0.13352167189746278 8.131634793395623e-05 0.17340048765873434 9.683515136259468e-05']
['59906.995776959724 0.3069272708926951 5.258030044609503e-05 0.020032294700312245 1.2197431275808686e-05 1.7003939856150784e-05 1.0353501229699392e-08 0.13354863133541497 8.131620850539125e-05 0.17337863955728014 9.683498211232285e-05']
['59906.99591723993 0.3069279524198665 5.257920805825806e-05 0.020025040925079184 1.2196695534898266e-05 1.699778266050055e-05 1.0352876713418174e-08 0.13350027283386123 8.131130356598845e-05 0.17342767958600525 9.683027009997398e-05']
['59906.99605752014 0.30695989242011756 5.258126071978629e-05 0.02001679094296802 1.2194382880740175e-05 1.699077985818902e-05 1.0350913671599922e-08 0.13344527295312014 8.129588587160117e-05 0.17351461946699742 9.681843852557499e-05']
['59906.99619780035 0.30693083837954066 5.2581782049633165e-05 0.02001951713957257 1.2195708487765325e-05 1.699309392573811e-05 1.0352038881790055e-08 0.13346344759715045 8.130472325176884e-05 0.1734673907823902 9.682614226830399e-05']
['59906.99633808056 0.30686101005004673 5.2575600840950775e-05 0.02001391154213092 1.219455400415453e-05 1.6988335746848394e-05 1.035105892566538e-08 0.13342607694753947 8.129702669436353e-05 0.17343493310250727 9.681632276187234e-05']
['59906.996478360765 0.30686084424060217 5.258210294514199e-05 0.02002191540143255 1.2220683137318298e-05 1.6995129633630618e-05 1.037323802274122e-08 0.13347943600955037 8.147122091545531e-05 0.1733814082310518 9.696616620032182e-05']
['59906.99661864097 0.3069017160508468 5.258194171663389e-05 0.02002641569786534 1.219538760785253e-05 1.699894960388479e-05 1.0351766510460667e-08 0.13350943798576895 8.13025840523502e-05 0.17339227806507787 9.682443270311968e-05']
['59906.99675892118 0.30682504770566144 5.2574321579199706e-05 0.02000447626227947 1.2194217179963726e-05 1.698032683256672e-05 1.0350773020412477e-08 0.13336317508186313 8.129478119975817e-05 0.1734618726237983 9.681374251535604e-05']
['59906.99689920139 0.30689825393023495 5.258665722665409e-05 0.020006926831061506 1.219486634662669e-05 1.6982406939953642e-05 1.0351324050190082e-08 0.1333795122070767 8.129910897751127e-05 0.17351874172315826 9.682407571885654e-05']
['59906.9970394816 0.3068622933472545 5.257888004618768e-05 0.02002185708991267 1.2196760066243594e-05 1.6995080137275267e-05 1.0352931489325338e-08 0.13347904726608448 8.13117337749573e-05 0.17338324608117003 9.683045324896979e-05']
['59906.997179761805 0.3068748040532284 5.2577591868786513e-05 0.020010667957216066 1.2195456462937297e-05 1.6985582506461527e-05 1.0351824956471855e-08 0.1334044530481071 8.130304308624864e-05 0.17347035100512131 9.682245597899843e-05']
['59906.99732004201 0.30682924570989834 5.257370045337639e-05 0.02001838741097824 1.2195676295216342e-05 1.699213498232403e-05 1.0352011555905782e-08 0.13345591607318827 8.130450863477562e-05 0.17337332963671007 9.682157354486475e-05']
['59906.99746032222 0.30692794254098876 5.258436715378283e-05 0.020031600183919872 1.2197206871346783e-05 1.7003350332327296e-05 1.0353310749276118e-08 0.1335440012261325 8.131471247564523e-05 0.17338394131485627 9.683593410485948e-05']
['59906.99760060243 0.3069145149156344 5.258023398028056e-05 0.02003133646144426 1.219877970441239e-05 1.700312647773744e-05 1.035464581144705e-08 0.1335422430762951 8.132519802941594e-05 0.1733722718393393 9.684249501094428e-05']
['59906.99774088264 0.30689996164835 5.257856827390384e-05 0.02001349847793694 1.2195245460803473e-05 1.698798512707087e-05 1.0351645852297983e-08 0.13342332318624628 8.13016364053565e-05 0.1734766384621037 9.682180500239787e-05']
['59906.997881162846 0.30687090523419025 5.2576437319851996e-05 0.019994774529161763 1.2193587389523612e-05 1.69720917457281e-05 1.0350238437683644e-08 0.13329849686107842 8.129058259682408e-05 0.17357240837311183 9.681136596587926e-05']
['59906.998021443054 0.30696471580270257 5.258159353533897e-05 0.020018190998848193 1.219495871370101e-05 1.6991968262530003e-05 1.0351402453797852e-08 0.13345460665898795 8.129972475800672e-05 0.17351010914371462 9.682184270320026e-05']
['59906.99816172326 0.3068938784873093 5.2584062682617435e-05 0.02001427691549619 1.2195457719510705e-05 1.698864588539323e-05 1.0351826023084491e-08 0.1334285127699746 8.130305146340471e-05 0.1734653657173347 9.68259770178978e-05']
['59906.99830200347 0.3069553234163503 5.2579623423913356e-05 0.020055693567845326 1.2199677416337188e-05 1.7023801431780876e-05 1.0355407812995338e-08 0.13370462378563552 8.133118277558125e-05 0.17325069963071477 9.684718938139374e-05']
['59906.99844228368 0.3068328286865372 5.257469023767264e-05 0.020020728554192055 1.2197339230151518e-05 1.6994122206403844e-05 1.0353423098918972e-08 0.1334715236946137 8.131559486767678e-05 0.1733613049919235 9.683142063540828e-05']
['59906.99858256389 0.30690814629760377 5.2577422707029124e-05 0.020052519868991647 1.2199675218338876e-05 1.7021107512525153e-05 1.0355405947276425e-08 0.13368346579327764 8.133116812225918e-05 0.17322468050432613 9.68459822948005e-05']
['59906.998722844095 0.3069223555591678 5.258800053390999e-05 0.02004692221700973 1.2198583328552492e-05 1.7016356077951126e-05 1.035447912244008e-08 0.1336461481133982 8.132388885701662e-05 0.1732762074457696 9.684561269868092e-05']
['59906.9988631243 0.30688681707649995 5.2579191772214475e-05 0.020007296254485607 1.2194500415186086e-05 1.6982720516295188e-05 1.035101343793619e-08 0.13338197502990407 8.129666943457391e-05 0.1735048420465959 9.681797285924598e-05']
['59906.99900340451 0.30683516518306375 5.257636648499416e-05 0.02001069173635195 1.219535018045856e-05 1.6985602690818958e-05 1.0351734741101962e-08 0.13340461157567965 8.13023345363904e-05 0.1734305536073841 9.682119558150248e-05']
['59906.99914368472 0.3069915050636288 5.2583393148464557e-05 0.0200517967218659 1.2198684087467504e-05 1.702049368618038e-05 1.0354564649263465e-08 0.13367864481243935 8.132456058311669e-05 0.17331286025118947 9.684367500793744e-05']
['59906.99928396493 0.3069485847906406 5.2580995289509346e-05 0.02003225770783415 1.2196398674648458e-05 1.700390845596014e-05 1.0352624730611964e-08 0.13354838471889435 8.13093244976564e-05 0.17340020007174622 9.682957872417183e-05']
['59906.999424245136 0.3069223154994238 5.258260460284252e-05 0.02004937595521339 1.2198952739672226e-05 1.7018438875626676e-05 1.0354792688337355e-08 0.13366250636808927 8.132635159781484e-05 0.1732598091313345 9.684475086978269e-05']
['59906.999564525344 0.30690288189849724 5.25800021290734e-05 0.020039867148786576 1.2198782648601557e-05 1.7010367550049442e-05 1.0354648310552434e-08 0.13359911432524385 8.132521765734373e-05 0.1733037675732534 9.684238561140311e-05']
['59906.99970480555 0.3069191225288205 5.258007347433658e-05 0.02001961369315329 1.2193315987804351e-05 1.6993175882962882e-05 1.0350008064749329e-08 0.1334640912876886 8.1288773252029e-05 0.17345503124113187 9.681182150639673e-05']
['59906.99984508577 0.3069273653693482 5.258127993812305e-05 0.02002795253354995 1.2194353529805916e-05 1.7000254110529724e-05 1.035088875775314e-08 0.13351968355699967 8.129569019870612e-05 0.17340768181234856 9.681828466160338e-05']
['59906.999985365976 0.30691222586776135 5.2580371795118436e-05 0.02001584767898995 1.2197020249218191e-05 1.698997919085702e-05 1.035315233949342e-08 0.13343898452659966 8.131346832812126e-05 0.17347324134116168 9.683271982992766e-05']
['59907.000125646184 0.30693111276739904 5.257873081341087e-05 0.020017610522060008 1.2194811971079822e-05 1.6991475538528992e-05 1.035127789479239e-08 0.1334507368137334 8.129874647386549e-05 0.17348037595366564 9.681946659722402e-05']
['59907.00026592639 0.30690669976468776 5.25787477336003e-05 0.02002810623520325 1.2197348495799376e-05 1.7000384576545105e-05 1.0353430963845147e-08 0.1335207082346883 8.131565663866251e-05 0.17338599152999945 9.683367558763035e-05']
['59907.0004062066 0.30684826681248556 5.257565479530583e-05 0.020015633874123067 1.2194807429605317e-05 1.6989797707649437e-05 1.0351274039869102e-08 0.13343755916082045 8.129871619736878e-05 0.1734107076516651 9.681777074739678e-05']
['59907.00054648681 0.3068296492731216 5.257363958090428e-05 0.020003835474057208 1.2194839487979942e-05 1.6979782914630466e-05 1.0351301251862644e-08 0.1333589031603814 8.129892991986628e-05 0.17347074611274022 9.681685589244342e-05']
['59907.000686767016 0.30695035405607995 5.2582324231474364e-05 0.020020082887957025 1.219464720887806e-05 1.699357414788175e-05 1.0351138040291882e-08 0.13346721925304683 8.129764805918706e-05 0.17348313480303312 9.682049577201792e-05']
['59907.000827047224 0.30687847418809744 5.257585395015655e-05 0.02001773629464131 1.2196180921561305e-05 1.6991582297611764e-05 1.0352439896050929e-08 0.13345157529760873 8.13078728104087e-05 0.1734268988904887 9.68255679019844e-05']
['59907.00096732743 0.3068751919880221 5.257839076932197e-05 0.0200193841159107 1.2195066011083494e-05 1.699298101174699e-05 1.0351493530644803e-08 0.133462560772738 8.130044007388996e-05 0.1734126312152841 9.682070404670529e-05']
['59907.00110760764 0.30694390220913076 5.2580092183833403e-05 0.02002607146002574 1.2197065977418079e-05 1.699865740573134e-05 1.0353191154795024e-08 0.13350714306683828 8.131377318278719e-05 0.17343675914229248 9.683282399724888e-05']
['59907.00124788785 0.30683280171731686 5.257450443458481e-05 0.020022313189101512 1.2195282218884089e-05 1.699546728629097e-05 1.0351677053525868e-08 0.13348208792734342 8.130188145922726e-05 0.17335071378997344 9.681980399356538e-05']
['59907.00138816806 0.30696083358995907 5.2581034582663146e-05 0.020034633072653043 1.2197499250238915e-05 1.700592472824053e-05 1.035355892818779e-08 0.13356422048435362 8.131666166825944e-05 0.17339661310560545 9.683576127987734e-05']
['59907.001528448265 0.30702799949145376 5.258792073428309e-05 0.020029736134160737 1.219697141875647e-05 1.7001768077749503e-05 1.0353110890910186e-08 0.13353157422773823 8.13131427917098e-05 0.17349642526371553 9.683654577596326e-05']
['59907.00166872847 0.3068208503806181 5.258147298298794e-05 0.02000354188485978 1.2194365720180416e-05 1.6979533708379748e-05 1.0350899105264393e-08 0.1333569458990652 8.129577146786945e-05 0.17346390448155294 9.681845774239924e-05']
['59907.00180900868 0.3069108099221891 0.0006659214469258569 0.020034271577236588 1.2197709851818578e-05 1.7005617881400884e-05 1.0353737692360731e-08 0.1335618105149106 8.131806567879053e-05 0.17334899940727852 0.0006708680952926342']
['59907.00194928889 0.3070419022163805 5.261469692078186e-05 0.020143593573039846 1.2238614747819716e-05 1.7098413273511602e-05 1.0388458846468682e-08 0.13429062382026563 8.159076498546477e-05 0.17275127839611487 9.708428947558443e-05']
['59907.0020895691 0.306831217636636 5.257521228690527e-05 0.020009690075284213 1.219385232717958e-05 1.6984752454497716e-05 1.0350463323750622e-08 0.13339793383522808 8.129234884786387e-05 0.17343328380140793 9.681218377981124e-05']
['59907.002229849306 0.30696448037472 5.258387800042019e-05 0.02002529027658248 1.2197234160300854e-05 1.699799431663024e-05 1.0353333912859756e-08 0.13350193517721654 8.131489440200569e-05 0.17346254519750348 9.683582125005401e-05']
['59907.002370129514 0.30688097510002843 5.257559565368031e-05 0.020030029299427623 1.2196189766668642e-05 1.70020169241568e-05 1.0352447404011221e-08 0.13353352866285084 8.130793177779095e-05 0.1733474464371776 9.682547716547125e-05']
['59907.00251040972 0.30692459667931216 5.2580102963423216e-05 0.02002598021215569 1.2196588713414105e-05 1.699857995213366e-05 1.0352786040526266e-08 0.1335065347477046 8.13105914227607e-05 0.17341806193160755 9.683015803541432e-05']
['59907.00265068993 0.3069756709310465 5.2583863761015256e-05 0.020037425742143816 1.219608653305912e-05 1.7008295219727882e-05 1.0352359776601896e-08 0.1335828382809588 8.130724355372746e-05 0.1733928326500877 9.682938904249149e-05']
['59907.00279097014 0.30673336967233017 5.2567393951712316e-05 0.020008539762061718 1.2194326078083218e-05 1.6983776038308575e-05 1.03508654560072e-08 0.13339026508041146 8.129550718722146e-05 0.1733431045919187 9.681059030757996e-05']
['59907.00293125035 0.30682911667241997 5.2574124202053524e-05 0.02000948222209553 1.2194235140973516e-05 1.69845760232315e-05 1.0350788266191095e-08 0.13339654814730356 8.129490093982345e-05 0.1734325685251164 9.681373587683029e-05']
['59907.003071530555 0.3068504971700796 5.257734549177797e-05 0.020011906315737103 1.2194789288553792e-05 1.6986633657821224e-05 1.0351258641266313e-08 0.13341270877158068 8.129859525702528e-05 0.17343778839849894 9.681858731528466e-05']
['59907.00321181076 0.30686386342774374 5.25767303062693e-05 0.02000305036838905 1.2193023867437378e-05 1.6979116496241467e-05 1.0349760105280626e-08 0.13335366912259367 8.128682578291585e-05 0.17351019430515008 9.680837058622715e-05']
['59907.00335209097 0.3068407774413766 5.2576293344357946e-05 0.02001675358376278 1.2195239045690041e-05 1.6990748146710705e-05 1.0351640406980579e-08 0.13344502389175186 8.130159363793361e-05 0.17339575354962475 9.682053372038219e-05']
['59907.00349237118 0.30687772793227575 5.2576602259872107e-05 0.02003973952429856 1.2198140046703446e-05 1.701025921901943e-05 1.03541028531203e-08 0.13359826349532375 8.132093364468964e-05 0.173279464436952 9.683694209358742e-05']
['59907.00363265139 0.30687368879957505 5.257792802246625e-05 0.020031476878158715 1.2196095163659435e-05 1.7003245667146493e-05 1.0352367102482973e-08 0.13354317918772476 8.13073010910629e-05 0.1733305096118503 9.682621404272916e-05']
['59907.003772931595 0.30687632139104615 5.25766664723687e-05 0.02001915518592154 1.2195753993367122e-05 1.6992786689936877e-05 1.0352077508144532e-08 0.13346103457281028 8.130502662244749e-05 0.17341528681823587 9.68236190783199e-05']
['59907.0039132118 0.3069527912811887 5.2579803503082286e-05 0.020035510068089013 1.2197133512822538e-05 1.7006669145086948e-05 1.0353248480626777e-08 0.1335700671205934 8.131422341881692e-05 0.17338272416059528 9.683304532352588e-05']
['59907.00405349201 0.3068471534207227 5.257560808163549e-05 0.020019320948835444 1.219580762203108e-05 1.6992927393868232e-05 1.0352123029568319e-08 0.13346213965890297 8.130538414687387e-05 0.17338501376181975 9.682334458396107e-05']
['59907.00419377222 0.3067945390037644 5.2572488533653185e-05 0.020011442279255873 1.219359822737329e-05 1.698623977142249e-05 1.035024763713617e-08 0.13340961519503916 8.129065484915528e-05 0.17338492380872525 9.680928218112966e-05']
['59907.00433405243 0.30697845578919003 5.258476389666914e-05 0.020027780459461905 1.2196918540682441e-05 1.7000108049507377e-05 1.0353066006606918e-08 0.1335185363964127 8.131279027121627e-05 0.17345991939277733 9.683453544970019e-05']
['59907.004474332636 0.3069132709312353 5.25800055642191e-05 0.0200173071926237 1.2194841666553775e-05 1.6991218064506733e-05 1.0351303101093548e-08 0.13344871461749133 8.129894444369184e-05 0.173464556313744 9.682032510166346e-05']
['59907.004614612844 0.30681997504745395 5.2573594924548935e-05 0.02000749424033365 1.2194540478294353e-05 1.6982888571902538e-05 1.0351047444558677e-08 0.13338329493555767 8.129693652196236e-05 0.17343668011189628 9.681515775510844e-05']
['59907.00475489305 0.306902625870438 5.2579987397453194e-05 0.020016855331384704 1.2195385565002911e-05 1.6990834512774583e-05 1.0351764776436055e-08 0.13344570220923135 8.130257043335275e-05 0.17345692366120663 9.682335995918868e-05']
['59907.00489517326 0.3069658612975114 5.2582398408735784e-05 0.020033034405001298 1.2197191691662127e-05 1.7004567736991803e-05 1.0353297864359597e-08 0.13355356270000865 8.131461127774751e-05 0.17341229859750276 9.683478006205312e-05']
['59907.00503545347 0.30691981780254673 5.257611772859967e-05 0.020045944778524484 1.2198641491870006e-05 1.7015526402396484e-05 1.0354528492997355e-08 0.1336396318568299 8.13242766124667e-05 0.17328018594571684 9.683948637798824e-05']
['59907.005175733684 0.30695343980318535 5.258216021916058e-05 0.020017338615756518 1.2194762094861422e-05 1.6991244737290282e-05 1.0351235558543318e-08 0.13344892410504347 8.129841396574281e-05 0.17350451569814188 9.682104981179846e-05']
['59907.00531601389 0.3069489155224996 5.259002957518663e-05 0.02003708717244077 1.2196935492927707e-05 1.700800783283817e-05 1.0353080396119614e-08 0.13358058114960514 8.131290328618471e-05 0.17336833437289445 9.683748990730519e-05']
['59907.0054562941 0.30688946180552046 5.2577491220505077e-05 0.020027038453041178 1.2197474136297949e-05 1.6999478214895832e-05 1.0353537610812615e-08 0.1335135896869412 8.131649424198633e-05 0.17337587211857927 9.683369671167824e-05']
['59907.00559657431 0.3067616076338319 5.257032938821232e-05 0.020011861187304754 1.2194142025371885e-05 1.698659535161812e-05 1.035070922721361e-08 0.13341240791536502 8.129428016914591e-05 0.1733491997184669 9.68111539039006e-05']
['59907.00573685452 0.306866432099105 5.257799085453685e-05 0.02001785431693151 1.2195681353516785e-05 1.6991682478043125e-05 1.035201584952455e-08 0.13345236211287673 8.130454235677857e-05 0.1734140699862283 9.682393159826221e-05']
['59907.005877134725 0.30691453706597377 5.2578550048980346e-05 0.020029526743419103 1.2196082667406015e-05 1.7001590341367802e-05 1.035235649533363e-08 0.13353017828946068 8.130721778270677e-05 0.1733843587765131 9.68264818570707e-05']
['59907.00601741493 0.30731364836076547 5.269292209161999e-05 0.02044765546534881 1.2672987944102601e-05 1.735650902373479e-05 1.0757166266922268e-08 0.1363177031023254 8.448658629401734e-05 0.17099594525844006 9.957171938944297e-05']
['59907.00615769514 0.30685332007174687 5.2574707972713666e-05 0.02002807749357424 1.2195873811311144e-05 1.7000360179892682e-05 1.0352179212774196e-08 0.13352051662382827 8.130582540874096e-05 0.1733328034479186 9.68232263654377e-05']
['59907.00629797535 0.3069112438791072 5.25794425361282e-05 0.020038806715928913 1.2198260951730616e-05 1.70094674266835e-05 1.0354205480494802e-08 0.1335920447728594 8.13217396782041e-05 0.17331919910624777 9.683916109560017e-05']
['59907.00643825556 0.3069257963499403 5.258724626669459e-05 0.020016432793774755 1.2194595823083832e-05 1.6990475851711833e-05 1.035109442267505e-08 0.1334428852918317 8.129730548722555e-05 0.17348291105810862 9.682288133182805e-05']
['59907.006578535766 0.30708040111335616 5.2608356225439116e-05 0.020017887762758754 1.219495669647275e-05 1.6991710867743027e-05 1.0351400741521325e-08 0.13345258508505836 8.129971130981833e-05 0.1736278160282978 9.683636818779658e-05']
['59907.006718815974 0.3068822752764803 5.25787292144143e-05 0.02002811200787005 1.2196565188731143e-05 1.700038947653687e-05 1.0352766072155183e-08 0.13352074671913366 8.131043459154096e-05 0.17336152855734666 9.682928038185539e-05']
['59907.00685909618 0.30688561983003265 5.257751288424587e-05 0.02003441036105342 1.2196473848696251e-05 1.7005735684763388e-05 1.0352688540325555e-08 0.13356273574035613 8.1309825657975e-05 0.17332288408967653 9.68281085719603e-05']
['59907.00699937639 0.3067550907985166 5.2569037496492935e-05 0.020015562065864308 1.2195588835972633e-05 1.698973675490631e-05 1.0351937318194018e-08 0.13343708043909538 8.130392557315088e-05 0.1733180103594212 9.681855202858664e-05']
['59907.0071396566 0.3068949840564146 5.2578375539977835e-05 0.020021244540300322 1.21944574744024e-05 1.6994560189015564e-05 1.0350976988666943e-08 0.13347496360200214 8.129638316268267e-05 0.17342002045441243 9.681728920888383e-05']
['59907.007279936806 0.3068202382314359 5.258080031519752e-05 0.020026898558989085 1.2222963920465667e-05 1.6999359469136367e-05 1.0375174011605352e-08 0.13351265705992724 8.14864261364378e-05 0.17330758117150866 9.697823573501329e-05']
['59907.007420217014 0.3069602588966473 5.258416297089742e-05 0.020015988287774643 1.2195043050440004e-05 1.6990098543300356e-05 1.0351474041045294e-08 0.1334399219184976 8.130028700293337e-05 0.1735203369781497 9.682371022693375e-05']
['59907.00756049722 0.3069043358663013 5.257914002393725e-05 0.020029420547073993 1.219840111303696e-05 1.7001500199110405e-05 1.0354324453106721e-08 0.13352947031382664 8.132267408691307e-05 0.17337486555247464 9.683978152754725e-05']
['59907.00770077743 0.30688100335611823 5.257729334142843e-05 0.020015561323375328 1.219495574387776e-05 1.698973612466209e-05 1.0351399932933584e-08 0.13343707548916886 8.129970495918506e-05 0.17344392786694937 9.681949081440759e-05']
['59907.00784105764 0.306864944604481 5.2577326705445075e-05 0.02000403951906224 1.2193338053179228e-05 1.6979956113410007e-05 1.0350026794421238e-08 0.13336026346041494 8.12889203545282e-05 0.17350468114406606 9.681045323670341e-05']
['59907.00798133785 0.30683325884587764 5.257384416942909e-05 0.02003367684908338 1.2197186924919606e-05 1.7005113060465528e-05 1.035329381822288e-08 0.13355784566055587 8.131457949946404e-05 0.17327541318532177 9.683010859193576e-05']
['59907.008121618055 0.30682983127912855 5.2574336222842396e-05 0.019999197143115963 1.2193370437770499e-05 1.697584577704649e-05 1.0350054283316067e-08 0.13332798095410642 8.128913625180332e-05 0.17350185032502213 9.680901043723525e-05']
['59907.00826189826 0.30686124554385863 5.257628824522473e-05 0.020022974542455486 1.2196377489932301e-05 1.6996028660453183e-05 1.0352606748466394e-08 0.13348649694970324 8.130918326621534e-05 0.1733747485941554 9.682690415924672e-05']
['59907.00840217847 0.3068316386918512 5.2578600698460846e-05 0.020017057174244263 1.2194721153943393e-05 1.699100584231499e-05 1.0351200806812763e-08 0.13344704782829508 8.129814102628929e-05 0.17338459086355612 9.681888754648345e-05']
['59907.00854245868 0.30691980749081416 5.258595850966033e-05 0.02002007179131995 1.219596161996214e-05 1.699356472876366e-05 1.0352253747072075e-08 0.13346714527546635 8.13064107997476e-05 0.1734526622153478 9.682982737523098e-05']
['59907.00868273889 0.3069150852504365 5.258749208322071e-05 0.020018446354161543 1.2195688318767544e-05 1.699218501485195e-05 1.0352021761813021e-08 0.13345630902774364 8.130458879178363e-05 0.17345877622269285 9.682913033898336e-05']
['59907.008823019096 0.3068311788085081 5.2574926958508183e-05 0.020013625153078952 1.2194785815218855e-05 1.6988092652270964e-05 1.035125569300805e-08 0.133424167687193 8.129857210145904e-05 0.17340701112131507 9.68172545078025e-05']
['59907.008963299304 0.3068505252601831 5.2574159112874116e-05 0.02002330404251551 1.2197334229684287e-05 1.6996308348790794e-05 1.035341885439056e-08 0.13348869361677007 8.131556153122858e-05 0.173361831643413 9.683110426699071e-05']
['59907.00910357951 0.30686461695053424 5.257683295573527e-05 0.02003296758205774 1.2196566910995812e-05 1.7004511015915647e-05 1.0352767534058838e-08 0.13355311721371826 8.131044607330542e-05 0.17331149973681598 9.682826035974828e-05']
['59907.00924385972 0.30681304299582635 5.258321424833754e-05 0.020014506485142643 1.2193897318782276e-05 1.698884075016132e-05 1.0350501513809111e-08 0.13343004323428428 8.129264879188184e-05 0.17338299976154206 9.681678143941172e-05']
['59907.00938413993 0.3068295574898925 5.257490747719052e-05 0.020008270704302604 1.2194289600700488e-05 1.698354765498943e-05 1.035083449304308e-08 0.13338847136201737 8.129526400466993e-05 0.17344108612787512 9.681446609791394e-05']
['59907.00952442014 0.3069116311621249 5.259290766448015e-05 0.020020234559919907 1.2195852796923381e-05 1.6993702891042396e-05 1.0352161375207858e-08 0.13346823039946604 8.130568531282254e-05 0.17344340076265885 9.683299231559594e-05']
['59907.009664700345 0.30686174434889146 5.257419145459593e-05 0.020029492403124245 1.219618737746383e-05 1.700156119242021e-05 1.035244537599119e-08 0.13352994935416165 8.130791584975888e-05 0.1733317949947298 9.682470132634533e-05']
['59907.00980498055 0.307013413028221 5.258733749691031e-05 0.020042776872461927 1.2197448722141404e-05 1.7012837400214582e-05 1.0353516038606543e-08 0.13361851248307952 8.131632481427604e-05 0.17339490054514148 9.683890099704144e-05']
['59907.00994526076 0.30683561937481785 5.2573532591410155e-05 0.020026101145787824 1.2195509404367188e-05 1.6998682603788806e-05 1.035186989455325e-08 0.13350734097191883 8.130339602911459e-05 0.17332827840289902 9.682054810321573e-05']
['59907.01008554097 0.3069527487560069 5.258182215360726e-05 0.020042499042246177 1.2196868359232325e-05 1.7012601570602972e-05 1.0353023411269118e-08 0.13361666028164118 8.13124557282155e-05 0.17333608847436574 9.683265708192969e-05']
['59907.01022582118 0.30701364925457997 5.258496731524067e-05 0.02004012189930792 1.2197169838259674e-05 1.7010583789007988e-05 1.035327931461547e-08 0.13360081266205281 8.131446558839783e-05 0.17341283659252715 9.683605269460163e-05']
['59907.010366101385 0.3068965689118772 5.257950906504439e-05 0.019998854010914877 1.2192654079013244e-05 1.697555451738816e-05 1.0349446219117432e-08 0.13332569340609918 8.128436052675496e-05 0.17357087550577804 9.680780980770387e-05']
['59907.01050638159 0.3068717814426299 5.2583681612732715e-05 0.020030278515903596 1.2195761984545642e-05 1.7002228465671736e-05 1.0352084291267531e-08 0.13353519010602397 8.130507989697094e-05 0.17333659133660592 9.682747331724644e-05']
['59907.01064666181 0.3068824046442616 5.2577074485134343e-05 0.02003339004118122 1.2196464058679775e-05 1.7004869610357013e-05 1.0352680230301475e-08 0.1335559336078748 8.13097603911985e-05 0.1733264710363868 9.682781571578219e-05']
['59907.01078694202 0.3068527047820843 5.2582339076999747e-05 0.020013757351839703 1.2194293948856142e-05 1.698820486606427e-05 1.0350838183872229e-08 0.1334250490122647 8.129529299237427e-05 0.1734276557698196 9.68185263548488e-05']
['59907.010927222225 0.3068222576132772 5.2574957540939024e-05 0.02000267649961411 1.2192551196094445e-05 1.697879914656894e-05 1.0349358889383637e-08 0.13335117666409407 8.128367464062964e-05 0.17347108094918312 9.680476188450277e-05']
['59907.01106750243 0.30683845523020314 5.257418709566722e-05 0.020035700374353184 1.2198091689382465e-05 1.7006830682061053e-05 1.0354061806151401e-08 0.13357133582902123 8.132061126254976e-05 0.17326711940118192 9.683536009580879e-05']
['59907.01120778264 0.3068441763672921 5.2576700380580164e-05 0.020000685314330267 1.2192373359865407e-05 1.6977108976006083e-05 1.0349207937304104e-08 0.13333790209553512 8.128248906576938e-05 0.173506274271757 9.68047129619019e-05']
['59907.01134806285 0.30686789924632685 5.257601101318438e-05 0.020037471288589626 1.2197307126660049e-05 1.7008333880751833e-05 1.0353395848629064e-08 0.13358314192393084 8.131538084440032e-05 0.173284757322396 9.683195803002412e-05']
['59907.01148834306 0.30691430531431657 5.257946477119159e-05 0.020057792987454137 1.2199423067255951e-05 1.7025583474492165e-05 1.035519191478974e-08 0.13371861991636094 8.132948711503968e-05 0.17319568539795563 9.684567925323454e-05']
['59907.011628623266 0.306987133700784 5.259086521540754e-05 0.020034324990675735 1.2196195585700142e-05 1.7005663220136176e-05 1.0352452343358567e-08 0.1335621666045049 8.130797057133428e-05 0.1734249670962791 9.683380185934106e-05']
['59907.011768903474 0.3068978028830449 5.2576934313037974e-05 0.02002105746013278 1.21959929774174e-05 1.699440139043733e-05 1.0352280364106781e-08 0.1334737164008852 8.130661984944933e-05 0.1734240864821597 9.682510239137565e-05']
['59907.01190918368 0.30695432391365507 5.2586506605928575e-05 0.02003731473766292 1.219720199271105e-05 1.700820099619807e-05 1.0353306608161492e-08 0.13358209825108613 8.1314679951407e-05 0.17337222566256894 9.683706858747388e-05']
['59907.01204946389 0.30688813613403065 5.2579937089397574e-05 0.020007225133525867 1.2195078714970239e-05 1.6982660146949588e-05 1.0351504314038787e-08 0.13338150089017245 8.130052476646826e-05 0.1735066352438582 9.68216148988857e-05']
['59907.0121897441 0.3069156529545679 5.2580049026503595e-05 0.020035476977243647 1.219905037149156e-05 1.7006641056705023e-05 1.0354875560799488e-08 0.13356984651495765 8.13270024766104e-05 0.17334580643961026 9.68439099141506e-05']
['59907.01233002431 0.30685897296471176 5.2585968218270064e-05 0.02003281691338972 1.2218449102305146e-05 1.700438312437813e-05 1.0371341714925841e-08 0.13355211275593148 8.145632734870098e-05 0.17330686020878028 9.695574928074992e-05']
['59907.012470304515 0.30688057721219064 5.257727898281072e-05 0.020032087343663456 1.2197862960870284e-05 1.7003763846360715e-05 1.0353867655360257e-08 0.13354724895775638 8.13190864058019e-05 0.17333332825443426 9.683575826682303e-05']
['59907.01261058472 0.30694465525751713 5.258090043111854e-05 0.02002775659033107 1.2196787963526328e-05 1.7000087788759857e-05 1.0352955169274384e-08 0.1335183772688738 8.131191975684219e-05 0.17342627798864332 9.683170650510268e-05']
['59907.01275086493 0.3069460393944631 5.258150860644385e-05 0.02002792437261866 1.2196392069801675e-05 1.7000230206788836e-05 1.0352619124243889e-08 0.13351949581745776 8.13092804653445e-05 0.17342654357700532 9.682982049514282e-05']
['59907.01289114514 0.30691037328267756 5.257927180430902e-05 0.02002036346989198 1.2195203779699626e-05 1.6993812313225163e-05 1.0351610472278192e-08 0.13346908979927985 8.130135853133084e-05 0.1734412834833977 9.682195372182596e-05']
['59907.01303142535 0.3068290783402253 5.257329866679594e-05 0.02002376193867444 1.2195864372953483e-05 1.6996697023122083e-05 1.0352171201247389e-08 0.1334917462578296 8.130576248635656e-05 0.1733373320823957 9.682240828545814e-05']
['59907.013171705556 0.3068952912328936 5.257817743416728e-05 0.02002706096855402 1.2196091565846424e-05 1.6999497326656712e-05 1.035236404856444e-08 0.13351373979036013 8.130727710564283e-05 0.17338155144253348 9.682632933573681e-05']
['59907.013311985764 0.3068623278099426 5.2576917062743384e-05 0.020016381261931795 1.219559662713752e-05 1.6990432110124986e-05 1.0351943931540176e-08 0.13344254174621195 8.130397751425014e-05 0.17341978606373065 9.682287419541051e-05']
['59907.01345226597 0.3068787582323849 5.257686923332907e-05 0.020017317654595905 1.2195832510260678e-05 1.699122694490455e-05 1.0352144155353734e-08 0.1334487843639727 8.130555006840452e-05 0.17342997386841222 9.682416873025257e-05']
['59907.01359254618 0.3068438961443763 5.257487942690234e-05 0.02001900293635228 1.2196137366154995e-05 1.699265745648871e-05 1.0352402925073795e-08 0.1334600195756819 8.13075824410333e-05 0.1733838765686944 9.682479490894233e-05']
['59907.01373282639 0.30690060180106415 5.258642257242793e-05 0.02000050085161796 1.2193088696364631e-05 1.6976952399192858e-05 1.0349815133783175e-08 0.13333667234411975 8.128725797576421e-05 0.1735639294569444 9.681399768723736e-05']
['59907.013873106596 0.30692976556690355 5.258059638892743e-05 0.020032309176508268 1.2196035489169798e-05 1.7003952143927605e-05 1.0352316449202962e-08 0.13354872784338845 8.1306903261132e-05 0.1733810377235151 9.682732896517576e-05']
['59907.014013386804 0.3068542774839307 5.257617694538233e-05 0.020016981535108773 1.2193367378947864e-05 1.6990941637822703e-05 1.0350051686906775e-08 0.13344654356739183 8.128911585965243e-05 0.17340773391653885 9.680999297301982e-05']
['59907.01415366701 0.3069139767585307 5.257989250013959e-05 0.02002598111843159 1.2195345718550766e-05 1.6998580721404536e-05 1.0351730953716996e-08 0.13350654078954394 8.130230479033844e-05 0.17340743596898678 9.68230853647379e-05']
['59907.01429394722 0.306949939987595 5.2581830721563895e-05 0.020039743502611798 1.2197911460862035e-05 1.7010262595916587e-05 1.0353908823431868e-08 0.133598290017412 8.131940973908024e-05 0.173351649970183 9.683850123965994e-05']
['59907.01443422743 0.306883657325655 5.2576278296587644e-05 0.020039577914741695 1.2197891140364575e-05 1.7010122040567025e-05 1.0353891574857911e-08 0.13359718609827798 8.131927426909716e-05 0.173286471227377 9.683537270632503e-05']
['59907.01457450764 0.3068476286616627 5.25770861168802e-05 0.02000653830288559 1.21932530411117e-05 1.6982077146995095e-05 1.0349954633937133e-08 0.13337692201923726 8.128835360741134e-05 0.17347070664242545 9.680984669311991e-05']
['59907.014714787845 0.3069170539951346 5.25809061058754e-05 0.020005303939006767 1.21949970592562e-05 1.6981029386393024e-05 1.0351435002516008e-08 0.1333686929267118 8.129998039504134e-05 0.17354836106842278 9.682168403384126e-05']
['59907.01485506805 0.3068801808857895 5.257658264823851e-05 0.020049229501214193 1.21990352223437e-05 1.701831456161117e-05 1.0354862701803404e-08 0.13366153000809464 8.132690148229134e-05 0.17321865087769486 9.684194312216878e-05']
['59907.01499534826 0.30691389809465264 5.258132776692165e-05 0.020027441428899246 1.2196049116277163e-05 1.6999820271427877e-05 1.0352328016250947e-08 0.13351627619266165 8.130699410851443e-05 0.17339762190199098 9.682780241590969e-05']
['59907.01513562847 0.3070713377167572 5.260759638172968e-05 0.020041146103566495 1.220607740391319e-05 1.7011453160583924e-05 1.0360840291173726e-08 0.1336076406904433 8.137384935942128e-05 0.1734636970263139 9.689820718998244e-05']
['59907.01527590868 0.30693131982508215 5.2580025091789975e-05 0.020043127710129297 1.2198330849797527e-05 1.7013135200475833e-05 1.035426481181673e-08 0.13362085140086197 8.132220566531685e-05 0.17331046842422018 9.68398687159651e-05']
['59907.015416188886 0.30696733899090034 5.2584540874784065e-05 0.020019247983301694 1.2197269943342182e-05 1.6992865458799582e-05 1.035336428644859e-08 0.13346165322201128 8.131513295561455e-05 0.17350568576888906 9.68363815236872e-05']
['59907.015556469094 0.30691074557528575 5.257911816753701e-05 0.020025562250693348 1.2195610537405933e-05 1.699822517542564e-05 1.0351955738942723e-08 0.13350374833795567 8.13040702493729e-05 0.17340699723733008 9.682414733108049e-05']
['59907.0156967493 0.3069338578233897 5.2578930407264955e-05 0.020031155498263363 1.2196202726820394e-05 1.700297287141873e-05 1.03524584049297e-08 0.1335410366550891 8.130801817880264e-05 0.17339282116830063 9.682736050794998e-05']
['59907.01583702951 0.3068987930384389 5.25837548603728e-05 0.02001961274854215 1.2195049847012297e-05 1.6993175081152045e-05 1.0351479810155035e-08 0.133464084990281 8.130033231341531e-05 0.17343470804815792 9.682352663215456e-05']
['59907.015977309726 0.3068777728873171 5.2582506717761405e-05 0.020022279529310665 1.219605931706873e-05 1.699543871497312e-05 1.0352336674951752e-08 0.13348186352873775 8.130706211379153e-05 0.17339590935857935 9.682849974206652e-05']
['59907.016117589934 0.3068768876380998 5.2579935068284364e-05 0.020026193268838983 1.2195857900046419e-05 1.6998760800263286e-05 1.0352165706873226e-08 0.13350795512559324 8.130571933364279e-05 0.17336893251250654 9.682597568909954e-05']
['59907.01625787014 0.30688350245442264 5.2576625748105925e-05 0.020032058964084526 1.219670975798112e-05 1.7003739757025947e-05 1.0352888786345866e-08 0.13354705976056352 8.13113983865408e-05 0.17333644269385912 9.682894754478717e-05']
['59907.01639815035 0.3069102216415509 5.257938265403132e-05 0.02003199183560949 1.2195863817875508e-05 1.7003682776606615e-05 1.035217073008257e-08 0.13354661223739658 8.130575878583673e-05 0.17336360940415432 9.682570883819914e-05']
['59907.01653843056 0.30688356248466103 5.2579466880067606e-05 0.01999920072850489 1.219190092920717e-05 1.6975848820419134e-05 1.034880692570663e-08 0.13332800485669927 8.12793395280478e-05 0.17355555762796177 9.68035710679508e-05']
['59907.01667871077 0.30679036449694486 5.257238258682063e-05 0.020013395642909868 1.2194941613786719e-05 1.6987897837988833e-05 1.0351387938939796e-08 0.13342263761939913 8.129961075857813e-05 0.17336772687754573 9.681674504108963e-05']
['59907.016818990975 0.30687784523613576 5.259002054032117e-05 0.02000930005796994 1.219542709900271e-05 1.6984421397519274e-05 1.0351800031590052e-08 0.1333953337197996 8.130284732668474e-05 0.17348251151633615 9.682904132468528e-05']
['59907.01695927118 0.30694913059295587 5.257876657466109e-05 0.020018560795758665 1.2194850085887229e-05 1.6992282155896628e-05 1.0351310247645743e-08 0.13345707197172446 8.129900057258153e-05 0.1734920586212314 9.681969938299391e-05']
['59907.01709955139 0.30691582971027587 5.259548430514993e-05 0.02003190263669949 1.2195757549784871e-05 1.7003607062220242e-05 1.0352080526925675e-08 0.13354601757799658 8.130505033189914e-05 0.17336981213227928 9.683385863821562e-05']
['59907.0172398316 0.30694400949922335 5.258373590264232e-05 0.019991809656355466 1.2192058370039323e-05 1.6969575083526708e-05 1.0348940565635599e-08 0.13327873104236976 8.128038913359549e-05 0.1736652784568536 9.680677114328079e-05']
['59907.01738011181 0.3068759377759275 5.257617752425049e-05 0.020010675399191734 1.2193373749401065e-05 1.698558882340667e-05 1.0350057094315398e-08 0.13340450266127823 8.128915832934044e-05 0.17347143511464924 9.681002894821424e-05']
['59907.017520392015 0.3069456207445484 5.2583026970326344e-05 0.02001700640942953 1.219527632733777e-05 1.6990962751801924e-05 1.0351672052626033e-08 0.13344670939619685 8.13018421822518e-05 0.17349891134835155 9.6824399133637e-05']
['59907.01766067222 0.30690811332857176 5.2579675940355005e-05 0.020011378835581614 1.2193676709086758e-05 1.6986185918759205e-05 1.0350314254483587e-08 0.1334091922372108 8.129117806057839e-05 0.17349892109136097 9.681362482868518e-05']
['59907.01780095243 0.3069222962214206 5.257966277538206e-05 0.020017090205981383 1.2195424548470062e-05 1.6991033880524282e-05 1.03517978666307e-08 0.1334472680398759 8.130283032313375e-05 0.1734750281815447 9.682340190328563e-05']
['59907.01794123264 0.306863942188341 5.257479033530942e-05 0.020060774883423074 1.2201229820206272e-05 1.702811458640279e-05 1.0356725534325684e-08 0.1337384992228205 8.134153213470848e-05 0.17312544296552052 9.685325719263941e-05']
['59907.01808151285 0.30688331851988077 5.25776871671846e-05 0.020041720597300132 1.2196990295778823e-05 1.7011940806010503e-05 1.0353126914224417e-08 0.13361147064866755 8.131326863852549e-05 0.17327184787121322 9.683109440944753e-05']
['59907.018221793056 0.30687490785271204 5.258439066113996e-05 0.020034304570116127 1.2197183221566462e-05 1.7005645886626833e-05 1.0353290674719099e-08 0.13356203046744086 8.131455481044309e-05 0.17331287738527118 9.68358144759672e-05']
['59907.018362073264 0.3068927004003734 5.2577454169336655e-05 0.020037572423284737 1.2198848551383672e-05 1.7008419726547274e-05 1.0354704250571297e-08 0.1335838161552316 8.132565700922448e-05 0.17330888424514182 9.684137119491193e-05']
['59907.01850235347 0.3068879403647505 5.258901210672331e-05 0.020015632826448887 1.2194978755334882e-05 1.6989796818355973e-05 1.0351419465665046e-08 0.1334375521763259 8.129985836889923e-05 0.17345038818842456 9.682598393594648e-05']
['59907.01864263368 0.3069217648488174 5.2580596791256646e-05 0.020014375372471277 1.2193388382425485e-05 1.6988729458269322e-05 1.0350069515212299e-08 0.1334291691498085 8.128925588283658e-05 0.17349259569900888 9.681251097306583e-05']
['59907.01878291389 0.30689547441067344 5.2576630061635656e-05 0.020031293923878535 1.2197058430457091e-05 1.7003090370730227e-05 1.0353184748735577e-08 0.1335419594925236 8.131372286971394e-05 0.17335351491814985 9.683090186283886e-05']
['59907.0189231941 0.3067894334116631 5.257532487188872e-05 0.02000580616364768 1.219490086217322e-05 1.6981455687908457e-05 1.0351353347895916e-08 0.13337204109098455 8.12993390811548e-05 0.17341739232067854 9.681811462953214e-05']
['59907.019063474305 0.30681489203597057 5.257491636617817e-05 0.020003621350384353 1.2193663042844667e-05 1.697960116081197e-05 1.0350302654217014e-08 0.133357475669229 8.129108695229777e-05 0.17345741636674156 9.681096347416787e-05']
['59907.01920375451 0.3069675921394079 5.258219167670382e-05 0.020026817152089482 1.2196016737731992e-05 1.699929036881384e-05 1.0352300532488204e-08 0.1335121143472632 8.130677825154662e-05 0.17345547779214468 9.68280903001386e-05']
['59907.01934403472 0.30688584473893904 5.25775560596899e-05 0.020032466238257385 1.2198025332747977e-05 1.7004085462080902e-05 1.0354005480890677e-08 0.1335497749217159 8.132016888498651e-05 0.17333606981722313 9.683681773319774e-05']
['59907.01948431493 0.3068911070242213 5.2585992562963215e-05 0.020007089731924502 1.21948908668183e-05 1.6982545214500735e-05 1.0351344863575152e-08 0.13338059821283002 8.129927244545534e-05 0.17351050881139127 9.682385198902384e-05']
['59907.01962459514 0.3068806151761692 5.257686633937969e-05 0.020029877001610623 1.2195641791196587e-05 1.7001887649754676e-05 1.0351982267984178e-08 0.13353251334407082 8.130427860797724e-05 0.1733481018320984 9.682309948577655e-05']
['59907.019764875346 0.3069040764146196 5.257891137661212e-05 0.02003572154684539 1.219592990260732e-05 1.7006848653830613e-05 1.0352226824545134e-08 0.1335714769789693 8.130619935071547e-05 0.1733325994356503 9.682582286976917e-05']
['59907.019905155554 0.3069342584351216 5.258045526483589e-05 0.02004306792190181 1.2197951386781265e-05 1.7013084450652137e-05 1.0353942713604684e-08 0.13362045281267873 8.13196759118751e-05 0.1733138056224429 9.683797791295422e-05']
['59907.02004543576 0.30679849098060386 5.257362997174191e-05 0.02001339775062652 1.2194762722873352e-05 1.6987899627074294e-05 1.03512360916164e-08 0.13342265167084347 8.129841815248901e-05 0.1733758393097604 9.681642093417105e-05']
['59907.02018571597 0.3069015739579611 5.258050318162828e-05 0.019997247997971035 1.2192595042718767e-05 1.6974191291261857e-05 1.0349396107554298e-08 0.13331498665314023 8.128396695145845e-05 0.17358658730482085 9.680801928662218e-05']
['59907.02032599618 0.30683702715845285 5.257666651104478e-05 0.020011097032097608 1.219405277295732e-05 1.698594671653275e-05 1.0350633467411152e-08 0.1334073135473174 8.129368515304881e-05 0.17342971361113543 9.681409560170794e-05']
['59907.020466276386 0.3069717474470063 5.259209964784393e-05 0.020025881449070318 1.2195753297810387e-05 1.699849611942309e-05 1.0352076917737638e-08 0.13350587632713545 8.130502198540259e-05 0.17346587111987083 9.683199649607326e-05']
['59907.020606556594 0.3068472244401976 5.2577422726687376e-05 0.01999164471478699 1.2192003729686193e-05 1.6969435076775005e-05 1.034889418546337e-08 0.13327763143191326 8.128002486457461e-05 0.1735695930082843 9.680303622597098e-05']
['59907.0207468368 0.30696272516864725 5.2582568461923915e-05 0.02003699436580074 1.2195339490449571e-05 1.7007929056115438e-05 1.0351725667140509e-08 0.13357996243867162 8.130226326966382e-05 0.17338276272997563 9.68245037106963e-05']
['59907.02088711701 0.30690855229513025 5.258504846169129e-05 0.02001234306464329 1.2194908810446478e-05 1.6987004381806877e-05 1.03513600945998e-08 0.13341562043095528 8.129939206964319e-05 0.17349293186417497 9.682343968591481e-05']
['59907.02102739722 0.30686272918996427 5.257472520086665e-05 0.02002238383385375 1.2194962423689416e-05 1.6995527251419088e-05 1.0351405602933819e-08 0.13348255889235836 8.129974949126278e-05 0.1733801702976059 9.681813361808172e-05']
['59907.02116767743 0.3069610198899311 5.258389921850079e-05 0.02004262734104022 1.2197492255713768e-05 1.701271047400172e-05 1.0353552991050448e-08 0.13361751560693483 8.131661503809179e-05 0.17334350428299625 9.683727762734072e-05']
['59907.02130795764 0.30686549517150774 5.2575958631639494e-05 0.020020916319052402 1.2196182447217342e-05 1.699428158616738e-05 1.0352441191067995e-08 0.13347277546034936 8.130788298144896e-05 0.17339271971115838 9.682563328458464e-05']
['59907.02144823785 0.30696800286967607 5.258102353811968e-05 0.020036185291466405 1.2198075567454687e-05 1.70072422924907e-05 1.035404812143408e-08 0.13357456860977604 8.132050378303126e-05 0.17339343425990003 9.683898167495513e-05']
['59907.02158851806 0.3068702770165999 5.2578352454479926e-05 0.020026903901750017 1.2195206457308099e-05 1.6999364004212698e-05 1.0351612745102853e-08 0.13351269267833346 8.130137638205398e-05 0.17335758433826645 9.682146946025927e-05']
['59907.02172879827 0.3069119123569445 5.2576704063096384e-05 0.020054916465348176 1.2200285655668106e-05 1.702314180669442e-05 1.0355924102574531e-08 0.13369944310232118 8.133523770445404e-05 0.1732124692546233 9.684900981723281e-05']
['59907.021869078475 0.3071305325876593 5.2618569871085186e-05 0.020031955349747672 1.21972334894967e-05 1.7003651806445223e-05 1.0353333343463506e-08 0.13354636899831782 8.1314889929978e-05 0.1735841635893415 9.685466028851018e-05']
['59907.02200935868 0.3069014961061537 5.257816934639841e-05 0.0200356714247433 1.2197725812572147e-05 1.700680610886898e-05 1.0353751240269136e-08 0.133571142831622 8.131817208381432e-05 0.1733303532745317 9.683547388674972e-05']
['59907.02214963889 0.30696242064698165 5.258154475677851e-05 0.020039988954690377 1.2198641408102062e-05 1.7010470942111776e-05 1.0354528421892916e-08 0.13359992636460252 8.132427605401375e-05 0.17336249428237913 9.684243245973604e-05']
['59907.0222899191 0.3068953949291541 5.257697318088986e-05 0.02003168414825428 1.2195482706894497e-05 1.7003421603467906e-05 1.03518472330346e-08 0.1335445609883619 8.130321804596331e-05 0.17335083394079218 9.682226693015128e-05']
['59907.02243019931 0.3067878306232223 5.257354237553529e-05 0.020002984494196 1.2193956232552533e-05 1.6979060580489756e-05 1.0350551521370458e-08 0.13335322996130666 8.129304155035022e-05 0.17343460066191563 9.681185858364238e-05']
['59907.022570479516 0.3069140207631186 5.258386194229979e-05 0.020021865947616787 1.2196366665480155e-05 1.6995087655928037e-05 1.0352597560386045e-08 0.13347910631744525 8.130911110320104e-05 0.17343491444567333 9.683095623383843e-05']
['59907.022710759724 0.30689565439825617 5.258245399563133e-05 0.02000212235713234 1.2205077461183248e-05 1.6978328775821467e-05 1.0359991513422903e-08 0.13334748238088226 8.1367183074555e-05 0.1735481720173739 9.687896030455134e-05']
['59907.02285103993 0.3068334974153988 5.2573949310760636e-05 0.0200124947851575 1.2194094414573674e-05 1.698713316617917e-05 1.0350668813912916e-08 0.13341663190105 8.12939627638245e-05 0.1734168655143488 9.6812853113502e-05']
['59907.02299132014 0.30691723752545363 5.2587606594532704e-05 0.02002073754184237 1.2195530159176479e-05 1.6994129835358373e-05 1.0351887511782537e-08 0.13347158361228248 8.130353439450986e-05 0.17344565391317115 9.682830718535044e-05']
['59907.02313160035 0.3068652634417002 5.2575924204087084e-05 0.020009673291402068 1.2193643367311796e-05 1.6984738207896076e-05 1.0350285953106005e-08 0.13339782194268046 8.129095578207863e-05 0.17346744149901971 9.68114006606545e-05']
['59907.02327188056 0.30695117444747244 5.2581717945566e-05 0.020029464773073415 1.2196998887234283e-05 1.700153773930465e-05 1.035313420687831e-08 0.13352976515382275 8.131332591489522e-05 0.1734214092936497 9.683333121115388e-05']
['59907.023412160765 0.30691936834915645 5.258202132090111e-05 0.020025048298574925 1.2196034505326959e-05 1.699778891931812e-05 1.0352315614091222e-08 0.1335003219904995 8.130689670217974e-05 0.17341904635865696 9.682809725245366e-05']
['59907.02355244097 0.30694735301157683 5.2581210486044796e-05 0.020048366207949853 1.2199729116106262e-05 1.701758177552926e-05 1.0355451697122297e-08 0.1336557747196657 8.133152744070842e-05 0.17329157829191114 9.684834047115342e-05']
['59907.02369272118 0.3068931250201945 5.257877990450647e-05 0.02003643519968011 1.219757246277589e-05 1.7007454421170863e-05 1.0353621072919288e-08 0.13357623466453408 8.131714975183926e-05 0.17331689035566042 9.68349468942364e-05']
['59907.02383300139 0.30695146489561487 5.258323815850963e-05 0.020053121625464968 1.2202962109248295e-05 1.702161829928391e-05 1.035819594693316e-08 0.13368747750309978 8.135308072832197e-05 0.17326398739251508 9.686754192826105e-05']
['59907.0239732816 0.3069136318331236 5.2578366667055785e-05 0.020029791286284723 1.2196055000334124e-05 1.700181489232633e-05 1.0352333010793618e-08 0.13353194190856485 8.130703333556083e-05 0.17338168992455874 9.682622739322938e-05']
['59907.024113561805 0.30697307022124076 5.2583361313632253e-05 0.020029186865249873 1.2197201572569934e-05 1.70013018438175e-05 1.0353306251534636e-08 0.13352791243499917 8.131467715046623e-05 0.1734451577862416 9.683535824854758e-05']
['59907.02425384201 0.3067893686330536 5.2569888723612475e-05 0.020019339116394634 1.2194849919617587e-05 1.6992942814971425e-05 1.0351310106511689e-08 0.1334622607759642 8.129899946411726e-05 0.1733271078570894 9.681487754616816e-05']
['59907.02439412222 0.30685653775995847 5.2584327320165855e-05 0.020027346356930712 1.219562518691807e-05 1.6999739571834588e-05 1.0351968173834832e-08 0.13351564237953809 8.130416791278714e-05 0.17334089538042038 9.682705820020056e-05']
['59907.02453440243 0.3069056631578667 5.258135242404554e-05 0.020031542884517174 1.220094812354928e-05 1.700330169508369e-05 1.0356486422776815e-08 0.13354361923011449 8.13396541569952e-05 0.17336204392775223 9.685524230066882e-05']
['59907.02467468264 0.30693315127219234 5.2581100136346125e-05 0.020023971628531118 1.2196400584557168e-05 1.6996875013400517e-05 1.0352626351792827e-08 0.13349314419020744 8.130933723038112e-05 0.1734400070819849 9.682964635065181e-05']
['59907.024814962846 0.30694346418840374 5.2583911980500417e-05 0.02004006515526353 1.2204006564144341e-05 1.701053562316716e-05 1.0359082507784053e-08 0.13360043436842356 8.136004376096228e-05 0.17334302981998018 9.687375557889099e-05']
['59907.024955243054 0.30682174539933843 5.257420169612936e-05 0.020015206302828065 1.219528127223737e-05 1.698943477386211e-05 1.0351676249987176e-08 0.13343470868552043 8.130187514824913e-05 0.173387036713818 9.681963430320722e-05']
['59907.02509552326 0.30683222412454414 5.257436925672829e-05 0.020012112260070623 1.2194272113374414e-05 1.698680846880086e-05 1.0350819649339687e-08 0.13341408173380417 8.12951474224961e-05 0.17341814239073997 9.681407592487877e-05']
['59907.02523580347 0.30692697071937125 5.257846559436795e-05 0.020034400903439012 1.219602138796374e-05 1.7005727656890947e-05 1.0352304479727507e-08 0.1335626726895934 8.13068092530916e-05 0.17336429802977785 9.682609294594488e-05']
['59907.02537608368 0.306950720387725 5.258433211459051e-05 0.020057007213397884 1.2201195756938693e-05 1.702491648875773e-05 1.0356696620526148e-08 0.13371338142265254 8.134130504625797e-05 0.17323733896507243 9.685824637358425e-05']
['59907.02551636389 0.30683154754722297 5.257620219402334e-05 0.020003739821273316 1.2194628692957432e-05 1.6979701722025787e-05 1.0351122323490315e-08 0.13335826547515545 8.129752461971622e-05 0.17347328207206753 9.681706743358936e-05']
['59907.025656644095 0.30690148138159673 5.258051093202615e-05 0.0200020692939499 1.2193485194224899e-05 1.69782837343933e-05 1.0350151691619905e-08 0.13334712862633266 8.128990129483266e-05 0.17355435275526407 9.681300626670239e-05']
['59907.0257969243 0.30691131842169084 5.257955238148274e-05 0.02002474799623338 1.2197209677062141e-05 1.6997534014773702e-05 1.0353313130841281e-08 0.1334983199748892 8.131473118041427e-05 0.17341299844680164 9.683333535296676e-05']
['59907.02593720451 0.3069523456801916 5.2513297759056307e-05 0.02001801276043012 1.2182652186718723e-05 1.6991816969061815e-05 1.0340956349256388e-08 0.13345341840286745 8.121768124479149e-05 0.17349892727732413 9.671586316789951e-05']
['59907.02607748472 0.3068686923957772 5.251351109334743e-05 0.020037861406524513 1.2186394208253273e-05 1.7008665023139706e-05 1.0344132675786414e-08 0.13358574271016344 8.124262805502183e-05 0.17328294968561375 9.673692914620426e-05']
['59907.02621776493 0.30689518205569705 5.250740500508409e-05 0.02002983488155114 1.2178519673068681e-05 1.7001851897137772e-05 1.0337448562724127e-08 0.13353223254367427 8.119013115379121e-05 0.17336294951202277 9.668952878744289e-05']
['59907.026358045136 0.3068994818997171 5.250882459402057e-05 0.02000440255439335 1.2175849453496656e-05 1.698026426736981e-05 1.0335182009955975e-08 0.13336268369595566 8.117232968997771e-05 0.17353679820376144 9.66753524304104e-05']
['59907.026498325344 0.3069604599792949 5.2514665129298046e-05 0.020045405273808613 1.218130579651338e-05 1.7015068456570608e-05 1.0339813497754996e-08 0.1336360351587241 8.12087053100892e-05 0.17332442482057078 9.670906819829887e-05']
['59907.02663860556 0.3068883208041709 5.250912989197342e-05 0.020039987832119424 1.2182365756982182e-05 1.701046998924396e-05 1.034071322014482e-08 0.13359991888079617 8.121577171321455e-05 0.17328840192337472 9.671199665493995e-05']
['59907.02677888577 0.30688243165434037 5.251167281862514e-05 0.02002982361816416 1.2179461612284902e-05 1.7001842336477965e-05 1.0338248105563346e-08 0.13353215745442776 8.119641074856602e-05 0.1733502741999126 9.669711940208034e-05']
['59907.026919165975 0.3069030281158457 5.25063725596747e-05 0.02002689658099029 1.2178024756662878e-05 1.6999357790158843e-05 1.0337028464631323e-08 0.1335126438732686 8.118683171108586e-05 0.17339038424257708 9.668619758093467e-05']
['59907.02705944618 0.3068749162443399 5.2512902574691033e-05 0.020035642465383037 1.2179484150044245e-05 1.7006781527400527e-05 1.0338267236207643e-08 0.13357094976922024 8.119656100029497e-05 0.17330396647511964 9.669791339575851e-05']
['59907.02719972639 0.306973507536155 5.251212736675317e-05 0.02003335537928919 1.2178854481013274e-05 1.7004840188429262e-05 1.0337732756534091e-08 0.1335557025285946 8.119236320675516e-05 0.17341780500756038 9.669396756612977e-05']
['59907.0273400066 0.3068427237108392 5.251511314758909e-05 0.020013883132304018 1.2177223290318409e-05 1.6988311631838347e-05 1.0336348158868954e-08 0.13342588754869344 8.118148860212273e-05 0.17341683616214576 9.668645820672442e-05']
['59907.02748028681 0.3068748254316706 5.2506503404878304e-05 0.020026161469456405 1.2176193202379498e-05 1.699873380810902e-05 1.0335473793070036e-08 0.13350774312970937 8.117462134919666e-05 0.17336708230196124 9.667601590359395e-05']
['59907.027620567016 0.3068550940321132 5.250510184468307e-05 0.020018903293320588 1.2177220897829476e-05 1.6992572876856504e-05 1.0336346128061275e-08 0.13345935528880393 8.118147265219651e-05 0.17339573874330927 9.668100755422376e-05']
['59907.027760847224 0.3068203825881267 5.2506217679820026e-05 0.020000629849862964 1.2175676540674034e-05 1.6977061896304017e-05 1.0335035236993606e-08 0.13333753233241977 8.11711769378269e-05 0.17348285025570695 9.667296861332358e-05']
['59907.02790112743 0.30693377668675204 5.251660163120346e-05 0.02002609855367519 1.2178969324759229e-05 1.6998680403535267e-05 1.0337830238933302e-08 0.13350732369116794 8.11931288317282e-05 0.1734264529955841 9.669704037030366e-05']
['59907.02804140764 0.3068837762554262 5.251496934788726e-05 0.020019453561612915 1.2180477701944903e-05 1.699303995908984e-05 1.0339110589254086e-08 0.1334630237440861 8.120318467963269e-05 0.17342075251134006 9.67045976555617e-05']
['59907.02818168785 0.3069159045960609 5.250937190091445e-05 0.020016841856255865 1.2177094401369802e-05 1.699082307472998e-05 1.0336238754531457e-08 0.1334456123750391 8.118062934246535e-05 0.17347029222102178 9.668261848888502e-05']
['59907.02832196806 0.30693346048039505 5.251301884552291e-05 0.020128159229885034 1.2214514493753411e-05 1.708531219614379e-05 1.0368001915458427e-08 0.13418772819923358 8.143009662502275e-05 0.17274573228116147 9.689415763930654e-05']
['59907.028462248265 0.30693417851112265 5.2512223622661426e-05 0.02003162682226869 1.2179257423477108e-05 1.700337294366004e-05 1.0338074784720229e-08 0.1335441788151246 8.119504948984738e-05 0.17338999969599805 9.669627547871307e-05']
['59907.02860252847 0.30687406113852145 5.2512542705392597e-05 0.02002583248927601 1.2177143316044423e-05 1.6998454561058945e-05 1.0336280274596821e-08 0.13350554992850674 8.118095544029615e-05 0.1733685112100147 9.668461443055473e-05']
['59907.02874280868 0.30684468280183014 5.25071092894116e-05 0.01999185918195271 1.2174571137327953e-05 1.6969617122159303e-05 1.0334096941491531e-08 0.13327906121301808 8.116380758218637e-05 0.17356562158881206 9.666726533407463e-05']
['59907.02888308889 0.3068998956565122 5.250880265082402e-05 0.02001815559477284 1.2177632268800523e-05 1.6991938210617483e-05 1.0336695310586536e-08 0.13345437063181895 8.118421512533682e-05 0.17344552502469326 9.668532019567474e-05']
['59907.0290233691 0.30697185653056425 5.2512430601423585e-05 0.020032413066963746 1.2179690470973597e-05 1.7004040328885097e-05 1.033844236685175e-08 0.13354942044642498 8.119793647315732e-05 0.17342243608413926 9.669881206699605e-05']
['59907.029163649306 0.30691942844454706 5.250691580373943e-05 0.02004251460641622 1.218091610963068e-05 1.7012614781880825e-05 1.0339482721255585e-08 0.1336167640427748 8.120610739753787e-05 0.17330266440177225 9.670267879372026e-05']
['59907.029303929514 0.3069026769200265 5.2509067765555755e-05 0.020023792525470926 1.217745666617221e-05 1.6996722986001306e-05 1.0336546254446185e-08 0.1334919501698062 8.118304444114808e-05 0.1734107267502203 9.668448118669899e-05']
['59907.02944420972 0.306959144374113 5.2513093975912904e-05 0.020022335671070195 1.217895814478645e-05 1.699548636957868e-05 1.0337820749077668e-08 0.1334822378071346 8.119305429857634e-05 0.17347690656697837 9.669507280753568e-05']
['59907.02958448993 0.30698320334428186 5.251289647032018e-05 0.020049939385048756 1.2181186754085633e-05 1.7018917129724726e-05 1.033971245140399e-08 0.1336662625669917 8.120791169390422e-05 0.17331694077729015 9.67074413754573e-05']
['59907.02972477014 0.30681071504861085 5.250100658850081e-05 0.020041840514069143 1.2181467543622357e-05 1.7012042594525423e-05 1.0339950792965262e-08 0.13361227009379428 8.120978362414906e-05 0.17319844495481657 9.670255761398927e-05']
['59907.02986505035 0.30698173116457467 5.251873237131615e-05 0.020020827960175534 1.217953630989418e-05 1.6994206584823277e-05 1.0338311510863368e-08 0.13347218640117023 8.119690873262788e-05 0.17350954476340444 9.670137143611064e-05']
['59907.030005330555 0.306902711474917 5.2510258612964584e-05 0.020023561574302164 1.2178414000303343e-05 1.6996526948560658e-05 1.0337358864895041e-08 0.13349041049534777 8.118942666868896e-05 0.17341230097956922 9.669048692808845e-05']
['59907.03014561076 0.30693543274776613 5.251919538177577e-05 0.020043212672537548 1.2181266832991682e-05 1.7013207318807834e-05 1.0339780424490578e-08 0.13362141781691697 8.120844555327788e-05 0.17331401493084916 9.671131015930265e-05']
['59907.03028589097 0.3068759731508529 5.250659986728177e-05 0.02004066878236206 1.2180004325796203e-05 1.7011047997761907e-05 1.0338708775099381e-08 0.13360445854908043 8.120002883864136e-05 0.17327151460177248 9.669740282457964e-05']
['59907.03042617118 0.30672756301579884 5.249937354101636e-05 0.019993134125782682 1.2173851506270564e-05 1.6970699328093727e-05 1.0333486099678271e-08 0.13328756083855123 8.115901004180376e-05 0.17344000217724762 9.665903544503624e-05']
['59907.03056645139 0.30698724040105724 5.252442028869549e-05 0.020028820106430374 1.2178007733747266e-05 1.700099052926259e-05 1.0337014015131773e-08 0.1335254673762025 8.118671822498177e-05 0.17346177302485474 9.669590447793594e-05']
['59907.030706731595 0.306869611219279 5.250728847254955e-05 0.020016594311255125 1.2178728959528996e-05 1.699061295200728e-05 1.0337626210589094e-08 0.13344396207503417 8.119152639685998e-05 0.17342564914424485 9.669063709269655e-05']
['59907.0308470118 0.30691187710007867 5.251015666079796e-05 0.020035642461909066 1.2179011926130856e-05 1.700678152445173e-05 1.0337866400100645e-08 0.13357094974606046 8.119341284087236e-05 0.1733409273540182 9.669377871036937e-05']
['59907.03098729201 0.30691435576053455 5.250949462024228e-05 0.02000905198673957 1.2175618347713874e-05 1.6984210828118996e-05 1.0334985841274872e-08 0.13339367991159715 8.117078898475917e-05 0.1735206758489374 9.667442272742855e-05']
['59907.03112757222 0.3069533213829392 5.2516955611727685e-05 0.020043660455622295 1.2181375407801878e-05 1.7013587408895144e-05 1.0339872585651847e-08 0.13362440303748196 8.120916938534585e-05 0.17332891834545722 9.671070167764253e-05']
['59907.03126785243 0.3069302342524888 5.2510432661010043e-05 0.02002198241426764 1.2177530764166257e-05 1.6995186515891713e-05 1.033660915077699e-08 0.1334798827617843 8.118353842777505e-05 0.17345035149070448 9.668563724721733e-05']
['59907.031408132636 0.3068822958707148 5.252071134402123e-05 0.020015806441712188 1.2177185085249121e-05 1.698994418756851e-05 1.0336315729398936e-08 0.1334387096114146 8.11812339016608e-05 0.1734435862593002 9.668928512445502e-05']
['59907.031548412844 0.30679778763860743 5.2503292899655134e-05 0.020005169945051617 1.2176157221948773e-05 1.6980915648791387e-05 1.033544325193188e-08 0.13336779963367745 8.117438147965848e-05 0.17342998800492998 9.667407084586901e-05']
['59907.03168869305 0.30693946416476936 5.251179594863758e-05 0.020025739873894756 1.2177311862149649e-05 1.6998375946681703e-05 1.0336423340974344e-08 0.1335049324926317 8.118207908099766e-05 0.17343453167213765 9.668515231236236e-05']
['59907.03182897326 0.3068252108823311 5.250482986884429e-05 0.020029945196765767 1.2179135894640758e-05 1.7001945535600204e-05 1.0337971627840053e-08 0.13353296797843844 8.119423929760507e-05 0.17329224290389267 9.669158006089796e-05']
['59907.031969253476 0.3068977467336551 5.250732217686516e-05 0.02002048837019003 1.2177648242649423e-05 1.6993918331890917e-05 1.0336708869610604e-08 0.13346992246793354 8.118432161766281e-05 0.17342782426572156 9.668460559316168e-05']
['59907.032109533684 0.30685937036987876 5.2511172361095326e-05 0.02002929973780497 1.2178235265042037e-05 1.7001397653017945e-05 1.0337207149693218e-08 0.13352866491869983 8.118823510028025e-05 0.17333070545117893 9.668998263230291e-05']
['59907.03224981389 0.30688709365831823 5.2516773907586057e-05 0.020026121554694312 1.2188893969379854e-05 1.6998699927406678e-05 1.034625453893225e-08 0.13350747703129542 8.125929312919903e-05 0.1733796166270228 9.67526964043773e-05']
['59907.0323900941 0.3068767568373283 5.250691168994236e-05 0.020035835100388182 1.2179926323707408e-05 1.700694504107136e-05 1.033864256487003e-08 0.1335722340025879 8.119950882471605e-05 0.1733045228347404 9.669713547251824e-05']
['59907.03253037431 0.3067910513806306 5.2503016366898954e-05 0.019998396084806497 1.2175475090947448e-05 1.697516581763499e-05 1.0334864241154829e-08 0.13332264056537665 8.116983393964966e-05 0.17346841081525396 9.66701022520053e-05']
['59907.03267065452 0.3069105829976625 5.251183979287772e-05 0.02001500320159913 1.217645769148439e-05 1.69892623761846e-05 1.0335698298395037e-08 0.13343335467732753 8.117638460989593e-05 0.17347722832033496 9.668039479008454e-05']
['59907.032810934725 0.3068521725079951 5.250635787615091e-05 0.02001072555906003 1.2176491551225638e-05 1.698563140042525e-05 1.0335727039436059e-08 0.1334048370604002 8.117661034150426e-05 0.1734473354475949 9.667760694160179e-05']
['59907.03295121493 0.3068567398695251 5.250517520276779e-05 0.02003671692757738 1.2181161469254887e-05 1.7007693559237302e-05 1.0339690988973066e-08 0.13357811285051588 8.120774312836593e-05 0.17327862701900923 9.670310732895818e-05']
['59907.03309149514 0.30691917411907654 5.250825181918518e-05 0.020043160593066246 1.2181143138282047e-05 1.7013163112379616e-05 1.0339675429160057e-08 0.13362107062044165 8.120762092188032e-05 0.1732981034986349 9.670467519669759e-05']
['59907.03323177535 0.30682923212298197 5.251135479976901e-05 0.02002039737078907 1.2176697637234572e-05 1.6993841089200347e-05 1.0335901970673518e-08 0.13346931580526045 8.117798424823048e-05 0.17335991631772152 9.668147448975518e-05']
['59907.03337205556 0.3068817365724039 5.250702989421585e-05 0.020022039187644745 1.217689117254182e-05 1.6995234706630923e-05 1.0336066248544512e-08 0.133480261250965 8.117927448361214e-05 0.17340147532143893 9.668020890543068e-05']
['59907.033512335765 0.306865139701176 5.250769100475562e-05 0.020010754580378654 1.2176154248839138e-05 1.6985656034485593e-05 1.033544072827804e-08 0.1334050305358577 8.117436165892758e-05 0.17346010916531832 9.667644286683943e-05']
['59907.03365261597 0.3068820815678678 5.250928541074364e-05 0.020009973094070124 1.2176918540578995e-05 1.6984992688304467e-05 1.0336089479255974e-08 0.13339982062713418 8.11794569371933e-05 0.1734822609407336 9.668158709374064e-05']
['59907.03379289618 0.30685956082826 5.250765336036555e-05 0.020023054648797712 1.21760005100272e-05 1.699609665682832e-05 1.0335310230721428e-08 0.13348703099198475 8.117333673351467e-05 0.17337252983627524 9.667556184406104e-05']
['59907.03393317639 0.3068988585039637 5.250969908622861e-05 0.02001301028669708 1.2176990748804935e-05 1.6987570737476213e-05 1.0336150771501789e-08 0.13342006857798053 8.117993832536624e-05 0.17347878992598317 9.66822159687941e-05']
['59907.0340734566 0.3068947037271895 5.2510094875246165e-05 0.0200208578592174 1.2178156212096545e-05 1.6994231963918248e-05 1.0337140047468999e-08 0.13347238572811604 8.118770808064363e-05 0.17342231799907348 9.66889549389958e-05']
['59907.034213736806 0.30680159956267833 5.25025015127916e-05 0.02002761568210139 1.2178016125103905e-05 1.699996818213972e-05 1.0337021137936512e-08 0.13351743788067594 8.118677416735937e-05 0.1732841616820024 9.668404710603759e-05']
['59907.034354017014 0.3068674975202684 5.2504658319531305e-05 0.020035032141738355 1.217969866627905e-05 1.7006263468600865e-05 1.0338449323243071e-08 0.1335668809449224 8.1197991108527e-05 0.17330061657534598 9.669463741754842e-05']
['59907.03449429722 0.30688436471167146 5.250653527285625e-05 0.020032695123122973 1.2178036420591331e-05 1.700427974558894e-05 1.0337038365281292e-08 0.1335513008208198 8.118690947060888e-05 0.17333306389085165 9.668635123815843e-05']
['59907.03463457743 0.30692323829490914 5.2510508925434615e-05 0.020011257870970068 1.2177111991338516e-05 1.6986083240807913e-05 1.0336253685360629e-08 0.1334083858064671 8.118074660892344e-05 0.17351485248844203 9.66833344873375e-05']
['59907.03477485764 0.3069447335828809 5.252006836793665e-05 0.020018419944022283 1.2177546548265749e-05 1.699216259722949e-05 1.0336622548736756e-08 0.13345613296014855 8.118364365510499e-05 0.17348860062273233 9.669095913523564e-05']
['59907.03491513785 0.3068647833285099 5.250763343113979e-05 0.020013048579654094 1.2177054859610375e-05 1.6987603241547648e-05 1.033620519044361e-08 0.13342032386436062 8.118036573073584e-05 0.1734444594641493 9.668145297167901e-05']
['59907.035055418055 0.3070190439167762 5.252835681560543e-05 0.02001203536963573 1.2177604625807717e-05 1.698674320217265e-05 1.0336671846485487e-08 0.13341356913090488 8.118403083871812e-05 0.17360547478587132 9.669578653162452e-05']
['59907.03519569826 0.3068339460835203 5.250297670981733e-05 0.020034317575991126 1.2180109218284685e-05 1.7005656926356406e-05 1.0338797810608902e-08 0.13356211717327415 8.120072812189791e-05 0.17327182891024617 9.669602272543583e-05']
['59907.03533597847 0.3067625578419836 5.250491613658186e-05 0.020012968150982302 1.217717781423198e-05 1.698753497157068e-05 1.0336309557567901e-08 0.13341978767321536 8.118118542821321e-05 0.17334277016876823 9.668066552335804e-05']
['59907.03547625868 0.3069254631842858 5.251069433427508e-05 0.020037604380936894 1.2179998366146846e-05 1.700844685304493e-05 1.033870371639189e-08 0.13358402920624599 8.119998910764563e-05 0.17334143397803983 9.669959281480682e-05']
['59907.03561653889 0.3067307155273924 5.249730079873458e-05 0.020006454778940908 1.2174904255873382e-05 1.6982006249668895e-05 1.0334379701294947e-08 0.13337636519293938 8.116602837248922e-05 0.173354350334453 9.666380270254498e-05']
['59907.035756819096 0.3067300550725076 5.2497726963403756e-05 0.020030179135947793 1.2179494938052476e-05 1.7002144109345284e-05 1.0338276393353437e-08 0.1335345275729853 8.119663292034985e-05 0.1731955274995223 9.668973334292597e-05']
['59907.035897099304 0.30668439114637525 5.2501509801713415e-05 0.019999303608628175 1.2174509022954708e-05 1.6975936147780022e-05 1.033404421717399e-08 0.13332869072418782 8.116339348636473e-05 0.17335570042218743 9.66638762603791e-05']
['59907.03603737951 0.30665634102466016 5.249507414711441e-05 0.019990276745156285 1.2173606287710007e-05 1.6968273908088465e-05 1.0333277951699336e-08 0.13326851163437523 8.115737525140004e-05 0.17338782939028494 9.665532767213403e-05']
['59907.03617765972 0.3065848040901445 5.248922200004475e-05 0.01999937922884809 1.2174757944693755e-05 1.6976000336216276e-05 1.0334255508508455e-08 0.13332919485898728 8.116505296462504e-05 0.1732556092311572 9.665859635293888e-05']
['59907.03631793993 0.3066499419426458 5.249266794376961e-05 0.020007818811781812 1.217604270856541e-05 1.6983164076704466e-05 1.0335346049953147e-08 0.1333854587452121 8.117361805710273e-05 0.17326448319743368 9.666765982651722e-05']
['59907.03645822014 0.3065721692086534 5.2488191718331785e-05 0.020020611149663758 1.2177065946616439e-05 1.6994022550345072e-05 1.0336214601386646e-08 0.1334707409977584 8.118043964410959e-05 0.17310142821089497 9.667095763812042e-05']
['59907.036598500345 0.30651925469808583 5.248673479152297e-05 0.019993291974286086 1.2179794495119806e-05 1.6970833314064798e-05 1.0338530665289455e-08 0.13328861316190724 8.119862996746538e-05 0.1732306415361786 9.668544273916851e-05']
['59907.03673878055 0.30640538037294346 5.24790296204707e-05 0.019981243201483853 1.2172941072857809e-05 1.6960605998066577e-05 1.0332713299795627e-08 0.13320828800989234 8.115294048571873e-05 0.17319709236305111 9.664289057858756e-05']
['59907.03687906076 0.3063450986651428 5.247708024591961e-05 0.019970745026385274 1.2171484322852849e-05 1.695169487027787e-05 1.0331476771986888e-08 0.13313830017590184 8.1143228819019e-05 0.17320679848924098 9.663367701951717e-05']
['59907.03701934097 0.30636407346219485 5.247631730937857e-05 0.019998709427854814 1.2174734846610856e-05 1.6975431791475113e-05 1.0334235902246752e-08 0.1333247295190321 8.116489897740571e-05 0.17303934394316275 9.665145991844645e-05']
['59907.03715962118 0.3063877855139426 5.2497021164878886e-05 0.019981113611699436 1.2172073214806903e-05 1.6960495998841168e-05 1.0331976639002539e-08 0.13320742407799624 8.114715476537935e-05 0.17318036143594634 9.664780368793783e-05']
['59907.037299901385 0.306300979704087 5.246902766696883e-05 0.02001496419845208 1.2176037925448677e-05 1.698922926928514e-05 1.0335341989917566e-08 0.1334330946563472 8.117358616965785e-05 0.17286788504773978 9.66547978941553e-05']
['59907.0374401816 0.3063938166534522 5.247477559491637e-05 0.02001534927186177 1.2176082257118726e-05 1.6989556129747033e-05 1.0335379619807826e-08 0.1334356618124118 8.117388171412484e-05 0.17295815484104043 9.665816647482799e-05']
['59907.03758046181 0.30627310590033385 5.246808277011893e-05 0.019991373084797592 1.2173015462443604e-05 1.6969204510078983e-05 1.0332776443637194e-08 0.1332758205653173 8.115343641629069e-05 0.17299728533501654 9.663736312495798e-05']
['59907.03772074202 0.30619535408482573 5.246889124282211e-05 0.019976187609895668 1.217083555549437e-05 1.6956314678645173e-05 1.0330926081149457e-08 0.13317458406597113 8.113890370329581e-05 0.1730207700188546 9.662559827718432e-05']
['59907.037861022225 0.30609565919788845 5.2459130023281435e-05 0.019965166329639177 1.2170925757848817e-05 1.6946959525407724e-05 1.033100264728593e-08 0.1331011088642612 8.113950505232545e-05 0.17299455033362726 9.662080315820137e-05']
['59907.03800130243 0.3060936971917676 5.245863641262802e-05 0.019974691599451217 1.2171023140938245e-05 1.6955044825540364e-05 1.033108530861956e-08 0.1331646106630081 8.114015427292163e-05 0.1729290865287595 9.662108035882141e-05']
['59907.03814158264 0.30605103107659437 5.246142796145584e-05 0.019993399596751754 1.217348320165929e-05 1.6970924666850926e-05 1.033317347301455e-08 0.1332893306450117 8.11565546777286e-05 0.17276170043158268 9.66363688831186e-05']
['59907.03828186285 0.30590128642025216 5.244608669410239e-05 0.01995505147409857 1.2168644521407144e-05 1.6938373769365335e-05 1.0329066273653643e-08 0.13303367649399048 8.112429680938096e-05 0.17286760992626168 9.660095000744993e-05']
['59907.03842214306 0.3059650070617471 5.245655568647416e-05 0.019960737955358947 1.217527328295372e-05 1.6943200604572738e-05 1.0334692941209457e-08 0.13307158636905964 8.116848855302481e-05 0.17289342069268748 9.664374665994011e-05']
['59907.038562423266 0.30590920536427557 5.2446561127918286e-05 0.019956326412580484 1.216930779542292e-05 1.6939455970760184e-05 1.032962927812423e-08 0.1330421760838699 8.112871863615281e-05 0.17286702928040568 9.660492100140922e-05']
['59907.038702703474 0.30586011578516054 5.244288336946159e-05 0.019946396545802592 1.2168005435093882e-05 1.6931027238056477e-05 1.0328523800342613e-08 0.1329759769720173 8.112003623395922e-05 0.17288413881314324 9.659563289663673e-05']
['59907.03884298368 0.30588522937513485 5.244636016426535e-05 0.019945981984033023 1.2168390643179186e-05 1.693067534709731e-05 1.0328850775120721e-08 0.13297321322688682 8.112260428786125e-05 0.17291201614824803 9.659967712640019e-05']
['59907.03898326389 0.3058233955494436 5.244058629018271e-05 0.01996982350553656 1.2170613541065652e-05 1.6950912659087283e-05 1.0330737629449358e-08 0.1331321567035771 8.113742360710434e-05 0.1726912388458665 9.660898819497486e-05']
['59907.0391235441 0.3056857907848566 5.243295964912089e-05 0.019932404824039303 1.2165619016860297e-05 1.6919150695757842e-05 1.0326498145632429e-08 0.13288269882692869 8.110412677906865e-05 0.1728030919579279 9.657688459544333e-05']
['59907.03926382431 0.3056309027690344 5.2449229192637015e-05 0.019930045762790668 1.2179238794427321e-05 1.69171482623777e-05 1.033805897189165e-08 0.1328669717519378 8.119492529618215e-05 0.17276393101709658 9.666197565099923e-05']
['59907.039404104515 0.3057040720390676 5.24336262884536e-05 0.019931059498678405 1.2165605790973516e-05 1.6918008748124488e-05 1.0326486919151053e-08 0.13287372999118938 8.110403860649012e-05 0.1728303420478782 9.657717247900899e-05']
['59907.03954438472 0.3055527833422944 5.242312579284804e-05 0.019945742813428636 1.2168945391499564e-05 1.6930472332783012e-05 1.0329321660119974e-08 0.1329716187561909 8.11263026099971e-05 0.1725811645861035 9.659017078906938e-05']
['59907.03968466493 0.305633377346706 5.243251207122706e-05 0.019950305775008486 1.2167850784756656e-05 1.693434549486606e-05 1.0328392529059306e-08 0.13300203850005657 8.111900523171105e-05 0.1726313388466494 9.658913671775794e-05']
['59907.03982494514 0.3055633554611463 5.242791829181077e-05 0.019944603608263875 1.2166724227115258e-05 1.692950534540612e-05 1.032743627723367e-08 0.1329640240550925 8.111149484743506e-05 0.17259933140605382 9.658033553885733e-05']
['59907.03996522535 0.30544312082296315 5.2416449938310054e-05 0.019926121320616223 1.2164156698383236e-05 1.6913817092399345e-05 1.0325256891157769e-08 0.13284080880410815 8.109437798922158e-05 0.172602312018855 9.65597347013449e-05']
['59907.040105505555 0.3054287842740501 5.241591060717795e-05 0.019945897078296124 1.2167871984580439e-05 1.6930603276869448e-05 1.0328410524028626e-08 0.13297264718864085 8.11191465638696e-05 0.17245613708540927 9.65802444811061e-05']
['59907.04024578576 0.3053494518313987 5.241261932411748e-05 0.019929436842015074 1.216519487096303e-05 1.6916631394370302e-05 1.0326138119413003e-08 0.1328629122801005 8.110129913975353e-05 0.17248653955129822 9.656346817803635e-05']
['59907.04038606597 0.30540873353522413 5.241454535894756e-05 0.01993853897335028 1.2167707248633706e-05 1.6924357523408542e-05 1.032827069181408e-08 0.13292359315566857 8.111804832422471e-05 0.17248514037955556 9.657858110945939e-05']
['59907.04052634618 0.305307491016886 5.2409084868624124e-05 0.01991342519340967 1.216399287832804e-05 1.6903040284916432e-05 1.0325117836376104e-08 0.13275616795606446 8.109328585552028e-05 0.17255132306082152 9.655481959804892e-05']
['59907.04066662639 0.3054023807227373 5.241402537365576e-05 0.019936822338626002 1.2165312385620187e-05 1.6922900398598662e-05 1.0326237868952056e-08 0.13291214892417336 8.110208257080125e-05 0.17249023179856393 9.656488933971444e-05']
['59907.040806906596 0.3053372568846039 5.2410387528895334e-05 0.01992158326220743 1.2163238013552911e-05 1.690996506878442e-05 1.0324477087254356e-08 0.13281055508138287 8.108825342368608e-05 0.17252670180322102 9.655130016852661e-05']
['59907.040947186804 0.30541747142231657 5.2434833804008395e-05 0.019925329221907213 1.2165090565050447e-05 1.6913144738132916e-05 1.032604958180457e-08 0.1328355281460481 8.110060376700298e-05 0.17258194327626847 9.657494357972155e-05']
['59907.04108746701 0.3052792020557639 5.2407188175406404e-05 0.019909444248835343 1.2162465086635267e-05 1.689966115421148e-05 1.0323821006509866e-08 0.13272962832556898 8.108310057756845e-05 0.17254957373019494 9.654523588310579e-05']
['59907.04122774722 0.30527729059953884 5.240584291502389e-05 0.01992596506761942 1.2164260274709043e-05 1.6913684460736338e-05 1.0325344809473712e-08 0.13283976711746281 8.109506849806029e-05 0.17243752348207603 9.65545571495165e-05']
['59907.04136802743 0.30521451766811125 5.240753109954013e-05 0.019917103281624493 1.2163770545851077e-05 1.690616234315919e-05 1.0324929114708273e-08 0.13278068854416328 8.109180363900719e-05 0.17243382912394797 9.655273136155478e-05']
['59907.04150830764 0.30514067571236164 5.239965121805634e-05 0.019904370493335877 1.216163080872975e-05 1.689535441678332e-05 1.0323112849429465e-08 0.13269580328890584 8.107753872486501e-05 0.1724448724234558 9.653647359136306e-05']
['59907.041648587845 0.3052128934715795 5.2402259467686104e-05 0.019919664433202415 1.2165699467495903e-05 1.690833631613857e-05 1.0326566434252864e-08 0.13279776288801612 8.110466311663936e-05 0.17241513058356336 9.656067096174435e-05']
['59907.04178886805 0.3052612208289814 5.2405131695343186e-05 0.01992235202592913 1.2165585772605419e-05 1.6910617615698438e-05 1.0326469927032464e-08 0.13281568017286088 8.110390515070279e-05 0.1724455406561205 9.656159308286322e-05']
['59907.04192914826 0.3051682888295766 5.2399054417269455e-05 0.019914887473817453 1.2162893906152524e-05 1.6904281507076885e-05 1.032418499982115e-08 0.13276591649211636 8.108595937435016e-05 0.17240237233746022 9.654322198623128e-05']
['59907.04206942847 0.30514201188700674 5.239929001548233e-05 0.019913979897129043 1.2163584827576068e-05 1.6903511132057178e-05 1.0324771472140323e-08 0.1327598659808603 8.109056551717379e-05 0.17238214590614645 9.654721855145118e-05']
['59907.04220970868 0.30516380441675345 5.240036970279417e-05 0.019917014434476837 1.2163270642527307e-05 1.690608692735797e-05 1.0324504783588026e-08 0.13278009622984557 8.108847095018204e-05 0.17238370818690787 9.654604531532106e-05']
['59907.042349988886 0.30516450791041566 5.2400208725695764e-05 0.01992145556816677 1.2164217397679437e-05 1.6909856678716288e-05 1.0325308414320608e-08 0.13280970378777848 8.109478265119625e-05 0.17235480412263718 9.655125917222023e-05']
['59907.042490269094 0.30520120563548825 5.240315159229682e-05 0.019907607649468 1.2163419977473398e-05 1.689810220024992e-05 1.0324631543027209e-08 0.1327173843297867 8.108946651648932e-05 0.17248382130570156 9.65483913731041e-05']
['59907.0426305493 0.3051719725549892 5.239843129881336e-05 0.019908339119212748 1.2164687109642111e-05 1.6898723091053112e-05 1.0325707118217616e-08 0.13272226079475163 8.109791406428074e-05 0.17244971176023755 9.655292470015566e-05']
['59907.04277082952 0.30508204842918196 5.239653357807326e-05 0.019887259972386308 1.216062134031663e-05 1.688083055551398e-05 1.0322255986027633e-08 0.13258173314924207 8.107080893544419e-05 0.1725003152799399 9.652912924317435e-05']
['59907.042911109726 0.30513836231494434 5.2401087595969786e-05 0.019917397323564026 1.2167132994478183e-05 1.690641193370934e-05 1.032778324974772e-08 0.13278264882376017 8.111421996318789e-05 0.17235571349118417 9.656806232640752e-05']
['59907.043051389934 0.30512921062083215 5.239741884680982e-05 0.019901363353452023 1.2160887297431139e-05 1.6892801877172204e-05 1.0322481737437898e-08 0.13267575568968015 8.107258198287426e-05 0.172453454931152 9.653109888102326e-05']
['59907.04319167014 0.30512144779511524 5.2397474972959645e-05 0.019906127995807498 1.2163129819222526e-05 1.6896846231214546e-05 1.032438524905438e-08 0.13270751997205 8.108753212815017e-05 0.17241392782306525 9.65436857084694e-05']
['59907.04333195035 0.3051805678996054 5.240124029575521e-05 0.019915226234213924 1.2165045148224287e-05 1.6904569055832203e-05 1.0326011030805195e-08 0.13276817489475948 8.110030098816192e-05 0.17241239300484593 9.655645397850906e-05']
['59907.04347223056 0.30520588957442996 5.2400399669682725e-05 0.019940911360661097 1.2165849392227887e-05 1.692637126830158e-05 1.032669369431786e-08 0.132939409071074 8.110566261485257e-05 0.17226648050335597 9.656050120901807e-05']
['59907.043612510766 0.30508312758952927 5.239590344501758e-05 0.01989673407994754 1.216128103139529e-05 1.6888872427779337e-05 1.032281594920674e-08 0.13264489386631695 8.10752068759686e-05 0.17243823372321232 9.653248089529614e-05']
['59907.043752790974 0.30509838448991017 5.239641614450391e-05 0.019899065578968107 1.216228284497559e-05 1.6890851465613666e-05 1.0323666314984666e-08 0.1326604371931207 8.108188563317059e-05 0.17243794729678946 9.653836855167269e-05']
['59907.04389307118 0.30515503054757886 5.2411010808624676e-05 0.01989829961683113 1.2161247190411717e-05 1.689020129675862e-05 1.0322787224087729e-08 0.13265533077887418 8.107498126941146e-05 0.1724996997687047 9.654049223935618e-05']
['59907.04403335139 0.3051771395058145 5.2400876769799056e-05 0.019918676267524117 1.2162524302020094e-05 1.6907497535059666e-05 1.0323871270089611e-08 0.13279117511682745 8.108349534680063e-05 0.17238596438898704 9.654214159577312e-05']
['59907.0441736316 0.3051797241915618 5.240103924979469e-05 0.019924390413960734 1.2165632241510145e-05 1.6912347853198005e-05 1.0326509371063863e-08 0.1328292694264049 8.110421494340097e-05 0.1723504547651569 9.655963233175604e-05']
['59907.04431391181 0.30512138321998095 5.239857266047329e-05 0.019907457784956305 1.2162890690402655e-05 1.689797499130149e-05 1.0324182270207883e-08 0.13271638523304205 8.10859379360177e-05 0.1724049979869389 9.654294250652718e-05']
['59907.044454192015 0.30511707115390746 5.239983550916281e-05 0.019912875099650916 1.2164028151113967e-05 1.6902573350831793e-05 1.03251477768467e-08 0.13275250066433944 8.109352100742646e-05 0.17236457048956802 9.654999694857186e-05']
['59907.04459447222 0.3050898269322419 5.2396041904288556e-05 0.01991626400626502 1.2164181937289808e-05 1.690544994410812e-05 1.0325278314607043e-08 0.13277509337510013 8.109454624859872e-05 0.17231473355714177 9.654879925976334e-05']
['59907.04473475243 0.3050327441889472 5.239278779761416e-05 0.019883249491545695 1.215971112361808e-05 1.687742635364753e-05 1.0321483370097719e-08 0.13255499661030465 8.106474082412054e-05 0.17247774757864257 9.652199965856314e-05']
['59907.04487503264 0.3050833109755474 5.239711696561282e-05 0.019890705100613693 1.2159765679177435e-05 1.6883754871177838e-05 1.0321529678294756e-08 0.13260470067075794 8.106510452784958e-05 0.17247861030478948 9.652465508055074e-05']
['59907.04501531285 0.3050839960393903 5.2396596625901865e-05 0.019914684279367517 1.2163601042865208e-05 1.6904109030270932e-05 1.0324785236105232e-08 0.13276456186245011 8.109067361910139e-05 0.17231943417694018 9.654584758536794e-05']
['59907.045155593056 0.3051972317269298 5.240066704168395e-05 0.019917019241606743 1.2163643798149033e-05 1.6906091007776565e-05 1.0324821527917307e-08 0.13278012827737828 8.109095865432689e-05 0.17241710344955152 9.654829611076094e-05']
['59907.045295873264 0.3050902405001156 5.239587973611912e-05 0.01991394836422932 1.2164222403797992e-05 1.6903484366100587e-05 1.0325312663646014e-08 0.13275965576152882 8.109481602531994e-05 0.17233058473858676 9.654893784761356e-05']
['59907.04543615347 0.30513823381015426 5.239784296531622e-05 0.019911940735713108 1.2164402200539765e-05 1.6901780238088598e-05 1.0325465279860443e-08 0.13274627157142072 8.109601467026511e-05 0.17239196223873354 9.655101005591703e-05']
['59907.04557643368 0.3051528627458857 5.239898224715708e-05 0.01991096696778733 1.2161904864436922e-05 1.6900953678201603e-05 1.0323345475138685e-08 0.13273977978524887 8.107936576291281e-05 0.17241308296063684 9.653764495290985e-05']
['59907.04571671389 0.3051804879362575 5.239959802011538e-05 0.019924832548917852 1.2165063101859175e-05 1.691272314900568e-05 1.0326026270323801e-08 0.1328322169927857 8.110042067906117e-05 0.17234827094347183 9.655566325695439e-05']
['59907.0458569941 0.3052275929717492 5.2404323620777096e-05 0.01989896356614537 1.2163309962741923e-05 1.6890764874440347e-05 1.0324538159622796e-08 0.1326597571076358 8.108873308494615e-05 0.17256783586411337 9.654841152226574e-05']
['59907.045997274305 0.3051022148166588 5.2397602280630174e-05 0.019899271317764866 1.216172757295038e-05 1.689102610212828e-05 1.0323194985450945e-08 0.13266180878509912 8.10781838196692e-05 0.17244040603155966 9.653590324980219e-05']
['59907.04613755451 0.3050952805835479 5.240764094879506e-05 0.019894531843204503 1.2160492067260697e-05 1.6887003111173933e-05 1.0322146255649712e-08 0.13263021228803 8.106994711507131e-05 0.1724650682955179 9.653443507401014e-05']
['59907.04627783472 0.3051804485964292 5.240131828906749e-05 0.01990532569040148 1.2162741659611209e-05 1.6896165213234612e-05 1.0324055768943183e-08 0.1327021712693432 8.108494439740807e-05 0.17247827732708598 9.654359826711928e-05']
['59907.04641811493 0.3050898006107935 5.2396273594650954e-05 0.019903882159734588 1.2163051971422803e-05 1.689493990634853e-05 1.0324319169789663e-08 0.13269254773156391 8.108701314281869e-05 0.17239725287922958 9.654259778475597e-05']
['59907.04655839514 0.305127194180033 5.239709453988267e-05 0.01990426027863474 1.2162238546166842e-05 1.689526086363939e-05 1.0323628712987944e-08 0.13269506852423163 8.108159030777894e-05 0.17243212565580135 9.653848871336195e-05']
['59907.046698675345 0.3051131359457837 5.2397006401725395e-05 0.019900744562663327 1.2162273870663095e-05 1.689227663123748e-05 1.032365869735163e-08 0.1326716304177555 8.108182580442063e-05 0.1724415055280282 9.653863866680979e-05']
['59907.04683895555 0.3051357623690024 0.0006662609038782585 0.019911068799595463 1.2162172160865326e-05 1.6901040115724954e-05 1.0323572363393893e-08 0.13274045866396975 8.108114773910218e-05 0.17239530370503267 0.0006711763885562156']
['59907.04697923576 0.30519683086440286 5.2401744336536385e-05 0.01990591849858311 1.2161601331495419e-05 1.6896668404447474e-05 1.0323087828375851e-08 0.1327061233238874 8.107734220996946e-05 0.17249070754051546 9.653744470071817e-05']
['59907.04711951597 0.30499410321994314 5.2389510919701555e-05 0.019897507200778732 1.2162326695442888e-05 1.6889528673122756e-05 1.0323703536417346e-08 0.13265004800519153 8.108217796961926e-05 0.1723440552147516 9.653486644058995e-05']
['59907.04725979618 0.305103175005481 5.239950014506711e-05 0.019908427732197323 1.2173872417466558e-05 1.6898798308090538e-05 1.0333503849652718e-08 0.13272285154798216 8.115914944977707e-05 0.17238032345749885 9.660494373925249e-05']
['59907.047400076386 0.3055596053278743 5.2551169002441096e-05 0.020352879592763343 1.2790639246348846e-05 1.7276060764493055e-05 1.0857031793928606e-08 0.13568586395175564 8.52709283089923e-05 0.16987374137611866 0.00010016364898604897']
['59907.047540356594 0.305169301962786 5.239796982339574e-05 0.01991069425342322 1.2161722662584507e-05 1.6900722191059736e-05 1.032319081740294e-08 0.13273796168948815 8.107815108389672e-05 0.17243134027329787 9.653607525063711e-05']
['59907.0476806368 0.3051092108170759 5.239762348566219e-05 0.019907794173802694 1.2161555207321542e-05 1.689826052702258e-05 1.0323048676961086e-08 0.1327186278253513 8.107703471547695e-05 0.17239058299172463 9.653494965658744e-05']
['59907.04782091701 0.3051295144384861 5.239729116583049e-05 0.019912507035713317 1.2163427591437159e-05 1.6902260928458234e-05 1.0324638005960378e-08 0.13275004690475548 8.108951727624774e-05 0.17237946753373065 9.654525329404702e-05']
['59907.04796119722 0.30506566188347933 5.239359944696998e-05 0.01990481008432845 1.2162285863923798e-05 1.6895727553206822e-05 1.0323668877547495e-08 0.132698733895523 8.108190575949199e-05 0.17236692798795633 9.653685671597493e-05']
['59907.048101477434 0.3051961840450406 5.240183359784994e-05 0.019935026721096177 1.2165244194718401e-05 1.69213762311012e-05 1.0326179986716893e-08 0.1329001781406412 8.110162796478935e-05 0.17229600590439942 9.655789052664654e-05']
['59907.04824175764 0.30514027450260095 5.2400781890621476e-05 0.01991084793376526 1.216250547491589e-05 1.6900852638985556e-05 1.032385528914722e-08 0.13273898622510175 8.10833698327726e-05 0.1724012882774992 9.654198468120831e-05']
['59907.04838203785 0.3051059825208201 5.2396591055037193e-05 0.019886810746376053 1.2158573686978068e-05 1.6880449240633457e-05 1.0320517883891257e-08 0.1325787383091737 8.105715791318713e-05 0.17252724421164642 9.65176958031643e-05']
['59907.04852231806 0.30519103910505285 5.2408779060794456e-05 0.019922266886839436 1.2164529729884235e-05 1.6910545347394568e-05 1.0325573530130104e-08 0.13281511257892958 8.109686486589491e-05 0.17237592652612327 9.655765952901089e-05']
['59907.04866259827 0.30508518379053173 5.2395115023780345e-05 0.019911256284653338 1.2162862648393006e-05 1.6901199257984776e-05 1.0324158467410817e-08 0.1327417085643556 8.108575098928671e-05 0.17234347522617613 9.654090890317837e-05']
['59907.048802878475 0.3050700145502858 5.239285149636013e-05 0.019898466859189997 1.2160014280812988e-05 1.6890343256481865e-05 1.0321740697916937e-08 0.13265644572793334 8.106676187208659e-05 0.17241356882235248 9.652373163292662e-05']
['59907.04894315868 0.30508070213410765 5.239553102245869e-05 0.01989972020759915 1.216241788929622e-05 1.6891407131653773e-05 1.0323780944164213e-08 0.13266480138399434 8.108278592864148e-05 0.17241590075011332 9.653864430928856e-05']
['59907.04908343889 0.30508982575337307 5.239433844278466e-05 0.019932821320168714 1.2165617793229927e-05 1.6919504228652638e-05 1.0326497106982712e-08 0.13288547546779142 8.110411862153285e-05 0.17220435028558165 9.655591519028098e-05']
['59907.0492237191 0.30517392180115865 5.240009238106287e-05 0.019933754579876988 1.2165981214555737e-05 1.6920296404096695e-05 1.0326805588584993e-08 0.13289169719917993 8.110654143037158e-05 0.17228222460197873 9.656107261386705e-05']
['59907.04936399931 0.3051810342773781 5.240474735456302e-05 0.019921624131006288 1.2162839634991905e-05 1.6909999759298318e-05 1.0324138933029257e-08 0.13281082754004192 8.10855975666127e-05 0.17237020673733616 9.654600808956447e-05']
['59907.049504279516 0.3050715573696273 5.239283520142315e-05 0.019904250325879197 1.2161707141490249e-05 1.6895252415478096e-05 1.0323177642688948e-08 0.132695002172528 8.1078047609935e-05 0.17237655519709932 9.653320146292866e-05']
['59907.049644559724 0.30502103217292326 5.2393142534642913e-05 0.019881214574855432 1.2158890532115168e-05 1.6875699062714007e-05 1.0320786830396666e-08 0.13254143049903622 8.105927021410113e-05 0.17247960167388704 9.651759773377118e-05']
['59907.04978483993 0.3050893292511324 5.2401405412601556e-05 0.019905625603033376 1.2161504605324907e-05 1.689641978698321e-05 1.0323005724652314e-08 0.13270417068688917 8.107669736883272e-05 0.17238515856424325 9.653671915625222e-05']
['59907.04992512014 0.3050259051755304 5.23906163958266e-05 0.019896729962610826 1.2161205626336743e-05 1.6888868932875385e-05 1.032275194340513e-08 0.1326448664174055 8.107470417557828e-05 0.1723810387581249 9.652918907507814e-05']
['59907.05006540035 0.3051299184720836 5.240470428575848e-05 0.01991112626646131 1.2162937672263768e-05 1.690108889511569e-05 1.0324222149650186e-08 0.1327408417764087 8.108625114842511e-05 0.17238907669567488 9.654653363318264e-05']
['59907.050205680556 0.3050636244681298 5.239255926307637e-05 0.019886752694882756 1.2159794981211001e-05 1.688039996499553e-05 1.0321554550633342e-08 0.13257835129921838 8.106529987474001e-05 0.1724852731689114 9.652234513270227e-05']
['59907.050345960764 0.3051278107487074 5.242301542252446e-05 0.019904467068554064 1.2162322257100199e-05 1.6895436392374544e-05 1.0323699769035063e-08 0.13269644712369377 8.1082148380668e-05 0.1724313636250136 9.655302860094499e-05']
['59907.05048624097 0.30512707613765766 5.239704601482783e-05 0.019902699798403898 1.2160857535275578e-05 1.6893936286880264e-05 1.0322456474535633e-08 0.13268466532269266 8.107238356850385e-05 0.172442410814965 9.653072986649691e-05']
['59907.05062652118 0.30513415632698426 5.239734395340351e-05 0.019893302424312947 1.2160238022744669e-05 1.688595954800742e-05 1.0321930615967093e-08 0.13262201616208633 8.106825348496447e-05 0.17251214016489794 9.652742292464731e-05']
['59907.05076680139 0.30510052559833023 5.240546088632457e-05 0.019882056009215512 1.2160409163829007e-05 1.6876413294381712e-05 1.0322075885031297e-08 0.13254704006143678 8.106939442552671e-05 0.17255348553689345 9.653278740008348e-05']
['59907.0509070816 0.30503390485756693 5.2402727269094845e-05 0.01992090193157435 1.216739133344307e-05 1.6909386737381032e-05 1.0328002534671746e-08 0.13280601287716232 8.11159422229538e-05 0.1722278919804046 9.657039871491013e-05']
['59907.051047361805 0.30525831250413255 5.242116786034223e-05 0.019911055749986663 1.216322040525115e-05 1.6901029038872977e-05 1.0324462140863611e-08 0.13274037166657776 8.108813603500767e-05 0.17251794083755478 9.65570538359269e-05']
['59907.05118764201 0.3051581881014335 5.2399931888059114e-05 0.019933580135200843 1.217209104589033e-05 1.692014833085667e-05 1.0331991774496237e-08 0.1328905342346723 8.114727363926888e-05 0.17226765386676124 9.659520112800437e-05']
['59907.05132792222 0.3051562233152416 5.2399382891768724e-05 0.01990118612672539 1.2162151494300294e-05 1.689265144245438e-05 1.0323554821068657e-08 0.13267457417816925 8.108100996200196e-05 0.17248164913707237 9.653924333604675e-05']
['59907.05146820243 0.30503790443798645 5.23938808949707e-05 0.019909025739454276 1.2164981832705986e-05 1.68993059124156e-05 1.0325957286924063e-08 0.1327268382630285 8.109987888470658e-05 0.17231106617495795 9.655210567538365e-05']
['59907.05160848264 0.30516909565340805 5.239876274364854e-05 0.019916333424986457 1.216396600755229e-05 1.6905508868548974e-05 1.0325095027753248e-08 0.13277555616657638 8.109310671701526e-05 0.17239353948683167 9.654906676960888e-05']
['59907.051748762846 0.30512362632442697 5.2397422947973926e-05 0.019920260778954042 1.2163592434863945e-05 1.6908842510134108e-05 1.0324777929406827e-08 0.1328017385263603 8.10906162324263e-05 0.17232188779806668 9.654624784290431e-05']
['59907.051889043054 0.30503658952700546 5.239270542678867e-05 0.019915827376668804 1.2162796276635083e-05 1.690507932139592e-05 1.0324102129312923e-08 0.13277218251112535 8.108530851090056e-05 0.1722644070158801 9.653922953000076e-05']
['59907.05202932326 0.30513101592445924 5.239920264563779e-05 0.019909612849735615 1.216325296605669e-05 1.689980426710048e-05 1.0324489779333759e-08 0.13273075233157078 8.10883531070446e-05 0.17240026359288846 9.65453129235768e-05']
['59907.05216960347 0.3051306930045982 5.239835065842632e-05 0.019909227241515948 1.2162043167302266e-05 1.6899476952677777e-05 1.032346287025689e-08 0.13272818161010633 8.108028778201511e-05 0.1724025113944919 9.6538076521846e-05']
['59907.05230988368 0.30512405581866825 5.240183742966402e-05 0.01988768765876424 1.2159940871338098e-05 1.688119358698673e-05 1.0321678386019345e-08 0.1325845843917616 8.106627247558733e-05 0.17253947142690665 9.652819846599803e-05']
['59907.05245016389 0.3051265211234657 5.2396107758942195e-05 0.01991515374573643 1.2161678543027195e-05 1.690450752570148e-05 1.0323153367559563e-08 0.13276769163824287 8.107785695351464e-05 0.17235882948522285 9.653481753471783e-05']
['59907.052590444095 0.3050924634823929 5.239519528081816e-05 0.019906563619011088 1.2161213426317783e-05 1.6897215999674155e-05 1.0322758564234669e-08 0.13271042412674058 8.107475617545189e-05 0.1723820393556523 9.653171798649418e-05']
['59907.0527307243 0.30505417715315886 5.239410932218667e-05 0.019882963745987043 1.2159448706302208e-05 1.6877183805284193e-05 1.0321260623361857e-08 0.13255309163991363 8.106299137534806e-05 0.17250108551324522 9.652124772496987e-05']
['59907.05287100451 0.30511321580174255 5.239922489972392e-05 0.019901693603075768 1.2161571644725263e-05 1.689308220175926e-05 1.0323062629462705e-08 0.13267795735383844 8.107714429816842e-05 0.1724352584479041 9.653591092250527e-05']
['59907.05301128472 0.30508668315058785 5.240131723441872e-05 0.019909872463841426 1.2163501442398384e-05 1.690002463439774e-05 1.0324700692603209e-08 0.13273248309227617 8.109000961598922e-05 0.17235420005831167 9.65478519047597e-05']
['59907.05315156493 0.30504015830854136 5.239433618060802e-05 0.01989817135582201 1.2159626812626317e-05 1.6890092425432714e-05 1.0321411804705208e-08 0.13265447570548006 8.106417875084213e-05 0.1723856826030613 9.652236808302547e-05']
['59907.053291845135 0.30510019266075566 5.2395728661943306e-05 0.01989981328126771 1.2161272852544784e-05 1.689148613503736e-05 1.032280900678281e-08 0.13266542187511807 8.107515235029856e-05 0.1724347707856376 9.653234023186276e-05']
['59907.05343212535 0.3050708347563579 5.239542619707703e-05 0.019914153224872232 1.216327295110438e-05 1.6903658257215063e-05 1.0324506743169107e-08 0.13276102149914823 8.108848634069587e-05 0.17230981325720965 9.654337524345503e-05']
['59907.05357240556 0.3050069637989295 5.239630838469833e-05 0.019876259788519503 1.2157989010938256e-05 1.6871493309448265e-05 1.0320021595454758e-08 0.13250839859013003 8.10532600729217e-05 0.17249856520879947 9.651426889736612e-05']
['59907.05371268577 0.3050383187862622 5.2392496431104614e-05 0.019897551669579988 1.2161557079052414e-05 1.68895664194136e-05 1.0323050265735594e-08 0.1326503444638666 8.107704719368276e-05 0.1723879743223956 9.653217734999025e-05']
['59907.053852965975 0.3050562012634527 5.239189065131518e-05 0.019913794276354972 1.2164189641588636e-05 1.6903353572250597e-05 1.0325284854218999e-08 0.13275862850903317 8.109459761059092e-05 0.1722975727544195 9.654658962202148e-05']
['59907.05399324618 0.3050220906084377 5.239169057604901e-05 0.019894493723507368 1.2161551403364508e-05 1.688697075417005e-05 1.0323045448062071e-08 0.1326299581567158 8.10770093557634e-05 0.1723921324517219 9.653170819731207e-05']
['59907.05413352639 0.30502526001819324 5.238999282743723e-05 0.01992294845163197 1.2164739431869966e-05 1.691112387755867e-05 1.0325751530704e-08 0.13281965634421314 8.109826287913311e-05 0.1722056036739801 9.654863847031663e-05']
['59907.0542738066 0.30500684778933207 5.2398531046163744e-05 0.01990444093187288 1.2162889589148052e-05 1.689541420687051e-05 1.0324181335433944e-08 0.13269627287915253 8.108593059432035e-05 0.17231057491017954 9.654291375415765e-05']
['59907.05441408681 0.30503622909080963 5.239250746649749e-05 0.01990489679362673 1.2162175928317937e-05 1.6895801154345132e-05 1.0323575561306991e-08 0.13269931195751153 8.108117285545292e-05 0.1723369171332981 9.653564849444392e-05']
['59907.054554367016 0.30504379455563246 5.239984220092158e-05 0.01989488664144548 1.2161555283475985e-05 1.6887304273274477e-05 1.0323048741602984e-08 0.13263257760963654 8.107703522317324e-05 0.17241121694599593 9.653615438405011e-05']
['59907.054694647224 0.30507687807466205 5.239262885722912e-05 0.01991411634062407 1.2163320237217993e-05 1.6903626948892836e-05 1.0324546880868953e-08 0.13276077560416047 8.108880158145329e-05 0.17231610247050158 9.65421218975824e-05']
['59907.05483492743 0.305084284347909 5.2396317852638196e-05 0.019910844330147347 1.2163924858549268e-05 1.690084958013967e-05 1.0325060099394665e-08 0.1327389622009823 8.109283239032845e-05 0.17234532214692672 9.654750949455193e-05']
['59907.05497520764 0.3051021570891804 5.2395505155162704e-05 0.01991971141283267 1.2163692953323402e-05 1.6908376193687263e-05 1.0324863252125197e-08 0.13279807608555114 8.109128635548936e-05 0.1723040810036293 9.654576988792753e-05']
['59907.05511548785 0.30665907912039414 5.4081618064576054e-05 0.021453507547417643 1.8087137553777733e-05 1.8210302788430945e-05 1.5352839189689485e-08 0.14302338364945097 0.0001205809170251849 0.16363569547094317 0.00013215361880447016']
['59907.05525576806 0.305141614636979 5.240638797816595e-05 0.019929532232953698 1.2165714270617704e-05 1.6916712364713813e-05 1.0326578999532905e-08 0.13286354821969135 8.110476180411803e-05 0.17227806641728763 9.656299440376101e-05']
['59907.055396048265 0.3050807535147273 5.2403450121990055e-05 0.019908573663073203 1.2162685602515334e-05 1.6898922178065186e-05 1.032400818620236e-08 0.13272382442048802 8.108457068343555e-05 0.17235692909423928 9.654444151583744e-05']
['59907.05553632847 0.3050337674423093 5.238968601064189e-05 0.019929526690725473 1.2165140032516869e-05 1.6916707660324384e-05 1.0326091571094187e-08 0.13286351127150317 8.110093355011246e-05 0.17217025617080614 9.655071528991075e-05']
['59907.05567660868 0.30507013554620954 5.2393951599312944e-05 0.019914719928066163 1.2163549621997922e-05 1.6904139289826156e-05 1.0324741588717463e-08 0.1327647995204411 8.109033081331948e-05 0.17230533602576845 9.65441241899513e-05']
['59907.05581688889 0.3050889587293291 5.2393402205475974e-05 0.019925174944640127 1.2163883267642576e-05 1.6913013783521378e-05 1.0325024795936599e-08 0.1328344996309342 8.109255511761719e-05 0.17225445909839493 9.654569431190889e-05']
['59907.0559571691 0.30496182577001013 5.2387430163075704e-05 0.019893577628203027 1.2167146937690341e-05 1.688619314832456e-05 1.0327795085113787e-08 0.13262385085468686 8.111431291793562e-05 0.17233797491532327 9.656073010929397e-05']
['59907.056097449306 0.30500995868044106 5.239079454358959e-05 0.019925703772574244 1.2164834111181906e-05 1.691346266661343e-05 1.0325831897000018e-08 0.13283802515049498 8.109889407454604e-05 0.1721719335299461 9.65496036916934e-05']
['59907.056237729514 0.3049798196439135 5.238938427500316e-05 0.019903926172533743 1.2162875029711866e-05 1.6894977265572768e-05 1.0324168977000676e-08 0.13269284115022495 8.108583353141243e-05 0.17228697849368857 9.653786813576254e-05']
['59907.05637800972 0.3050891197927158 5.240435665748928e-05 0.019893529108896038 1.2160761649245029e-05 1.6886151963857666e-05 1.0322375083945045e-08 0.13262352739264024 8.107174432830019e-05 0.17246559240007556 9.65341614410081e-05']
['59907.05651828993 0.3051228388284769 5.2397792895028856e-05 0.019908717000753903 1.216362944409611e-05 1.6899043846867396e-05 1.0324809343818768e-08 0.13272478000502602 8.109086296064074e-05 0.17239805882345088 9.654665585079451e-05']
['59907.05665857014 0.3050527401767351 5.239255082553095e-05 0.019907527998073812 1.216270294056633e-05 1.689803459004667e-05 1.0324022903197133e-08 0.13271685332049207 8.10846862704422e-05 0.17233588685624304 9.653862299402184e-05']
['59907.056798850346 0.30504558018587036 5.2391344657730524e-05 0.019923013903332266 1.2164267075092269e-05 1.6911179434687396e-05 1.0325350581818273e-08 0.13282009268888179 8.109511383394846e-05 0.17222548749698857 9.654672693978894e-05']
['59907.056939130554 0.30515071785115766 5.2409531095529967e-05 0.01991443074985972 1.2162151098425287e-05 1.6903893827740877e-05 1.0323554485039514e-08 0.13276287166573147 8.108100732283524e-05 0.17238784618542619 9.654474971814358e-05']
['59907.05707941076 0.30498237469672757 5.238894026074452e-05 0.019909249850285124 1.2162940236532383e-05 1.689949614359709e-05 1.0324224326268989e-08 0.13272833233523415 8.108626824354922e-05 0.17225404236149341 9.653799231032659e-05']
['59907.05721969097 0.30509236666367734 5.2395856042236434e-05 0.019918351998533257 1.2165909493955999e-05 1.690722228699147e-05 1.0326744710249153e-08 0.13278901332355506 8.110606329303999e-05 0.17230335334012228 9.655837215536193e-05']
['59907.05735997118 0.30508622609102765 5.239487074158659e-05 0.019932859047727423 1.2165209219550064e-05 1.691953625279909e-05 1.0326150298871952e-08 0.1328857269848495 8.110139479700042e-05 0.17220049910617816 9.655391611968152e-05']
['59907.05750025139 0.30500098881076754 5.238926481175609e-05 0.019903738399826176 1.2162797444946043e-05 1.6894817879148306e-05 1.0324103121006066e-08 0.1326915893321745 8.108531629964029e-05 0.17230939947859303 9.653736886267936e-05']
['59907.057640531595 0.30504600492819045 5.239122367577125e-05 0.01991936369023642 1.2165359362562538e-05 1.69080810375805e-05 1.0326277744219183e-08 0.13279575793490947 8.110239575041692e-05 0.17225024699328098 9.655277787149335e-05']
['59907.0577808118 0.30504665659003666 5.24017078290826e-05 0.019907506410626892 1.2164158460823743e-05 1.6898016266052612e-05 1.0325258387163733e-08 0.1327167094041793 8.109438973882495e-05 0.17232994718585737 9.655174276271233e-05']
['59907.05792109201 0.30509953204603135 5.239551362988663e-05 0.019917860653916503 1.2164072974507575e-05 1.6906805220727373e-05 1.0325185824124881e-08 0.13278573769277668 8.10938198300505e-05 0.17231379435325467 9.65479024275946e-05']
['59907.05806137222 0.30502356783575324 5.2393916150857554e-05 0.019923272498533512 1.2163611266803403e-05 1.6911398937111598e-05 1.0324793914453507e-08 0.13282181665689008 8.109074177868936e-05 0.17220175117886316 9.654445013485326e-05']
['59907.05820165243 0.30507081380604933 5.2401488246024084e-05 0.019911079281341604 1.2163743422201661e-05 1.690104901290741e-05 1.0324906091439582e-08 0.13274052854227736 8.109162281467775e-05 0.17233028526377198 9.654929964073361e-05']
['59907.058341932636 0.3050728463348148 5.239373978904131e-05 0.019907428910107456 1.216268203696497e-05 1.6897950481568557e-05 1.0324005159669215e-08 0.13271619273404972 8.108454691309981e-05 0.17235665360076508 9.653915121433612e-05']
['59907.058482212844 0.3051093722580984 5.2404673731933485e-05 0.019910771293986065 1.2163086483341078e-05 1.690078758512051e-05 1.0324348464415738e-08 0.13273847529324045 8.108724322227386e-05 0.17237089696485797 9.65473502605773e-05']
['59907.05862249305 0.3051058453059491 5.239459945834613e-05 0.01992172582487472 1.2164053702277189e-05 1.6910086079734814e-05 1.0325169465347653e-08 0.1328115054991648 8.10936913485146e-05 0.1722943398067843 9.654729840305568e-05']
['59907.05876277327 0.3050022949661889 5.2390310072048636e-05 0.019908744172220237 1.2162210716643591e-05 1.6899066910724345e-05 1.0323605090554936e-08 0.13272496114813492 8.108140477762394e-05 0.172277333818054 9.653465072272391e-05']
['59907.058903053476 0.3050182179988443 5.239189559455552e-05 0.019910134570729727 1.2162789920038683e-05 1.6900247117634496e-05 1.032409673366632e-08 0.13273423047153152 8.108526613359123e-05 0.1722839875273128 9.653875443543967e-05']
['59907.059043333684 0.3050711014259522 5.239518239770548e-05 0.01989765866410911 1.2162150269227754e-05 1.6889657239190633e-05 1.0323553781194789e-08 0.13265105776072741 8.10810017948517e-05 0.17242004366522476 9.653695660494777e-05']
['59907.05918361389 0.30511448477956693 5.239576093468528e-05 0.01991652031002946 1.2163820983217803e-05 1.6905667501500354e-05 1.0324971927274837e-08 0.13277680206686307 8.10921398881187e-05 0.17233768271270386 9.654662560420693e-05']
['59907.0593238941 0.304995602176076 5.2397424585880634e-05 0.019892891244328872 1.216107537494068e-05 1.688561052759693e-05 1.0322641382586314e-08 0.13261927496219247 8.107383583293787e-05 0.17237632721388355 9.65321550567437e-05']
['59907.05946417431 0.3050960763479025 5.239683252428108e-05 0.019914308637350067 1.2163220574803574e-05 1.6903790175423412e-05 1.0324462284784179e-08 0.13276205758233378 8.108813716535716e-05 0.1723340187655687 9.654384520789162e-05']
['59907.05960445452 0.30499620946953343 5.238816218821428e-05 0.01991744757149825 1.2163278387243152e-05 1.6906454585480604e-05 1.032451135750701e-08 0.13278298380998835 8.108852258162101e-05 0.17221322565954508 9.653946359872063e-05']
['59907.059744734725 0.3050215234413646 5.238867019166258e-05 0.019916077037198766 1.2163580796013736e-05 1.690529123983559e-05 1.0324768050043931e-08 0.13277384691465846 8.109053864009157e-05 0.1722476765267061 9.654143266696936e-05']
['59907.05988501493 0.30497807426495477 5.238827740431285e-05 0.01990562630549465 1.2162278445162179e-05 1.689642038325086e-05 1.032366258030705e-08 0.13270417536996434 8.10818563010812e-05 0.17227389889499042 9.653392683725456e-05']
['59907.06002529514 0.30505571061250847 5.239511776053504e-05 0.01989963723329928 1.2160727553533689e-05 1.689133670088058e-05 1.0322346142606388e-08 0.1326642482219952 8.107151702355793e-05 0.17239146239051326 9.652895543639421e-05']
['59907.06016557535 0.3050114061779757 5.239221791722655e-05 0.019913932739362046 1.2164098272950869e-05 1.6903471103301322e-05 1.0325207298110496e-08 0.13275955159574698 8.109398848633913e-05 0.1722518545822287 9.654625558201964e-05']
['59907.06030585556 0.30491185132110904 5.239044598914654e-05 0.01987998090891409 1.2159426473717789e-05 1.6874651894539666e-05 1.0321241751758082e-08 0.13253320605942726 8.106284315811859e-05 0.17237864526168178 9.651913474446098e-05']
['59907.060446135765 0.30502818690684613 5.239112836516248e-05 0.019893761592973718 1.2161388475116444e-05 1.6886349302471815e-05 1.0322907150269812e-08 0.13262507728649145 8.107592316744297e-05 0.17240310962035468 9.653049077275039e-05']
['59907.06058641597 0.3050040425891239 5.238997397627327e-05 0.019909511160147227 1.2162473895525851e-05 1.6899717950296997e-05 1.0323828483728425e-08 0.1327300744009815 8.108315930350569e-05 0.1722739681881424 9.653594198987376e-05']
['59907.06072669618 0.3050589677984086 5.2400041653582296e-05 0.019883604468163566 1.2159549131198881e-05 1.6877727667159084e-05 1.0321345866661671e-08 0.13255736312109043 8.10636608746592e-05 0.17250160467731815 9.652503032736593e-05']
['59907.06086697639 0.30510546148871825 5.23958832653684e-05 0.01990089034888899 1.2161213589106789e-05 1.689240037842921e-05 1.0322758702414269e-08 0.13267260232592662 8.107475726071193e-05 0.17243285916279164 9.653209232188782e-05']
['59907.0610072566 0.305041441693488 5.239112685067201e-05 0.019902813244189306 1.2162611400959442e-05 1.6894032582653705e-05 1.0323945201965533e-08 0.1326854216279287 8.108407600639628e-05 0.1723560200655593 9.653733761863467e-05']
['59907.061147536806 0.3049547953344052 5.2386741768122155e-05 0.019897698091748003 1.2162353665667962e-05 1.688969070640996e-05 1.032372642945541e-08 0.13265132061165336 8.108235777111976e-05 0.17230347472275187 9.653351467135017e-05']
['59907.061287817014 0.3049805251045423 5.238836699281584e-05 0.01991652376870338 1.2164527498965397e-05 1.690567043731396e-05 1.032557163646738e-08 0.13277682512468922 8.109684999310266e-05 0.1722036999798531 9.654656946250214e-05']
['59907.06142809722 0.305010450797338 5.2390485499458654e-05 0.019890272062393244 1.2161107959633642e-05 1.6883387296920067e-05 1.0322669041332734e-08 0.1326018137492883 8.107405306422428e-05 0.1724086370480497 9.652857116486103e-05']
['59907.06156837743 0.3051137131522873 5.239659959006362e-05 0.01992338859746072 1.216535859618846e-05 1.6911497484941745e-05 1.0326277093700662e-08 0.13282259064973811 8.11023906412564e-05 0.1722911225025492 9.655569075061505e-05']
['59907.06170865764 0.30507449305797196 5.239355216231285e-05 0.019912710156885758 1.216305250731948e-05 1.6902433343064315e-05 1.032431962467289e-08 0.13275140104590505 8.10870167154632e-05 0.17232309201206691 9.65411238177742e-05']
['59907.06184893785 0.30505658574698 5.239198267215543e-05 0.019918851727745403 1.2164483145333896e-05 1.690764647032118e-05 1.0325533987935661e-08 0.13279234485163605 8.109655430222598e-05 0.17226424089534398 9.654828309200181e-05']
['59907.061989218055 0.30506104249021904 5.239272869419927e-05 0.01991304876244969 1.2164929837114597e-05 1.6902720760393692e-05 1.0325913151695324e-08 0.13275365841633127 8.109953224743064e-05 0.17230738407388776 9.655118927685983e-05']
['59907.06212949826 0.3050341913759457 5.239634220168027e-05 0.019924107658471288 1.2164203147540762e-05 1.6912107842884233e-05 1.0325296318427222e-08 0.13282738438980857 8.109468765027175e-05 0.1722068069861371 9.654908099619964e-05']
['59907.06226977847 0.30506975795723923 5.2391837682749765e-05 0.019924939553596793 1.2164569899946344e-05 1.6912813977398146e-05 1.0325607627537832e-08 0.13283293035731197 8.109713266630897e-05 0.17223682759992726 9.654869021624538e-05']
['59907.06241005868 0.3050146569889475 5.239072671852996e-05 0.019904101046438825 1.2161744536668784e-05 1.6895125703153632e-05 1.0323209384702343e-08 0.13269400697625885 8.107829691112523e-05 0.17232065001268862 9.653226650247195e-05']
['59907.06255033889 0.30504709210680825 5.2394071800187005e-05 0.019905274889708717 1.2163709877355419e-05 1.689612209226733e-05 1.0324877617689744e-08 0.13270183259805812 8.109139918236946e-05 0.17234525950875013 9.654508677896324e-05']
['59907.062690619096 0.3049921339386895 5.2407109922590685e-05 0.01988632435156225 1.2161286895033037e-05 1.6880036375892598e-05 1.0322820926417044e-08 0.13257549567708166 8.107524596688692e-05 0.17241663826160786 9.653859683582374e-05']
['59907.062830899304 0.30505741069766207 5.239361021319524e-05 0.019903835765968617 1.2163361664560508e-05 1.6894900526096886e-05 1.0324582045489435e-08 0.13269223843979078 8.108907776373673e-05 0.1723651722578713 9.65428864481769e-05']
['59907.06297117951 0.30509684671949244 5.23953620305853e-05 0.019920770319993845 1.2164888889138389e-05 1.6909275022001802e-05 1.0325878393973602e-08 0.13280513546662562 8.10992592609226e-05 0.17229171125286682 9.655238896571354e-05']
['59907.06311145972 0.30498775565770314 5.239067790763116e-05 0.019896727290139984 1.2162336011499134e-05 1.6888866664411682e-05 1.0323711444131488e-08 0.13264484860093323 8.10822400766609e-05 0.1723429070567699 9.653555193539024e-05']
['59907.06325173993 0.30506468179270574 5.2393604632069636e-05 0.019906918076279936 1.216204319937194e-05 1.6897516872348566e-05 1.0323462897478473e-08 0.13271278717519958 8.108028799581294e-05 0.17235189461750616 9.65355007643592e-05']
['59907.063392020136 0.3050879651899173 5.239393525432138e-05 0.01991752175264637 1.2162776498428392e-05 1.6906517552394777e-05 1.0324085341049668e-08 0.13278347835097581 8.108517665618927e-05 0.1723044868389415 9.653978622723091e-05']
['59907.063532300344 0.30507300204547994 5.239636844941959e-05 0.019895526294688985 1.216061406787746e-05 1.6887847227810842e-05 1.0322249812989541e-08 0.13263684196459324 8.10707604525164e-05 0.1724361600808867 9.652899889171455e-05']
['59907.06367258055 0.3049881464852032 5.238810824276661e-05 0.01991211221980232 1.2162810873368923e-05 1.6901925798304385e-05 1.0324114519405423e-08 0.13274741479868216 8.108540582245949e-05 0.17224073168652107 9.653681641036635e-05']
['59907.06381286076 0.30508987427288103 5.240249670789307e-05 0.019898547470963646 1.2162497281010235e-05 1.6890411681880517e-05 1.0323848333944084e-08 0.13265698313975763 8.108331520673491e-05 0.1724328911331234 9.654286957686452e-05']
['59907.06395314097 0.3050733088627808 5.239546232136589e-05 0.01989655098771994 1.2161928476356021e-05 1.688871701426966e-05 1.0323365517558101e-08 0.13264367325146625 8.10795231757068e-05 0.17242963561131452 9.653586665208766e-05']
['59907.06409342118 0.30503871443587716 5.239251712659259e-05 0.019899595447206507 1.2162761290506071e-05 1.689130123174342e-05 1.0324072432164275e-08 0.1326639696480434 8.108507527004049e-05 0.17237474478783377 9.653893143394757e-05']
['59907.06423370139 0.30508651116986085 5.239586472358294e-05 0.01989870872250079 1.2163432591420054e-05 1.6890548556436345e-05 1.0324642250077675e-08 0.13265805815000525 8.108955060946703e-05 0.1724284530198556 9.654450713622873e-05']
['59907.0643739816 0.30514996063597916 5.2398708338786886e-05 0.019911732029164145 1.216417862154441e-05 1.6901603082467676e-05 1.0325275500114937e-08 0.13274488019442762 8.109452414362941e-05 0.17240508044155153 9.655022776594029e-05']
['59907.06451426181 0.3050358321368585 5.240027805017799e-05 0.01990417740782357 1.2162209061835877e-05 1.689519052071013e-05 1.0323603685910522e-08 0.13269451605215715 8.108139374557252e-05 0.17234131608470132 9.654005154059392e-05']
['59907.06465454202 0.3049259467677361 5.2384192686060214e-05 0.019894908267367506 1.2161423507408178e-05 1.688732262992722e-05 1.0322936886602596e-08 0.13263272178245003 8.107615671605452e-05 0.17229322498528607 9.652692283097248e-05']
['59907.064794822225 0.3050067026323613 5.239025628394772e-05 0.01990638692806798 1.2162257509075437e-05 1.6897066019743516e-05 1.0323644809204683e-08 0.1327092461871199 8.108171672716959e-05 0.1722974564452414 9.653488354435767e-05']
['59907.06493510243 0.30495341303432083 5.2387993718803816e-05 0.01990344787087399 1.216237658775944e-05 1.689457127051443e-05 1.0323745886330955e-08 0.13268965247249326 8.108251058506294e-05 0.17226376056182757 9.653432243848957e-05']
['59907.06507538264 0.304955308070335 5.2389604106350694e-05 0.019871890637002877 1.2157933442352279e-05 1.6867784658456326e-05 1.0319974427374016e-08 0.13247927091335254 8.105288961568186e-05 0.17247603715698245 9.651031827463872e-05']
['59907.06521566285 0.30502148441689264 5.239821995447254e-05 0.019897855254260136 1.2161868992186954e-05 1.6889824110093562e-05 1.0323315025827206e-08 0.13265236836173425 8.107912661457969e-05 0.1723691160551584 9.653703034059173e-05']
['59907.06535594306 0.3049979879725497 5.2396024798597635e-05 0.019916291072517904 1.216420822919756e-05 1.690547291865712e-05 1.0325300631871482e-08 0.13277527381678603 8.109472152798374e-05 0.17222271415576365 9.654893719972524e-05']
['59907.065496223266 0.3050700073143607 5.23949359781456e-05 0.019905033109454958 1.2162077917650937e-05 1.6895916862813848e-05 1.032349236726897e-08 0.13270022072969972 8.108051945100625e-05 0.17236978658466096 9.653641774273054e-05']
['59907.065636503474 0.3049584800664024 5.238839878186971e-05 0.01989616502298182 1.2159828163956178e-05 1.6888389397224695e-05 1.032158271702225e-08 0.13264110015321215 8.106552109304119e-05 0.17231737991319027 9.652027267374722e-05']
['59907.06577678368 0.3049859671634569 5.238769797821118e-05 0.019888306153528816 1.2160745921692349e-05 1.6881718581648378e-05 1.0322361733983702e-08 0.13258870769019213 8.1071639477949e-05 0.17239725947326476 9.652503109089792e-05']
['59907.06591706389 0.30506192875431865 5.2394664539926336e-05 0.019915013524805705 1.2163497456476021e-05 1.6904388502478817e-05 1.0324697309247227e-08 0.13276675683203804 8.108998304317348e-05 0.1722951719222806 9.654421899934546e-05']
['59907.0660573441 0.30502630997110575 5.23911238134503e-05 0.019899637808880294 1.2161408780243866e-05 1.6891337189448917e-05 1.0322924385797274e-08 0.13266425205920196 8.107605853495911e-05 0.1723620579119038 9.653060199750333e-05']
['59907.06619762431 0.3050511396261113 5.2392767389079435e-05 0.019898655864968195 1.2161357129477093e-05 1.689050368956919e-05 1.032288054326476e-08 0.13265770576645466 8.107571419651396e-05 0.17239343385965664 9.653120483636886e-05']
['59907.066337904515 0.30510213209831205 5.239632197054393e-05 0.019923431210243047 1.216904420284857e-05 1.6911533655794794e-05 1.032940553379799e-08 0.13282287473495366 8.11269613523238e-05 0.1722792573633584 9.657617933166721e-05']
['59907.06647818472 0.3050289989190883 5.239251793903435e-05 0.019914075981634236 1.2163375436033358e-05 1.6903592691118275e-05 1.032459373507865e-08 0.13276050654422825 8.108916957355573e-05 0.17226849237486005 9.654237079190106e-05']
['59907.06661846493 0.30499421000177135 5.238994317592493e-05 0.019886853496006378 1.2160433647149335e-05 1.6880485527646694e-05 1.0322096667119049e-08 0.1325790233067092 8.106955764766222e-05 0.17241518669506214 9.652450115470305e-05']
['59907.06675874514 0.30510570374119284 5.240660425962719e-05 0.019881560471534075 1.2159116233718998e-05 1.687599266893377e-05 1.0320978411868202e-08 0.13254373647689385 8.106077489145998e-05 0.17256196726429898 9.652616948801565e-05']
['59907.06689902535 0.3050609823516364 5.240941440543321e-05 0.01989715399209488 1.2160763837814165e-05 1.6889228860280208e-05 1.0322376941660226e-08 0.13264769328063256 8.107175891876111e-05 0.17241328907100387 9.653691942724374e-05']
['59907.067039305555 0.30502560795901773 5.2392243267999565e-05 0.019899479409047217 1.216166991168522e-05 1.6891202735494684e-05 1.0323146041048945e-08 0.1326631960603148 8.107779941123481e-05 0.17236241189870294 9.653267173357254e-05']
['59907.06717958576 0.3050726450453314 5.239402557901807e-05 0.019905137885779866 1.2161861805637362e-05 1.6896005799720664e-05 1.0323308925694453e-08 0.13270091923853244 8.107907870424909e-05 0.17237172580679894 9.65347135485708e-05']
['59907.06731986597 0.3049827653983857 5.238847586728506e-05 0.019908605256553212 1.2166173808472596e-05 1.689894899544392e-05 1.0326969067379006e-08 0.1327240350436881 8.11078253898173e-05 0.1722587303546976 9.655584779371057e-05']
['59907.06746014618 0.30509277907756926 5.2398516791724136e-05 0.019909826899582886 1.2172846849466655e-05 1.6899985958253875e-05 1.033263332049719e-08 0.1327321793305526 8.115231232977771e-05 0.17236059974701667 9.659866644236031e-05']
['59907.06760042639 0.30490962116569326 5.238704191757437e-05 0.019873101363724343 1.2159091691460492e-05 1.6868812355216083e-05 1.032095757975217e-08 0.13248734242482896 8.106061127640327e-05 0.1724222787408643 9.651541255870925e-05']
['59907.067740706596 0.3050701531953137 5.239440091796033e-05 0.019900576933619653 1.216275792218183e-05 1.689213434328598e-05 1.0324069573041857e-08 0.1326705128907977 8.108505281454553e-05 0.17239964030451602 9.653993493622004e-05']
['59907.067880986804 0.3048959441532768 5.238954007351085e-05 0.019900322696944757 1.2162101948697714e-05 1.6891918540493847e-05 1.0323512765455009e-08 0.13266881797963173 8.108067965798476e-05 0.17222712617364508 9.653362379458643e-05']
['59907.06802126701 0.3050649504848766 5.239389017046885e-05 0.019899917132182317 1.216789911427327e-05 1.6891574286431518e-05 1.0328433552427127e-08 0.13266611421454877 8.111932742848848e-05 0.17239883627032782 9.656844727780122e-05']
['59907.06816154722 0.3051334879386648 5.239866567778109e-05 0.019910226188204018 1.2163123522568623e-05 1.6900324884962e-05 1.0324379904288548e-08 0.13273484125469345 8.108749015045749e-05 0.17239864668397134 9.654429669179021e-05']
['59907.06830182743 0.3050267180290351 5.238992590673261e-05 0.019902079522327927 1.2161913083321627e-05 1.6893409780194544e-05 1.0323352451544698e-08 0.13268053014885287 8.107942055547751e-05 0.17234618788018222 9.65327756470564e-05']
['59907.06844210764 0.30497903180425023 5.23940217941408e-05 0.019895964163432072 1.2179016868804315e-05 1.6888218902343577e-05 1.0337870595572183e-08 0.13263976108954714 8.119344579202877e-05 0.1723392707147031 9.663078784397867e-05']
['59907.068582387845 0.3051099020213005 5.239799467048439e-05 0.01990439883935173 1.2162692782621075e-05 1.6895378477628866e-05 1.0324014280865405e-08 0.13269599226234488 8.108461855080717e-05 0.17241390975895562 9.654152065830542e-05']
['59907.06872266805 0.30506567504773807 5.239378261898548e-05 0.0199004658592171 1.216258268026839e-05 1.689204006040482e-05 1.03239208230858e-08 0.13266977239478067 8.10838845351226e-05 0.1723959026529574 9.653861811954116e-05']
['59907.06886294826 0.30505476736500914 5.239376080305158e-05 0.019910412008176816 1.2167965832877274e-05 1.690048261385371e-05 1.0328490184937116e-08 0.1327360800545121 8.111977221918182e-05 0.17231868731049704 9.65687507218527e-05']
['59907.06900322847 0.30506231078328083 5.239331604352912e-05 0.019923051390414916 1.2164764453333211e-05 1.6911211254711425e-05 1.0325772769581645e-08 0.1328203426027661 8.109842968888807e-05 0.17224196818051474 9.6550581893848e-05']
['59907.06914350868 0.3050595126122757 5.239348340203494e-05 0.019902399840123847 1.2162089758334564e-05 1.6893681674384307e-05 1.032350241795339e-08 0.13268266560082564 8.10805983888971e-05 0.17237684701145006 9.653569566798043e-05']
['59907.069283788886 0.3050792005578148 5.2398087933030475e-05 0.019904324025661883 1.2160609871101862e-05 1.68953149737966e-05 1.0322246250655775e-08 0.13269549350441256 8.107073247401243e-05 0.17238370705340222 9.652990874806879e-05']
['59907.069424069094 0.30506881325660173 5.239175935526745e-05 0.01991574841822597 1.2164004021059057e-05 1.690501229938805e-05 1.0325127294619948e-08 0.1327716561215065 8.109336014039372e-05 0.17229715713509525 9.654547895784583e-05']
['59907.06956434931 0.30507719716278925 5.240483582697462e-05 0.01991208482008128 1.2163261508360092e-05 1.6901902540698824e-05 1.0324497030266089e-08 0.1327472321338752 8.108841005573395e-05 0.17232996502891404 9.654841823364594e-05']
['59907.06970462952 0.3050878801316795 5.239510592290069e-05 0.019901942781020823 1.2161229610682563e-05 1.689329371056814e-05 1.0322772301950165e-08 0.13267961854013882 8.10748640712171e-05 0.17240826159154066 9.653176010432169e-05']
['59907.069844909725 0.305054170103379 5.239834243305086e-05 0.01990149567260772 1.2163542375425368e-05 1.689291419315991e-05 1.0324735437635637e-08 0.1326766378173848 8.109028250283579e-05 0.17237753228599417 9.654646656465981e-05']
['59907.06998518993 0.30499943671249474 5.238814488399906e-05 0.019900604928245164 1.2161196289353093e-05 1.689215810586214e-05 1.0322744017927254e-08 0.13267069952163443 8.107464192902062e-05 0.1723287371908603 9.652779541824098e-05']
['59907.07012547014 0.30510260146996526 5.240132351903305e-05 0.0199255037812998 1.2164962705227805e-05 1.691329290874728e-05 1.0325941051016323e-08 0.132836691875332 8.109975136818537e-05 0.17226590959463325 9.65560375042796e-05']
['59907.07026575035 0.30507571301135705 5.2394833755446106e-05 0.019905284678602628 1.2161764234426608e-05 1.6896130401338547e-05 1.0323226104678479e-08 0.13270189785735084 8.107842822951072e-05 0.1723738151540062 9.653460585939508e-05']
['59907.07040603056 0.3051169622634422 5.2396844998167606e-05 0.019896554015364193 1.2161858220100739e-05 1.688871958421392e-05 1.032330588219644e-08 0.1326436934357613 8.107905480067158e-05 0.1724732688276809 9.653622373561288e-05']
['59907.070546310766 0.30501851104264643 5.239341577283509e-05 0.019923106470058304 1.2176115899094304e-05 1.6911258007764806e-05 1.0335408176003605e-08 0.13282070980038868 8.117410599396203e-05 0.17219780124225775 9.661420961879339e-05']
['59907.070686590974 0.3049688065798124 5.2388591830125794e-05 0.01989973467074358 1.2161621292250886e-05 1.689141940835206e-05 1.032310477159132e-08 0.13266489780495722 8.107747528167258e-05 0.17230390877485519 9.653041775520166e-05']
['59907.07082687118 0.30506002514119723 5.236565773754446e-05 0.019895500586462854 1.2152061170306442e-05 1.688782540599075e-05 1.0314989888049882e-08 0.13263667057641904 8.101374113537629e-05 0.1724233545647782 9.646444092532445e-05']
['59907.07096715139 0.30509785911557663 5.236688837408132e-05 0.019897546259977757 1.2151778753921454e-05 1.6889561827600614e-05 1.0314750165576917e-08 0.13265030839985173 8.101185835947637e-05 0.1724475507157249 9.646352778557994e-05']
['59907.0711074316 0.304988162261947 5.236093488124914e-05 0.019904579429978024 1.2151487991898847e-05 1.6895531767713403e-05 1.0314503359106724e-08 0.1326971961998535 8.100991994599232e-05 0.17229096606209351 9.64586679946105e-05']
['59907.07124771181 0.30504083279118455 5.236206657857151e-05 0.019912541882288647 1.2152752225698424e-05 1.690229050715004e-05 1.0315576474084999e-08 0.13275027921525764 8.101834817132283e-05 0.1722905535759269 9.646636075227699e-05']
['59907.071387992015 0.30504863625496664 5.2365500566134344e-05 0.019901030331691653 1.2152364725168512e-05 1.6892519199522497e-05 1.031524755341947e-08 0.13267353554461103 8.101576483445674e-05 0.1723751007103556 9.646605517618005e-05']
['59907.07152827222 0.3050551022883432 5.236332355267292e-05 0.019910885295582798 1.215314047425586e-05 1.690088435268126e-05 1.0315906029696007e-08 0.13273923530388532 8.102093649503906e-05 0.1723158669844579 9.646921687261209e-05']
['59907.07166855243 0.3050813042939716 5.236690385938615e-05 0.019889973115315956 1.2149689024490377e-05 1.6883133542759676e-05 1.0312976348143955e-08 0.13259982076877305 8.099792682993586e-05 0.17248148352519857 9.645183653288223e-05']
['59907.07180883264 0.30501405042368346 5.2367190165645304e-05 0.019914160202936355 1.2155022448147795e-05 1.6903664180379854e-05 1.0317503498750255e-08 0.1327610680195757 8.103348298765197e-05 0.17225298240410775 9.648185306551143e-05']
['59907.07194911285 0.3050494287510773 5.236238657411422e-05 0.01992664856373902 1.2154937497315084e-05 1.691426463026177e-05 1.0317431390243877e-08 0.13284432375826014 8.103291664876723e-05 0.1722051049928172 9.647877024684256e-05']
['59907.072089393056 0.30499254443803314 5.236101789692345e-05 0.01988808252593146 1.215116700413295e-05 1.688152876064821e-05 1.0314230896228779e-08 0.13258721683954308 8.1007780027553e-05 0.17240532759849006 9.645691587540186e-05']
['59907.072229673264 0.3050835302808335 5.237902954990192e-05 0.019897217448633465 1.215103124636595e-05 1.6889282723863073e-05 1.0314115661457147e-08 0.1326481163242231 8.1006874975773e-05 0.1724354139566104 9.64659345568684e-05']
['59907.07236995347 0.3049759067769221 5.236147703843189e-05 0.019897345149445658 1.215050591858502e-05 1.6889391119679057e-05 1.0313669749387395e-08 0.13264896766297105 8.100337279056682e-05 0.17232693911395106 9.645346381076094e-05']
['59907.07251023368 0.3050811923825214 5.236646987389798e-05 0.01990445252944259 1.2152988554602252e-05 1.6895424051193428e-05 1.0315777076288943e-08 0.13269635019628392 8.101992369734835e-05 0.17238484218623748 9.647007413171203e-05']
['59907.07265051389 0.3050979054522068 5.236832825173524e-05 0.019912482107422188 1.2153520008595727e-05 1.6902239768667535e-05 1.031622818844941e-08 0.13274988071614793 8.102346672397152e-05 0.17234802473605884 9.647405850202432e-05']
['59907.0727907941 0.30504867010670267 5.236342090921444e-05 0.01991635705520986 1.215261134155469e-05 1.6905528926505565e-05 1.0315456887909647e-08 0.13277571370139907 8.101740894369794e-05 0.1722729564053036 9.646630707799456e-05']
['59907.072931074305 0.3050361528163772 5.236588962439979e-05 0.019896230871391144 1.2149606141743987e-05 1.68884452910905e-05 1.0312905995083767e-08 0.13264153914260765 8.099737427829325e-05 0.17239461367376954 9.64508218530705e-05']
['59907.07307135451 0.30505133080591484 5.2363851889932355e-05 0.0198909204017295 1.2149628582051559e-05 1.6883937624440953e-05 1.0312925043008432e-08 0.13260613601153 8.099752388034374e-05 0.17244519479438483 9.644984115848832e-05']
['59907.07321163472 0.30498542507188814 5.236002184101328e-05 0.01990700676846803 1.2151612861936252e-05 1.6897592156616026e-05 1.0314609352086441e-08 0.13271337845645353 8.101075241290834e-05 0.1722720466154346 9.645887151370227e-05']
['59907.07335191493 0.3049850259429767 5.2361024183127176e-05 0.019902075713570777 1.215194865688518e-05 1.6893406547221065e-05 1.0314894383691705e-08 0.13268050475713852 8.101299104590119e-05 0.1723045211858382 9.646129571859014e-05']
['59907.07349219514 0.3050163561113892 5.236536905855612e-05 0.019888999089651832 1.2150347417846496e-05 1.6882306764097575e-05 1.0313535209781955e-08 0.13259332726434553 8.100231611897664e-05 0.1724230288470437 9.64546893275667e-05']
['59907.073632475345 0.305093321494612 5.2366572564913104e-05 0.019910754261968575 1.2153196334366183e-05 1.6900773127895045e-05 1.0315953445230298e-08 0.13273836174645715 8.102130889577456e-05 0.17235495974815485 9.647129322954486e-05']
['59907.07377275555 0.30501821779946825 5.236353697550453e-05 0.01989511995148371 1.2151833476010478e-05 1.6887502312985714e-05 1.0314796615128728e-08 0.1326341330098914 8.10122231734032e-05 0.17238408478957684 9.646201484564956e-05']
['59907.07391303576 0.30498774611257984 5.2360402044318024e-05 0.019890497545446556 1.2150164751585135e-05 1.6883578692880163e-05 1.0313380157843653e-08 0.1326033169696437 8.10010983439009e-05 0.17238442914293614 9.645097011000422e-05']
['59907.07405331597 0.30493584498812853 5.235787613769823e-05 0.019897752472720867 1.2151404693953366e-05 1.6889736866413383e-05 1.0314432653614603e-08 0.13265168315147244 8.100936462635578e-05 0.1722841618366561 9.645654125468327e-05']
['59907.07419359618 0.3049295051802079 5.236552480412716e-05 0.019886913367812918 1.2151085978730113e-05 1.6880536348414494e-05 1.0314162119730765e-08 0.13257942245208612 8.100723985820074e-05 0.17235008272812177 9.645890885478503e-05']
['59907.074333876386 0.3050302342983571 5.2363607151437714e-05 0.01989962995684908 1.2151345755990595e-05 1.689133052443782e-05 1.031438262551801e-08 0.1326641997123272 8.100897170660397e-05 0.17236603458602986 9.645932226006703e-05']
['59907.074474156594 0.30495680098340644 5.2358556719655154e-05 0.01991581536130651 1.215387178708386e-05 1.690506912243964e-05 1.0316526787304128e-08 0.13277210240871007 8.10258119138924e-05 0.17218469857469637 9.647072435755219e-05']
['59907.0746144368 0.3049157298037787 5.2358062426388985e-05 0.019887037009339976 1.2156217937936315e-05 1.6880641298602242e-05 1.0318518261999635e-08 0.13258024672893318 8.104145291957543e-05 0.1723354830748455 9.648359338437498e-05']
['59907.07475471701 0.30508631910882045 5.23689400046321e-05 0.01992176526256386 1.2155125752426721e-05 1.691011955548506e-05 1.0317591186145634e-08 0.13281176841709239 8.10341716828448e-05 0.17227455069172806 9.64833812505217e-05']
['59907.074894997226 0.3049873060057924 5.236661166459565e-05 0.019900767662043194 1.2157364886955492e-05 1.6892296238600084e-05 1.0319491822564308e-08 0.1326717844136213 8.104909924636994e-05 0.1723155215921711 9.649465532286485e-05']
['59907.075035277434 0.30493554807647716 5.235746536856528e-05 0.01989472931739962 1.2150298652233595e-05 1.688717073247679e-05 1.031349381624411e-08 0.13263152878266413 8.100199101489064e-05 0.17230401929381303 9.645012559969498e-05']
['59907.07517555764 0.3049004047497036 5.236008994632872e-05 0.019884021856668682 1.215004254990512e-05 1.6878081957525907e-05 1.0313276429836034e-08 0.13256014571112457 8.100028366603413e-05 0.17234025903857902 9.645011650156587e-05']
['59907.07531583785 0.3050359291906275 5.236286833645378e-05 0.01989290907945854 1.2149973449039157e-05 1.6885625666525186e-05 1.0313217775199288e-08 0.13261939386305696 8.099982299359439e-05 0.17241653532757054 9.645123796724652e-05']
['59907.07545611806 0.30507117116981936 5.236766421481382e-05 0.019892495113935135 1.2150605012918942e-05 1.6885274281675482e-05 1.0313753863270466e-08 0.13261663409290092 8.100403341945961e-05 0.17245453707691843 9.645737755888048e-05']
['59907.07559639827 0.30499020338406835 5.236025231166379e-05 0.019930630072224453 1.2154475231266756e-05 1.6917644239629337e-05 1.0317039006635264e-08 0.132870867148163 8.102983487511171e-05 0.17211933623590533 9.647502351401094e-05']
['59907.075736678475 0.30527723571186666 5.242297725634178e-05 0.019916045835050206 1.2153899636542434e-05 1.6905264754629307e-05 1.0316550426658765e-08 0.13277363890033472 8.102599757694956e-05 0.17250359681153193 9.650585903331861e-05']
['59907.07587695868 0.3050745453121375 5.236451535245837e-05 0.019919855267625998 1.215418982865006e-05 1.6908498301428306e-05 1.0316796749370098e-08 0.13279903511750665 8.10279321910004e-05 0.17227551019463086 9.647573924695891e-05']
['59907.07601723889 0.30510352745683045 5.237797683746251e-05 0.019888313975289035 1.2151248323149305e-05 1.6881725220964658e-05 1.0314299921953686e-08 0.13258875983526025 8.10083221543287e-05 0.1725147676215702 9.646657823228343e-05']
['59907.0761575191 0.3050164483401376 5.236954806341959e-05 0.019909375078248345 1.2152284651805118e-05 1.689960244039368e-05 1.0315179585037636e-08 0.1327291671883223 8.101523101203412e-05 0.17228728115181527 9.646780406073349e-05']
['59907.07629779931 0.30503062029701594 5.236339952666731e-05 0.01990943990946757 1.2152353961597129e-05 1.6899657470841715e-05 1.031523841701632e-08 0.1327295993964505 8.101569307731419e-05 0.17230102090056545 9.646485440193727e-05']
['59907.076438079515 0.3050655920972869 5.236500965005862e-05 0.01991350704718333 1.2152619236928613e-05 1.690310976455744e-05 1.0315463589711179e-08 0.13275671364788888 8.101746157952409e-05 0.17230887844939802 9.646721368651836e-05']
['59907.07657835972 0.30505165469258333 5.2366088029667e-05 0.01990098989386619 1.2150837883456855e-05 1.6892484874830174e-05 1.031395152992225e-08 0.13267326595910792 8.100558588971237e-05 0.1723783887334754 9.645782560718649e-05']
['59907.07671863993 0.3049309456310746 5.2363009160322627e-05 0.01990800765263851 1.2152211276476374e-05 1.6898441733486395e-05 1.0315117302124193e-08 0.13272005101759007 8.101474184317583e-05 0.17221089461348452 9.646384361117099e-05']
['59907.07685892014 0.3050597864084422 5.236639699886216e-05 0.019895016258016256 1.2151910886184323e-05 1.6887414295236853e-05 1.0314862322925063e-08 0.13263344172010838 8.101273924122882e-05 0.17242634468833384 9.646400081900904e-05']
['59907.07699920035 0.30507645984828546 5.2364960975731196e-05 0.01991602119800267 1.2152042737446452e-05 1.6905243842053847e-05 1.0314974241752375e-08 0.13277347465335113 8.101361824964303e-05 0.17230298519493434 9.646395948689201e-05']
['59907.077139480556 0.30500432951253087 5.23623555825801e-05 0.01990053793878713 1.2152171519908365e-05 1.6892101243444106e-05 1.0315083555701158e-08 0.13267025292524753 8.10144767993891e-05 0.17233407658728334 9.646326623764775e-05']
['59907.077279760764 0.30535032899676146 5.24541612571189e-05 0.019882121136828364 1.2149875850564013e-05 1.6876468576416467e-05 1.031313493104058e-08 0.13254747424552243 8.099917233709341e-05 0.17280285475123902 9.650028472746592e-05']
['59907.07742004097 0.30503186388693626 5.2362365864236806e-05 0.01990260754845593 1.215037825943404e-05 1.6893857982692426e-05 1.0313561388934543e-08 0.13268405032303954 8.100252172956027e-05 0.17234781356389672 9.64532315967074e-05']
['59907.07756032118 0.3049846667279096 5.236147763831434e-05 0.019896754320250946 1.2152536930989873e-05 1.6888889608282464e-05 1.0315393726260533e-08 0.13264502880167298 8.101691287326583e-05 0.1723396379262366 9.646483562408656e-05']
['59907.07770060139 0.305056705913525 5.236458035090371e-05 0.019909573670446698 1.2152620075257426e-05 1.6899771010687158e-05 1.0315464301306777e-08 0.13273049113631133 8.101746716838285e-05 0.1723262147772137 9.646698534579715e-05']
['59907.0778408816 0.3051014121163922 5.236687087368654e-05 0.01989317160256334 1.214956584289257e-05 1.6885848503057477e-05 1.031287178835628e-08 0.13262114401708894 8.09971056192838e-05 0.17248026809930325 9.645112899185149e-05']
['59907.077981161805 0.30495644204419947 5.236578989705488e-05 0.019887709969643758 1.2149021810705462e-05 1.688121252504945e-05 1.0312409999493456e-08 0.13258473313095837 8.099347873803641e-05 0.1723717089132411 9.644749633676995e-05']
['59907.07812144201 0.3049963970872299 5.236103638750337e-05 0.019890428300221287 1.2149990850780004e-05 1.688351991570743e-05 1.0313232546255684e-08 0.1326028553348086 8.099993900520004e-05 0.17239354175242133 9.645034085175428e-05']
['59907.07826172222 0.30503039071902105 5.2370837317725194e-05 0.019892661293309542 1.2149654981926362e-05 1.6885415339109492e-05 1.031294745191815e-08 0.13261774195539697 8.099769987950908e-05 0.17241264876362408 9.645378161135345e-05']
['59907.07840200243 0.3050507935065153 5.2362748566382374e-05 0.01990812676424146 1.215166443552086e-05 1.6898542838555136e-05 1.03146531291047e-08 0.13272084509494306 8.101109623680574e-05 0.17232994841157226 9.646064042351772e-05']
['59907.07854228264 0.3049966993024555 5.237280485566187e-05 0.019913892520110096 1.2153640728031167e-05 1.690343696413996e-05 1.0316330658288757e-08 0.13275928346740065 8.102427152020778e-05 0.17223741583505484 9.64771644682284e-05']
['59907.078682562846 0.3050413958879745 5.23637469784037e-05 0.019896719621123958 1.2151680437415028e-05 1.68888601547487e-05 1.031466671193433e-08 0.13264479747415972 8.10112029161002e-05 0.1723965984138148 9.646127199830947e-05']
['59907.078822843054 0.30503088871237566 5.237082398896219e-05 0.019887857741071865 1.2150171986167643e-05 1.688133795733335e-05 1.0313386298748013e-08 0.13258571827381244 8.100114657445096e-05 0.17244517043856322 9.645666877753215e-05']
['59907.07896312326 0.3050096558625013 5.236039716744317e-05 0.01991546895873146 1.215382718407126e-05 1.6904775086801673e-05 1.0316488927091158e-08 0.13276979305820974 8.102551456047507e-05 0.17223986280429154 9.647147351068164e-05']
['59907.07910340347 0.30504688529306756 5.2372489887846475e-05 0.01990589856425979 1.2151438305555405e-05 1.689665148366831e-05 1.031446118402852e-08 0.13270599042839862 8.10095887037027e-05 0.17234089486466894 9.646466274753496e-05']
['59907.07924368368 0.30503806896191077 5.2363495861561406e-05 0.019900788877496533 1.2151707216168051e-05 1.6892314246836184e-05 1.0314689442445869e-08 0.1326719258499769 8.101138144112035e-05 0.17236614311193388 9.64612856115989e-05']
['59907.079383963886 0.3049775620297094 5.2360637198190825e-05 0.01990227035200576 1.2152159758750325e-05 1.6893571761455963e-05 1.0315073572520152e-08 0.1326818023467051 8.101439839166884e-05 0.17229575968300428 9.646226762089204e-05']
['59907.079524244095 0.3051426899185525 5.238202703432967e-05 0.01991258083512261 1.2155834941609937e-05 1.6902323571342424e-05 1.0318193164620812e-08 0.1327505389008174 8.10388996107329e-05 0.17239215101773508 9.649445583215489e-05']
['59907.0796645243 0.30491878438160935 5.2353815516082126e-05 0.019879748120201532 1.2148569741316443e-05 1.6874454297343405e-05 1.0312026271078082e-08 0.13253165413467688 8.099046494210963e-05 0.17238713024693247 9.64384643730449e-05']
['59907.07980480451 0.3050294822768991 5.236323849999633e-05 0.019911042951984422 1.2153258522154397e-05 1.6901018175591277e-05 1.03160062318644e-08 0.13274028634656282 8.102172348102931e-05 0.17228919593033626 9.646983166795656e-05']
['59907.07994508472 0.30495015950292625 5.23606603531363e-05 0.019891307856899687 1.2151729542588071e-05 1.688426650660395e-05 1.0314708393699775e-08 0.1326087190459979 8.101153028392048e-05 0.17234144045692834 9.645987140546614e-05']
['59907.08008536493 0.305051756193394 5.23645299377156e-05 0.01989708861385755 1.2152076791919401e-05 1.6889173365508785e-05 1.0315003148086798e-08 0.132647257425717 8.101384527946268e-05 0.17240449876767697 9.646391616849604e-05']
['59907.08022564514 0.3050487562312109 5.236455046260591e-05 0.019912440243229138 1.2153749175707931e-05 1.69022042332368e-05 1.0316422711535816e-08 0.13274960162152757 8.102499450471953e-05 0.17229915460968334 9.647329101694743e-05']
['59907.08036592535 0.3050015745617153 5.2362943591902196e-05 0.019863426583604078 1.2147651655849603e-05 1.6860600146792256e-05 1.0311246975930197e-08 0.13242284389069384 8.09843443723307e-05 0.17257873067102145 9.643828023676584e-05']
['59907.08050620556 0.3051124229989972 5.237545004085735e-05 0.01992942441957731 1.2155036875445856e-05 1.6916620849877634e-05 1.0317515745021197e-08 0.13286282946384875 8.103357916963904e-05 0.17224959353514846 9.648641728256108e-05']
['59907.08064648577 0.30495831290129366 5.236532452671151e-05 0.019896557392120862 1.2152028388174893e-05 1.6888722450494002e-05 1.0314962061712383e-08 0.13264371594747243 8.101352258783262e-05 0.17231459695382123 9.6464076499374e-05']
['59907.080786765975 0.3050317514059866 5.2364056847650755e-05 0.019896543271460183 1.2150917561933074e-05 1.6888710464504954e-05 1.031401916311344e-08 0.13264362180973457 8.100611707955383e-05 0.17238812959625202 9.645716901221175e-05']
['59907.08092704618 0.3050507425712772 5.236283127257736e-05 0.01991400621317096 1.215174418550757e-05 1.690353346980733e-05 1.031472082299588e-08 0.13276004142113976 8.10116279033838e-05 0.17229070115013742 9.646113183265433e-05']
['59907.08106732639 0.30503451597153053 5.237274348055444e-05 0.019895084584927995 1.2151592841281558e-05 1.688747229292085e-05 1.031459235802693e-08 0.1326338972328533 8.101061894187705e-05 0.17240061873867724 9.646566560712659e-05']
['59907.0812076066 0.305032819639974 5.236310582472126e-05 0.01990768892563838 1.2152234757850239e-05 1.6898171189606036e-05 1.0315137233733372e-08 0.13271792617092254 8.101489838566826e-05 0.17231489346905143 9.646402755458176e-05']
['59907.08134788681 0.30506591718829335 5.2365284426527406e-05 0.019895164817470692 1.2151020876849892e-05 1.6887540396418273e-05 1.0314106859538543e-08 0.13263443211647127 8.100680584566594e-05 0.17243148507182207 9.645841387037489e-05']
['59907.081488167016 0.3050870726707842 5.237229357010043e-05 0.0199038716097414 1.2152561695380293e-05 1.689493095123618e-05 1.0315414746927988e-08 0.132692477398276 8.101707796920195e-05 0.17239459527250822 9.647084562944668e-05']
['59907.081628447224 0.30507779451963185 5.2373555981739714e-05 0.019910454520899373 1.2153311421570547e-05 1.6900518699773387e-05 1.0316051134283425e-08 0.1327363634726625 8.102207614380365e-05 0.17234143104696936 9.64757284959525e-05']
['59907.08176872743 0.3049922981839695 5.2364385679012865e-05 0.019898755328215154 1.216169773615052e-05 1.689058811659537e-05 1.0323169659188631e-08 0.1326583688547677 8.107798490767013e-05 0.1723339293292018 9.651771093550029e-05']
['59907.08190900764 0.3050482947132481 5.2370007333344674e-05 0.01990628728575784 1.2153102909024645e-05 1.689698144072378e-05 1.0315874143337414e-08 0.13270858190505228 8.10206860601643e-05 0.17233971280819585 9.64726346574731e-05']
['59907.08204928785 0.3049807071517371 5.2358968613996386e-05 0.01990728460194758 1.2154009885210476e-05 1.6897827988998034e-05 1.0316644008634703e-08 0.13271523067965052 8.102673256806985e-05 0.17226547647208656 9.647172116728803e-05']
['59907.08218956806 0.3051144505758555 5.2369027389012526e-05 0.019894761313725327 1.214986534947812e-05 1.6887197891801578e-05 1.0313126017442033e-08 0.1326317420915022 8.099910232985413e-05 0.17248270848435332 9.645397663089545e-05']
['59907.082329848265 0.3050952071996702 5.236986327596563e-05 0.019898227856554485 1.2154006610670667e-05 1.6890140384743976e-05 1.0316641229118986e-08 0.1326548523770299 8.102671073780446e-05 0.1724403548226403 9.647761622537722e-05']
['59907.08247012847 0.3050558313096216 5.2373363889118505e-05 0.019872526814787444 1.2148397837916286e-05 1.686832466293152e-05 1.0311880354940112e-08 0.13248351209858297 8.098931891944191e-05 0.17257231921103863 9.644811571045384e-05']
['59907.08261040868 0.30505031219524403 5.2362987789069274e-05 0.01990654101895315 1.2152128139345377e-05 1.6897196816149168e-05 1.0315046733135644e-08 0.13271027345968767 8.101418759563584e-05 0.17234003873555637 9.646336652833081e-05']
['59907.08275068889 0.3050585361271346 5.2363386885176246e-05 0.01990894112090666 1.2152642495666382e-05 1.689923408596157e-05 1.031548333234097e-08 0.13272627413937774 8.101761663777588e-05 0.1723322619877569 9.646646304157868e-05']
['59907.0828909691 0.30495533057811985 5.2360510979341176e-05 0.01988952994531367 1.2149988817336544e-05 1.6882757368378375e-05 1.0313230820215267e-08 0.13259686630209114 8.09999254489103e-05 0.17235846427602872 9.645004423403202e-05']
['59907.083031249305 0.30541325471293834 5.244320752998153e-05 0.01990006380180969 1.2151552851478287e-05 1.6891698783477908e-05 1.0314558413627655e-08 0.1326670920120646 8.101035234318859e-05 0.17274616270087373 9.650371600513772e-05']
['59907.08317152951 0.3049966020265775 5.2371870214120155e-05 0.019901928030575812 1.2151886949117193e-05 1.6893281190001546e-05 1.0314842004511427e-08 0.13267952020383875 8.101257966078129e-05 0.17231708182273878 9.646683810003872e-05']
['59907.08331180972 0.30504958681611277 5.237161408237569e-05 0.019904153194575468 1.2152552275467034e-05 1.6895169967866804e-05 1.0315406751057276e-08 0.13269435463050314 8.101701516978024e-05 0.17235523218560964 9.64704240097124e-05']
['59907.08345208993 0.304982778075778 5.2360224749173394e-05 0.019901054382404998 1.2151931635929866e-05 1.6892539614402038e-05 1.0314879935856109e-08 0.1326736958827 8.101287757286577e-05 0.172309082193078 9.646076647228181e-05']
['59907.08359237014 0.3049887481978426 5.23599990796823e-05 0.019906715534075733 1.2152781975773774e-05 1.6897344949185987e-05 1.0315601726733261e-08 0.13271143689383824 8.10185465051585e-05 0.17227731130400437 9.646540510168846e-05']
['59907.083732650346 0.3049993131802021 5.235964074203105e-05 0.019890932331312967 1.2150077807032097e-05 1.68839477505859e-05 1.03133063570149e-08 0.13260621554208646 8.100051871354731e-05 0.17239309763811567 9.645007003884594e-05']
['59907.083872930554 0.3049820030209296 5.235991289216636e-05 0.019895648429406176 1.2150817401415136e-05 1.688795089897865e-05 1.0313934144225267e-08 0.13263765619604118 8.100544934276757e-05 0.17234434682488842 9.645435864334454e-05']
['59907.08401321076 0.30501635364316176 5.2374201166640356e-05 0.019897702983721868 1.2159489926879861e-05 1.6889694858846345e-05 1.0321295612474875e-08 0.13265135322481245 8.106326617919908e-05 0.17236500041834932 9.651067335524809e-05']
['59907.08415349097 0.3050317576911236 5.236261475656981e-05 0.0198905625288354 1.2150993696791071e-05 1.688363385249378e-05 1.0314083788388064e-08 0.132603750192236 8.100662464527381e-05 0.17242800749888762 9.645681241138557e-05']
['59907.08429377118 0.3049229969039695 5.235718326159621e-05 0.01987667441706177 1.2149719925380624e-05 1.6871845257085856e-05 1.0313002577634241e-08 0.1325111627804118 8.099813283587083e-05 0.1724118341235577 9.644673225146483e-05']
['59907.08443405139 0.3050180578346958 5.2362442077983633e-05 0.019926781107586368 1.2155591952722516e-05 1.6914377136973673e-05 1.0317986909247217e-08 0.13284520738390912 8.103727968481679e-05 0.1721728504507867 9.648246493060492e-05']
['59907.084574331595 0.3051313808316237 5.237042478450617e-05 0.019926578234320223 1.2155916929089627e-05 1.691420493279699e-05 1.0318262757755022e-08 0.13284385489546816 8.103944619393084e-05 0.17228752593615557 9.648861710859281e-05']
['59907.0847146118 0.3051007150635746 5.236711174472795e-05 0.01991562064492587 1.2152503516400474e-05 1.690490384204242e-05 1.0315365363076136e-08 0.13277080429950583 8.10166901093365e-05 0.17232991076406878 9.646770687000435e-05']
['59907.08485489201 0.30497229193974135 5.236145398471991e-05 0.01989617919756646 1.2152323505496993e-05 1.6888401428985825e-05 1.0315212565075606e-08 0.13264119465044308 8.101549003664662e-05 0.17233109728929827 9.646362780484636e-05']
['59907.08499517222 0.30505472846596293 5.23665626962575e-05 0.019878294206943592 1.2149308180954655e-05 1.6873220177440322e-05 1.0312653078110595e-08 0.13252196137962396 8.099538787303104e-05 0.17253276708633897 9.644951915548264e-05']
['59907.08513545243 0.30501595893429023 5.236437193690577e-05 0.01988375327921282 1.2150518073996535e-05 1.687785398190082e-05 1.0313680067221143e-08 0.13255835519475215 8.100345382664357e-05 0.17245760373953808 9.645510344295827e-05']
['59907.085275732636 0.3049927754671431 5.236185478819075e-05 0.019906806825563443 1.2153351839571489e-05 1.6897422439807487e-05 1.031608544214817e-08 0.13271204550375632 8.102234559714325e-05 0.17228072996338678 9.646960310337394e-05']
['59907.085416012844 0.3050664316138275 5.236787966120988e-05 0.019909748406053522 1.21519521817918e-05 1.689991933087681e-05 1.0314897375725373e-08 0.1327316560403568 8.101301454527867e-05 0.1723347755734707 9.646503690936159e-05']
['59907.08555629305 0.3050452013482914 5.2363634893941416e-05 0.019907153875448915 1.2151808087384264e-05 1.6897717024899607e-05 1.0314775064593473e-08 0.13271435916965946 8.10120539158951e-05 0.17233084217863193 9.64619258514876e-05']
['59907.08569657327 0.3050137770968758 5.236260364834608e-05 0.019881358037962607 1.214865859667771e-05 1.687582083798152e-05 1.0312101693851233e-08 0.13254238691975073 8.099105731118474e-05 0.1724713901771251 9.644373294941148e-05']
['59907.085836853475 0.3051152589795134 5.2370831184067905e-05 0.019900207530125228 1.215063820938882e-05 1.689182078386127e-05 1.0313782041309263e-08 0.13266805020083486 8.10042547292588e-05 0.17244720877867856 9.645928282520448e-05']
['59907.08597713368 0.305079068987441 5.237343440740936e-05 0.01991752809487405 1.2154206740581967e-05 1.690652293584483e-05 1.0316811104663753e-08 0.13278352063249366 8.102804493721311e-05 0.17229554835494737 9.648067525662451e-05']
['59907.08611741389 0.30504075176840706 5.2364241157566134e-05 0.019893296768560026 1.215180319185673e-05 1.6885954747255236e-05 1.031477090914064e-08 0.13262197845706686 8.101202127904487e-05 0.1724187733113402 9.64622275490472e-05']
['59907.0862576941 0.3050741748864601 5.236639912700205e-05 0.01988355723695304 1.214871931516811e-05 1.6877687576062426e-05 1.0312153233306615e-08 0.1325570482463536 8.099146210112074e-05 0.17251712664010652 9.644613362289728e-05']
['59907.08639797431 0.3050743195179994 5.237292127636556e-05 0.019910132203220268 1.2152119433329315e-05 1.690024510803005e-05 1.0315039343239695e-08 0.13273421468813512 8.101412955552877e-05 0.17234010482986428 9.646871031925525e-05']
['59907.086538254516 0.30501112900640637 5.2362953158501004e-05 0.01990149181986047 1.215246595934745e-05 1.6892910922846475e-05 1.0315333483659406e-08 0.13267661213240314 8.1016439728983e-05 0.17233451687400322 9.646523917888405e-05']
['59907.086678534724 0.3049722958453313 5.235906479993678e-05 0.01988606968749463 1.215001256006514e-05 1.6879820210318256e-05 1.0313250973669233e-08 0.13257379791663088 8.100008373376762e-05 0.17239849792870043 9.644939207481478e-05']
['59907.08681881493 0.3049074149244043 5.2357279541074906e-05 0.019879477936217187 1.2149101306813819e-05 1.687422495805459e-05 1.0312477477885998e-08 0.1325298529081146 8.099400871209213e-05 0.17237756201628973 9.644332101393397e-05']
['59907.08695909514 0.30499487058839336 5.2365049130439054e-05 0.019901380622306168 1.2151757865478487e-05 1.6892816535430863e-05 1.0314732434915842e-08 0.13267587081537446 8.101171910318992e-05 0.1723189997730189 9.646241238164969e-05']
['59907.08709937535 0.3050370737356437 5.2364608984669295e-05 0.019888793893379636 1.215072794099239e-05 1.6882132588092115e-05 1.0313858207859981e-08 0.1325919592891976 8.100485293994927e-05 0.1724451144464461 9.645640711710195e-05']
['59907.08723965556 0.3051016121961191 5.237256207563723e-05 0.01990588701172772 1.2151133090949344e-05 1.689664167757453e-05 1.0314202109824476e-08 0.13270591341151813 8.10075539396623e-05 0.17239569878460095 9.646299318212022e-05']
['59907.087379935765 0.30502214544080863 5.2363700381209775e-05 0.01990793380871645 1.2154016434666002e-05 1.6898379052818593e-05 1.0316649567985217e-08 0.13271955872477634 8.102677623110667e-05 0.1723025867160323 9.647432603557768e-05']
['59907.08752021597 0.305051025054841 5.2364043293115114e-05 0.019890238892249112 1.215033697876922e-05 1.688335914122726e-05 1.0313526348817957e-08 0.1326015926149941 8.100224652512813e-05 0.1724494324398469 9.64539111292065e-05']
['59907.08766049618 0.30506343028962446 5.236597611129812e-05 0.019915205669016025 1.2153882542172237e-05 1.6904551599550063e-05 1.031653591650668e-08 0.13276803779344015 8.102588361448158e-05 0.1722953924961843 9.647481158103684e-05']
['59907.08780077639 0.304965194176385 5.236020855902635e-05 0.01990109704236824 1.2152415870574661e-05 1.689257582530349e-05 1.0315290966988565e-08 0.13267398028245495 8.101610580383108e-05 0.17229121389393007 9.64634689401241e-05']
['59907.0879410566 0.30500964700181776 5.236478269827524e-05 0.019897529640950685 1.2152183803035627e-05 1.6889547720932306e-05 1.03150939819434e-08 0.13265019760633792 8.101455868690419e-05 0.17235944939547984 9.646465252242101e-05']
['59907.088081336806 0.3049066826058149 5.235636392151389e-05 0.019901125463949083 1.2151861335530343e-05 1.689259995029059e-05 1.0314820263023654e-08 0.13267416975966054 8.101240890353563e-05 0.17223251284615435 9.645827719504252e-05']
['59907.088221617014 0.3050280970878901 5.236271344637991e-05 0.019904627308592757 1.215262023795968e-05 1.689557240834382e-05 1.031546443941274e-08 0.1326975153906184 8.101746825306455e-05 0.1723305816972717 9.646597286921445e-05']
['59907.08836189722 0.30499833860416836 5.2362207702357854e-05 0.01990540335354153 1.2153179412493914e-05 1.6896231135755333e-05 1.0315939081499002e-08 0.1327026890236102 8.102119608329276e-05 0.17229564958055815 9.646882921561884e-05']
['59907.08850217743 0.3049824635288634 5.236245675347988e-05 0.019901097391868468 1.2162154768968825e-05 1.6892576121968495e-05 1.0323557600693637e-08 0.13267398261245644 8.108103179312551e-05 0.17230848091640694 9.651922396029654e-05']
['59907.08864245764 0.304977343141867 5.236062292139189e-05 0.019891709772030523 1.214963606666939e-05 1.6884607662762756e-05 1.0312931396149366e-08 0.1326113984802035 8.099757377779594e-05 0.17236594466166347 9.644813005240531e-05']
['59907.08878273785 0.30499394191814505 5.236247259832225e-05 0.019892309884155683 1.2151454760580885e-05 1.688511705375544e-05 1.0314475151487955e-08 0.13261539922770457 8.100969840387257e-05 0.17237854269044048 9.645931666820184e-05']
['59907.088923018055 0.30498832724357783 5.2361493361135164e-05 0.01988579502082019 1.2150374699867222e-05 1.6879587066003912e-05 1.0313558367480387e-08 0.13257196680546796 8.100249799911481e-05 0.17241636043810987 9.645273800729973e-05']
['59907.08906329826 0.30502664482217945 5.237514256853554e-05 0.019898735998918657 1.2152059042485388e-05 1.6890571709378924e-05 1.0314988081899276e-08 0.13265823999279105 8.10137269499026e-05 0.1723684048293884 9.646957817564975e-05']
['59907.08920357847 0.30508933285919804 5.23753713888961e-05 0.019907812376621103 1.2152743382918356e-05 1.6898275978054726e-05 1.0315568968100153e-08 0.132718749177474 8.10182892194557e-05 0.17237058368172403 9.64735337601571e-05']
['59907.08934385868 0.30509029023948325 5.236653005560971e-05 0.019905207560200033 1.2152019021702753e-05 1.689606494120534e-05 1.03149541112039e-08 0.1327013837346669 8.101346014468501e-05 0.17238890650481636 9.646467848222758e-05']
['59907.08948413889 0.3051031102267508 5.2367329967880177e-05 0.01993286333456571 1.2156009736648083e-05 1.6919539891580442e-05 1.0318341535257341e-08 0.1328857555637714 8.104006491098723e-05 0.17221735466297938 9.648745705397083e-05']
['59907.089624419095 0.3049838029303027 5.236164302065106e-05 0.019895344833696565 1.2150524939891826e-05 1.6887693198936592e-05 1.0313685895174073e-08 0.13263563222464378 8.100349959927884e-05 0.17234817070565892 9.645366041344654e-05']
['59907.0897646993 0.30499052371433766 5.236019491879064e-05 0.019913236645460665 1.2154041648879313e-05 1.6902880240446598e-05 1.0316670970474202e-08 0.13275491096973777 8.102694432586209e-05 0.1722356127445999 9.647256459076904e-05']
['59907.08990497951 0.3049867781075137 5.235999844352234e-05 0.019904695313101677 1.2151613292436654e-05 1.6895630132363806e-05 1.0314609717506531e-08 0.1326979687540112 8.101075528291103e-05 0.1722888093535025 9.645886122339077e-05']
['59907.09004525972 0.3050971412409198 5.236870024898762e-05 0.019897135319869703 1.2151401740040942e-05 1.6889213010803217e-05 1.0314430146255862e-08 0.13264756879913134 8.100934493360628e-05 0.17244957244178846 9.646240061464527e-05']
['59907.09018553993 0.3050876991298559 5.236632569090517e-05 0.01991952672761628 1.215328431126234e-05 1.6908219428006704e-05 1.0316028122339106e-08 0.1327968448507752 8.102189540841561e-05 0.1722908542790807 9.647165180475658e-05']
['59907.090325820136 0.3050000254462206 5.2371402767157907e-05 0.019893766587284322 1.2151920232089283e-05 1.688635354177432e-05 1.0314870255975582e-08 0.13262511058189547 8.101280154726189e-05 0.17237491486432516 9.646677066397482e-05']
['59907.090466100344 0.3051045917921412 5.236792206345536e-05 0.019909731222100255 1.215313432360069e-05 1.6899904744684257e-05 1.0315900808857747e-08 0.13273154148066837 8.102089549067126e-05 0.17237305031147285 9.6471678576432e-05']
['59907.09060638055 0.30497004446206255 5.235938680199145e-05 0.019898077113536215 1.2151911645061974e-05 1.6890012430096007e-05 1.0314862967080421e-08 0.13265384742357478 8.101274430041318e-05 0.17231619703848777 9.646019969585738e-05']
['59907.09074666076 0.30510983215341153 5.2367762022347846e-05 0.0199074684127949 1.2152433061124885e-05 1.6897984012491076e-05 1.0315305558780793e-08 0.13271645608529936 8.101622040749923e-05 0.17239337606811217 9.646766540321038e-05']
['59907.09088694097 0.30503460844540947 5.236231721146673e-05 0.019916264652683646 1.2152060573853142e-05 1.6905450492805293e-05 1.0314989381764597e-08 0.13277509768455764 8.101373715902095e-05 0.17225951076085183 9.6462624224231e-05']
['59907.091027221184 0.30508028255680325 5.236722695017215e-05 0.019902858228904863 1.2152922223376283e-05 1.689407076686621e-05 1.031572077259564e-08 0.13268572152603245 8.101948148917522e-05 0.1723945610307708 9.647011371002754e-05']
['59907.09116750139 0.30512023531593074 5.2368598942229937e-05 0.01991135668597943 1.215316356496756e-05 1.690128448127726e-05 1.0315925629700842e-08 0.13274237790652954 8.102109043311707e-05 0.1723778574094012 9.647220972976343e-05']
['59907.0913077816 0.3049625422897223 5.2358528704230626e-05 0.019901017166318778 1.2151704178086107e-05 1.689250802440692e-05 1.031468686364182e-08 0.13267344777545853 8.101136118724072e-05 0.17228909451426377 9.645857229651139e-05']
['59907.09144806181 0.305100342946095 5.236734859830049e-05 0.019879811869731534 1.2148521108555854e-05 1.6874508409625107e-05 1.031198499030878e-08 0.13253207913154355 8.09901407237057e-05 0.17256826381455145 9.644553952185439e-05']
['59907.09158834202 0.30512046881434335 5.236815922077535e-05 0.019909994379935302 1.2152744179524722e-05 1.6900128119992315e-05 1.0315569644280637e-08 0.13273329586623533 8.101829453016481e-05 0.17238717294810801 9.646962293255329e-05']
['59907.091728622225 0.30502654778791843 5.2361576537022566e-05 0.019910341988831494 1.2153630799339805e-05 1.690042317958747e-05 1.0316322230553777e-08 0.13273561325887662 8.102420532893204e-05 0.17229093452904182 9.647101402300803e-05']
['59907.09186890243 0.3051171367025991 5.237053495711169e-05 0.019902173648315657 1.2151587204152313e-05 1.6893489676814385e-05 1.0314587573083013e-08 0.1326811576554377 8.101058136101541e-05 0.1724359790471614 9.646443502215598e-05']
['59907.09200918264 0.3050735200084359 5.23639322468063e-05 0.019905206368883134 1.2151387056018286e-05 1.689606392998415e-05 1.0314417682070316e-08 0.13270137579255423 8.100924704012192e-05 0.17237214421588168 9.645972997243784e-05']
['59907.09214946285 0.3050376056342885 5.236966688468971e-05 0.019921290218044337 1.2154506983941125e-05 1.6909716325173216e-05 1.031706595914237e-08 0.13280860145362894 8.10300465596075e-05 0.17222900418065956 9.648031123014438e-05']
['59907.09228974306 0.30503236551792684 5.236721009641522e-05 0.019889557606410944 1.2149725749098012e-05 1.6882780847846975e-05 1.0313007520959091e-08 0.1325970507094063 8.099817166065341e-05 0.17243531480852053 9.645220840214479e-05']
['59907.092430023265 0.3050298359118701 5.236319955300008e-05 0.01991114493184245 1.2153038494480888e-05 1.6901104738783283e-05 1.0315819466574503e-08 0.132740966212283 8.102025662987259e-05 0.1722888696995871 9.646857857249541e-05']
['59907.09257030347 0.3050222753837507 5.2364426285430805e-05 0.01991474755806938 1.2152963682107966e-05 1.69041627429013e-05 1.0315755963860077e-08 0.13276498372046253 8.101975788071977e-05 0.17225729166328818 9.64688255720612e-05']
['59907.09271058368 0.3050500953613656 5.238932814424345e-05 0.019901439235654437 1.2151744129161738e-05 1.6892866287986105e-05 1.0314720775168052e-08 0.13267626157102957 8.101162752774492e-05 0.17237383379033605 9.647551760990607e-05']
['59907.09285086389 0.305063184202432 5.236587006468507e-05 0.019893665141783007 1.2150613025302212e-05 1.6886267432158382e-05 1.0313760664392618e-08 0.1326244342785534 8.100408683534809e-05 0.17243874992387861 9.645644836743727e-05']
['59907.0929911441 0.304959823519129 5.235889469449538e-05 0.01989534769958795 1.2151052102320008e-05 1.6887695631580753e-05 1.0314133364540779e-08 0.13263565133058633 8.100701401546672e-05 0.17232417218854265 9.645511999542211e-05']
['59907.093131424306 0.30506628050812357 5.236771571132696e-05 0.019880855926159152 1.2150232229336014e-05 1.6875394632245495e-05 1.0313437434737526e-08 0.1325390395077277 8.100154819557343e-05 0.17252724100039588 9.645531845835234e-05']
['59907.093271704514 0.3049786757249083 5.2356938974810596e-05 0.019902729221855816 1.2151260317016103e-05 1.6893961262281947e-05 1.0314310102664021e-08 0.1326848614790388 8.100840211344068e-05 0.17229381424586948 9.645522418088582e-05']
['59907.09341198472 0.3051165002812569 5.2369510973641945e-05 0.0198989362789978 1.2151464735121572e-05 1.6890741712390114e-05 1.0314483618141051e-08 0.13265957519331867 8.100976490081049e-05 0.17245692508793825 9.646319344134835e-05']
['59907.09355226493 0.30488850956893576 5.235501197949821e-05 0.019897086431884377 1.2152779316495759e-05 1.688917151339243e-05 1.0315599469467975e-08 0.1326472428792292 8.10185287766384e-05 0.17224126668970657 9.646268337810423e-05']
['59907.09369254514 0.30527034154491645 5.2376154566504955e-05 0.019983770808251252 1.2172727348427127e-05 1.696275149732644e-05 1.0332531884864413e-08 0.13322513872167502 8.115151565618085e-05 0.17204520282324143 9.658586884461817e-05']
['59907.09383282535 0.3049879481618643 5.236157226817234e-05 0.019892099728429376 1.2150867767132675e-05 1.6884938668034583e-05 1.0313976895974113e-08 0.13261399818952918 8.100578511421783e-05 0.17237394997233513 9.645554142902246e-05']
['59907.093973105555 0.30498273555566047 5.236979634653346e-05 0.01987547560698146 1.2148283785080824e-05 1.6870827675485274e-05 1.0311783543886579e-08 0.13250317071320974 8.09885585672055e-05 0.17247956484245072 9.644554001181737e-05']
['59907.09411338576 0.30502449129511117 5.236442389989753e-05 0.01987906926675973 1.2148712561560129e-05 1.6873878068645286e-05 1.0312147500666114e-08 0.1325271284450649 8.099141707706753e-05 0.17249736285004627 9.644502335797148e-05']
['59907.09425366597 0.30511533343886876 5.236651269200771e-05 0.01992860948933253 1.215443681316654e-05 1.691592911560173e-05 1.0317006396338979e-08 0.1328573965955502 8.102957875444361e-05 0.17225793684331855 9.647820626776176e-05']
['59907.09439394618 0.3051675507822344 5.2371171691805884e-05 0.0199285976224789 1.2154849317695966e-05 1.6915919042703522e-05 1.0317356541058478e-08 0.13285731748319268 8.103232878463978e-05 0.17231023329904172 9.648304479355205e-05']
['59907.09453422639 0.3049700675868436 5.2364386139951084e-05 0.019899341162496403 1.2152485768035097e-05 1.6891085388177734e-05 1.0315350297795702e-08 0.1326622744166427 8.101657178690066e-05 0.1723077931702009 9.646612794093028e-05']
['59907.094674506596 0.3050416951158139 5.237075829981614e-05 0.01989521319367659 1.214975276070736e-05 1.688758145941719e-05 1.0313030449125217e-08 0.1326347546245106 8.099835173804907e-05 0.1724069404913033 9.64542861109784e-05']
['59907.094814786804 0.3050886042073056 5.236993407124787e-05 0.01990484058006907 1.2162759633018592e-05 1.6895753438795423e-05 1.0324071025245205e-08 0.13269893720046047 8.108506422012394e-05 0.17238966700684513 9.652666799495605e-05']
['59907.09495506701 0.3050705417862387 5.237079037166399e-05 0.01990570372150086 1.2151304508618424e-05 1.689648609599786e-05 1.0314347613661102e-08 0.1327046914766724 8.100869672412283e-05 0.1723658503095663 9.646299098148307e-05']
['59907.09509534722 0.3050340400917593 5.2364970668120435e-05 0.019911244042478286 1.2153319571855636e-05 1.690118886650385e-05 1.0316058052460276e-08 0.13274162694985525 8.102213047903758e-05 0.17229241314190402 9.647111370993549e-05']
['59907.09523562743 0.30517081852634753 5.238207327943288e-05 0.019918252610769085 1.2202054078852656e-05 1.6907137924037066e-05 1.0357425186794794e-08 0.13278835073846057 8.134702719235104e-05 0.17238246778788696 9.675340011640404e-05']
['59907.09537590764 0.3050441655819522 5.236226503116596e-05 0.0199395589567017 1.2157094984543489e-05 1.6925223312167208e-05 1.0319262722281522e-08 0.13293039304467802 8.104729989695659e-05 0.17211377253727417 9.649078515475602e-05']
['59907.095516187845 0.3050836265068141 5.236670811062925e-05 0.019883015681066506 1.2150165901578485e-05 1.6877227889148813e-05 1.0313381133988325e-08 0.1325534378737767 8.100110601052323e-05 0.17253018863303737 9.645440007211629e-05']
['59907.09565646805 0.304980785245475 5.2360540952993676e-05 0.019901453262850855 1.2152361775780408e-05 1.6892878194640228e-05 1.0315245049901094e-08 0.13267635508567238 8.101574517186938e-05 0.17230443015980262 9.646334648271023e-05']
['59907.09579674826 0.30498356662485493 5.236204740699046e-05 0.01990596630012153 1.2151830785906086e-05 1.6896708979653484e-05 1.03147943316972e-08 0.1327064420008102 8.10122052393739e-05 0.17227712462404474 9.646119119313402e-05']
['59907.09593702847 0.30498558351389443 5.2359893918498446e-05 0.019892872307615 1.2149921803748996e-05 1.6885594453614966e-05 1.0313173937315466e-08 0.13261914871743333 8.099947869165998e-05 0.1723664347964611 9.644933405408815e-05']
['59907.09607730868 0.3050817762682996 5.2364987497277074e-05 0.019897501340303554 1.2150142812665213e-05 1.6889523698596926e-05 1.0313361535510044e-08 0.13265000893535703 8.100095208443476e-05 0.17243176733294255 9.645333666688199e-05']
['59907.096217588885 0.3050479472314978 5.236178434247495e-05 0.019913527586192296 1.215255436277957e-05 1.6903127198609722e-05 1.0315408522823183e-08 0.1327568505746153 8.101702908519713e-05 0.1722910966568825 9.646509970616073e-05']
['59907.0963578691 0.3051173809874646 5.236804352700616e-05 0.019921089892400483 1.2154210066955473e-05 1.6909546283485495e-05 1.0316813928177278e-08 0.13280726594933656 8.102806711303648e-05 0.17231011503812804 9.647776760954389e-05']
['59907.09649814931 0.305072100986175 5.236957163242419e-05 0.01988710344126291 1.2149479587733257e-05 1.6880697687769785e-05 1.0312798572703097e-08 0.1325806896084194 8.099653058488838e-05 0.1724914113777556 9.645211246910234e-05']
['59907.09663842952 0.30513548756085584 5.236953701602019e-05 0.019883431693801447 1.214952978203455e-05 1.687758101172564e-05 1.0312841178949314e-08 0.13255621129200965 8.099686521356367e-05 0.1725792762688462 9.64523746814795e-05']
['59907.096778709725 0.3050200955370943 5.236188001629903e-05 0.01990519612077043 1.2151901838515949e-05 1.689605523111591e-05 1.0314854643025623e-08 0.13270130747180284 8.101267892343966e-05 0.17231878806529147 9.646149814922854e-05']
['59907.09691898993 0.30500551009422844 5.23620487502107e-05 0.019904388252282253 1.2151178541627539e-05 1.6895369491045185e-05 1.0314240689558351e-08 0.13269592168188168 8.10078569441836e-05 0.17230958841234675 9.64575400682018e-05']
['59907.09705927014 0.3050270124048641 5.2363698261457674e-05 0.01990584737508007 1.2152727132996575e-05 1.6896608032943055e-05 1.0315555174738146e-08 0.13270564916720046 8.101818088664383e-05 0.17232136323766362 9.646710594704252e-05']
['59907.09719955035 0.30502295915321737 5.236204218979091e-05 0.019900350098215377 1.2152129561434143e-05 1.6891941799414732e-05 1.031504794024208e-08 0.1326690006547692 8.101419707622762e-05 0.17235395849844817 9.646286119637594e-05']
['59907.09733983056 0.30511536212557144 5.236733846239606e-05 0.019906210378483093 1.2152843883147121e-05 1.6896916159801457e-05 1.0315654275343832e-08 0.13270806918988728 8.101895922098082e-05 0.17240729293568416 9.646973562152069e-05']
['59907.097480110766 0.30504347679142674 5.236543682709187e-05 0.019885128111335627 1.2149448979117536e-05 1.6879020975651573e-05 1.0312772591303134e-08 0.13256752074223752 8.099632652745024e-05 0.17247595604918922 9.644969613759024e-05']
['59907.097620390974 0.3049878228107573 5.236239041135447e-05 0.019911168581778587 1.215473191571824e-05 1.6901124813472562e-05 1.0317256887164696e-08 0.1327411238785239 8.103154610478827e-05 0.1722466989322334 9.647762120680388e-05']
['59907.09776067118 0.3050318905509497 5.2362992084932534e-05 0.0199042032502616 1.2152123834302621e-05 1.6895212456452818e-05 1.0315043078901859e-08 0.13269468833507733 8.101415889535081e-05 0.17233720221587237 9.646334475648175e-05']
['59907.09790095139 0.30509423635996746 5.236745179172222e-05 0.019909367202531607 1.2153183444442224e-05 1.6899595755277683e-05 1.0315942503923023e-08 0.13272911468354406 8.102122296294816e-05 0.1723651216764234 9.647169832427596e-05']
['59907.0980412316 0.3051405640332487 5.237007202603364e-05 0.019893476019159192 1.2149442235575657e-05 1.6886106899889416e-05 1.0312766867207005e-08 0.13262317346106128 8.099628157050439e-05 0.1725173905721874 9.645217505199341e-05']
['59907.09818151181 0.30512758529007034 5.236834821641848e-05 0.019905077079042932 1.215303049937891e-05 1.6895954185359296e-05 1.0315812680121167e-08 0.1327005138602862 8.102020332919274e-05 0.17242707142978414 9.647132860295744e-05']
['59907.098321792015 0.304952830933342 5.2358838077155874e-05 0.019872043441139537 1.2148309157937626e-05 1.686791436263592e-05 1.0311805081036341e-08 0.13248028960759692 8.098872771958418e-05 0.1724725413257451 9.643973217728662e-05']
['59907.09846207222 0.3050597960792255 5.2371535293757125e-05 0.01989919472175073 1.2151180812294803e-05 1.6890961085412168e-05 1.0314242616960588e-08 0.13266129814500485 8.100787208196536e-05 0.17239849793422066 9.646270288703978e-05']
['59907.09860235243 0.3050513328785952 5.2366816212683e-05 0.019910234198823318 1.2152998286391221e-05 1.6900331684586847e-05 1.0315785336887981e-08 0.13273489465882213 8.101998857594148e-05 0.17231643821977308 9.647031662173918e-05']
['59907.09874263264 0.3050895816666318 5.236658203398533e-05 0.019906696328775036 1.2153027391472664e-05 1.689732864722044e-05 1.0315810042048411e-08 0.13271130885850024 8.102018260981776e-05 0.17237827280813156 9.647035246152225e-05']
['59907.09888291285 0.305109464151908 5.237632157523818e-05 0.01991443420894325 1.2154632377935113e-05 1.690389676390217e-05 1.0317172396870247e-08 0.13276289472628836 8.103088251956742e-05 0.17234656942561963 9.648462563358318e-05']
['59907.099023193055 0.305038222206471 5.236331592478377e-05 0.01988804436129187 1.2149058953134495e-05 1.6881496365495987e-05 1.0312441526966412e-08 0.13258696240861248 8.099372635422998e-05 0.1724512597978585 9.644636106864063e-05']
['59907.09916347326 0.30508734883569333 5.2367620436273885e-05 0.01988734425336092 1.2149004226838006e-05 1.6880902095427144e-05 1.0312395073843194e-08 0.13258229502240615 8.099336151225338e-05 0.17250505381328718 9.644839179173604e-05']
['59907.09930375347 0.30507669906223295 5.236728407286499e-05 0.01990519782627542 1.2152825958788426e-05 1.689605667879351e-05 1.0315639060675629e-08 0.13270131884183614 8.101883972525617e-05 0.1723753802203968 9.646960573981261e-05']
['59907.09944403368 0.30508719189113365 5.2368439652511016e-05 0.01988141739306843 1.2148980931372308e-05 1.687587122016013e-05 1.0312375300037768e-08 0.1325427826204562 8.099320620914873e-05 0.17254440927067743 9.644870617938001e-05']
['59907.09958431389 0.30497538041176 5.2363276611314976e-05 0.01989689215298841 1.2164235979637641e-05 1.688900660434373e-05 1.0325324187176612e-08 0.1326459476865894 8.109490653091761e-05 0.17232943272517057 9.653132446377886e-05']
['59907.099724594096 0.30503151974952336 5.236568713244261e-05 0.01990115028011743 1.2152253282935715e-05 1.6892621014908514e-05 1.0315152958314305e-08 0.13267433520078287 8.101502188623811e-05 0.1723571845487405 9.646553249778132e-05']
['59907.099864874304 0.3049981788190873 5.2361782159804185e-05 0.01989466341772175 1.2151078825747774e-05 1.688711479509289e-05 1.0314156048090781e-08 0.13263108945147833 8.100719217165183e-05 0.17236708936760897 9.645683705412343e-05']
['59907.10000515451 0.3050520103885047 5.236543109677554e-05 0.01989574074559561 1.215164992117346e-05 1.688802925939399e-05 1.0314640808943981e-08 0.13263827163730407 8.101099947448973e-05 0.17241373875120064 9.646201537292761e-05']
['59907.10014543472 0.3051069335727571 5.236655922135906e-05 0.019893220081792153 1.2150902565250471e-05 1.6885889653504957e-05 1.0314006433533886e-08 0.13262146721194767 8.10060171016698e-05 0.17248546636080941 9.645844354622422e-05']
['59907.10028571493 0.3050466770518453 5.2363634557980366e-05 0.019917221387977642 1.2152999748687946e-05 1.69062625949454e-05 1.0315786578123992e-08 0.13278147591985096 8.10199983245863e-05 0.17226520113199434 9.646859775407582e-05']
['59907.10042599514 0.3051208205607263 5.23687491989028e-05 0.01992211778235887 1.2154109171420545e-05 1.6910418783580597e-05 1.0316728285387307e-08 0.1328141185490591 8.102739447613697e-05 0.1723067020116672 9.64775857297906e-05']
['59907.100566275345 0.3050643607026571 5.2364379279664074e-05 0.01992116792723831 1.2155429699586895e-05 1.6909612521513088e-05 1.0317849184508196e-08 0.13280778618158873 8.103619799724597e-05 0.17225657452106835 9.648260777566786e-05']
['59907.10070655555 0.3050084402320276 5.2364006104567185e-05 0.019898361887088635 1.2151099154571336e-05 1.689025415339483e-05 1.0314173303732152e-08 0.13265574591392423 8.100732769714224e-05 0.17235269431810338 9.645815816171973e-05']
['59907.10084683576 0.30507901618617106 5.236647635587036e-05 0.019913571030053583 1.2152692266990143e-05 1.69031640749045e-05 1.0315525579552708e-08 0.1327571402003572 8.101794844660095e-05 0.17232187598581386 9.646841875155837e-05']
['59907.10098711597 0.3050410182820033 5.2363226449721164e-05 0.019901811751470728 1.2150632799837528e-05 1.689318248923167e-05 1.0313777449539513e-08 0.13267874500980487 8.100421866558352e-05 0.17236227327219844 9.645512389627857e-05']
['59907.10112739618 0.3050473717286025 5.2364665794500575e-05 0.019898382205337968 1.2151383550388532e-05 1.689027140006052e-05 1.0314414706399359e-08 0.1326558813689198 8.100922366925687e-05 0.17239149035968274 9.646010855926623e-05']
['59907.101267676386 0.3051117752297656 5.23666511239785e-05 0.019903305493061102 1.2152370195408404e-05 1.6894450416473322e-05 1.0315252196703304e-08 0.13268870328707402 8.10158013027227e-05 0.1724230719426916 9.646671037545917e-05']
['59907.101407956594 0.30506868623459377 5.237661632211563e-05 0.019888783977837346 1.2168279937730312e-05 1.6882124171518413e-05 1.0328756805417172e-08 0.1325918931855823 8.112186625153543e-05 0.17247679304901148 9.656120919647865e-05']
['59907.1015482368 0.30506530419481104 5.2366154186051235e-05 0.0198850336197615 1.2149934572245715e-05 1.687894076871236e-05 1.0313184775552098e-08 0.13256689079841 8.099956381497144e-05 0.17249841339640104 9.645280422285772e-05']
['59907.10168851702 0.3050348020174872 5.237724077502626e-05 0.01990533072656025 1.2166832875160044e-05 1.6896169488058945e-05 1.032752850055839e-08 0.132702204843735 8.111221916773362e-05 0.17233259717375224 9.655344348866864e-05']
['59907.101828797226 0.3050291733386486 5.2362339462662554e-05 0.019909400113228812 1.2152747319044333e-05 1.6899623690745102e-05 1.0315572309187651e-08 0.1327293340881921 8.101831546029556e-05 0.1722998392504565 9.646648140171318e-05']
['59907.101969077434 0.30507228998692515 5.237232019426609e-05 0.019895009942877524 1.2149029962627792e-05 1.688740893478061e-05 1.0312416919060042e-08 0.1326333996191835 8.099353308418529e-05 0.17243889036774165 9.645108772839085e-05']
['59907.10210935764 0.30498566187451026 5.237792506752959e-05 0.019908201024977985 1.2152129535523643e-05 1.689860587302605e-05 1.0315047918248566e-08 0.13272134016651993 8.101419690349096e-05 0.17226432170799033 9.64714835290582e-05']
['59907.10224963785 0.305037934024163 5.236399337519837e-05 0.019915123656975675 1.2153004745572227e-05 1.690448198556812e-05 1.0315790819611103e-08 0.1327674910465045 8.102003163714818e-05 0.1722704429776585 9.64688205001093e-05']
['59907.10238991806 0.3050434917293383 5.23647674671623e-05 0.019890587930294086 1.2149307159409427e-05 1.688365541392158e-05 1.0312652210996075e-08 0.13260391953529393 8.099538106272951e-05 0.17243957219404438 9.644853874158354e-05']
['59907.102530198266 0.3050419362612684 5.23660396820525e-05 0.019891734389878457 1.215027435004056e-05 1.6884628559041085e-05 1.0313473187901979e-08 0.13261156259918971 8.10018290002704e-05 0.1724303736620787 9.64546443328228e-05']
['59907.102670478474 0.3051492483550281 5.2368784719902005e-05 0.01993081137853256 1.2154668405240936e-05 1.6917798137203464e-05 1.0317202977797224e-08 0.13287207585688374 8.103112270160624e-05 0.17227717249814437 9.648073620843804e-05']
['59907.10281075868 0.3051038971653504 5.2368368784729714e-05 0.01988725836679702 1.2150581748966522e-05 1.6880829192647465e-05 1.0313734116214342e-08 0.1325817224453135 8.100387832644349e-05 0.17252217472003692 9.645762983351144e-05']
['59907.10295103889 0.3050045393583597 5.236213885056824e-05 0.01990959895964379 1.2153469984826246e-05 1.6899792476824352e-05 1.031618572695509e-08 0.1327306597309586 8.102313323217498e-05 0.1722738796274011 9.647041880164595e-05']
['59907.1030913191 0.3049815892751136 5.236057884202196e-05 0.019884515014622038 1.2148505225419158e-05 1.6878500562997915e-05 1.0311971508283622e-08 0.1325634334308136 8.099003483612771e-05 0.1724181558443 9.644177497033523e-05']
['59907.10323159931 0.30506590089816693 5.23772369560389e-05 0.019880943895914452 1.2157216155249292e-05 1.6875469303292954e-05 1.031936557517105e-08 0.13253962597276303 8.104810770166195e-05 0.1725262749254039 9.649958918653096e-05']
['59907.103371879515 0.3050784651407124 5.236559084834872e-05 0.019910956777203063 1.2152090598925597e-05 1.690094502816502e-05 1.0315014867837653e-08 0.13273971184802041 8.101393732617065e-05 0.172338753292692 9.646456938164069e-05']
['59907.10351215972 0.3050350176200871 5.2363367733985644e-05 0.019904514140708804 1.2150617978915494e-05 1.689547634846046e-05 1.0313764869150165e-08 0.1326967609380587 8.100411985943664e-05 0.1723382566820284 9.645511761771164e-05']
['59907.10365243993 0.30503593227387277 5.236508919929397e-05 0.01987876053673505 1.2149021536361775e-05 1.6873616010461237e-05 1.0312409766623302e-08 0.13252507024490034 8.09934769090785e-05 0.17251086202897242 9.644711436155799e-05']
['59907.10379272014 0.3050855749823174 5.236581761067965e-05 0.01991419149924879 1.215405110415677e-05 1.690369074551492e-05 1.0316678996362979e-08 0.1327612766616586 8.102700736104513e-05 0.17232429832065882 9.647566934684531e-05']
['59907.10393300035 0.30511202343013366 5.2370775207405174e-05 0.019901772275883023 1.2152088554560782e-05 1.6893148981312122e-05 1.0315013132526902e-08 0.13267848183922015 8.101392369707188e-05 0.1724335415909135 9.646737235262266e-05']
['59907.104073280556 0.3051127575522762 5.2367727907065456e-05 0.019918418582644835 1.2153648066978261e-05 1.6907278805340745e-05 1.0316336887780528e-08 0.13278945721763225 8.102432044652175e-05 0.17232330033464394 9.647444962252485e-05']
['59907.104213560764 0.30501094883423835 5.236665324465437e-05 0.019902315896114547 1.216825347634921e-05 1.6893610420496186e-05 1.0328734344299286e-08 0.132682105974097 8.112168984232806e-05 0.17232884286014136 9.655565718755551e-05']
['59907.10435384097 0.3050069520912303 5.2362446422754745e-05 0.019894601531363125 1.215067806133175e-05 1.688706226432017e-05 1.0313815868689045e-08 0.13263067687575417 8.100452040887833e-05 0.17237627521547613 9.645495384918416e-05']
['59907.10449412118 0.3050615179125621 5.237417959697336e-05 0.019908193740635013 1.215416065617638e-05 1.6898599689883692e-05 1.031677198700536e-08 0.1327212916042334 8.102773770784253e-05 0.17234022630832868 9.648082175493193e-05']
['59907.10463440139 0.30504254703891787 5.236433650744134e-05 0.019904412742382194 1.2153100051236356e-05 1.689539027888765e-05 1.0315871717571374e-08 0.13269608494921464 8.102066700824237e-05 0.17234646208970322 9.646954037583598e-05']
['59907.1047746816 0.30503823845260325 5.236398444471774e-05 0.019896772350635902 1.2151149288579795e-05 1.6888904912948554e-05 1.0314215858800223e-08 0.13264514900423935 8.100766192386531e-05 0.1723930894483639 9.645842709321927e-05']
['59907.104914961805 0.3050758924456911 5.2365715973750574e-05 0.019912458045924952 1.2153871667921503e-05 1.6902219344634343e-05 1.0316526686155978e-08 0.13274972030616636 8.102581111947668e-05 0.17232617213952475 9.647460949396285e-05']
['59907.10505524201 0.3051506253113032 5.23747459114603e-05 0.0199097695941238 1.2168683684157156e-05 1.6899937315869447e-05 1.0329099516028307e-08 0.13273179729415865 8.112455789438103e-05 0.17241882801714456 9.656245596943363e-05']
['59907.10519552222 0.30507756982269285 5.237608408952446e-05 0.019909976559372735 1.2152429290074444e-05 1.6900112993429003e-05 1.0315302357813761e-08 0.1327331770624849 8.101619526716297e-05 0.17234439276020794 9.647216220299002e-05']
['59907.10533580243 0.30510192301941874 5.237243141623119e-05 0.019892836678706876 1.2150182921296166e-05 1.688556421085846e-05 1.0313395580773388e-08 0.13261891119137917 8.100121947530778e-05 0.17248301182803957 9.645760275341089e-05']
['59907.10547608264 0.30510824725919716 5.236758923043347e-05 0.019911307991701176 1.2153482664477032e-05 1.690124314829014e-05 1.0316196489776954e-08 0.13274205327800784 8.102321776318022e-05 0.17236619398118933 9.647344825653914e-05']
['59907.105616362845 0.3051643004518412 5.2369931498956595e-05 0.019917640047825112 1.2153546659633424e-05 1.6906617964461128e-05 1.0316250810552813e-08 0.13278426698550075 8.102364439755616e-05 0.17238003346634043 9.647507800808994e-05']
['59907.10575664305 0.3050697229613336 5.236528894258115e-05 0.019919887691560768 1.2154709790355091e-05 1.6908525823718935e-05 1.0317238106573161e-08 0.1327992512770718 8.103139860236728e-05 0.17227047168426182 9.647907050493252e-05']
['59907.10589692326 0.30507838031952245 5.236466577430075e-05 0.0199141582854718 1.2153655286435084e-05 1.690366255278539e-05 1.0316343015845807e-08 0.13276105523647866 8.10243685762339e-05 0.1723173250830438 9.647282790937365e-05']
['59907.10603720347 0.30503969719837404 5.236320613012393e-05 0.019906370921864237 1.2151132396473694e-05 1.6897052433255804e-05 1.0314201520335235e-08 0.13270913947909493 8.100754930982463e-05 0.1723305577192791 9.645790999917797e-05']
['59907.10617748368 0.3051034905042709 5.2387588006854984e-05 0.019911990449268804 1.2153230376402574e-05 1.690182243626528e-05 1.0315982341008244e-08 0.13274660299512536 8.102153584268383e-05 0.17235688750914552 9.648289303023245e-05']
['59907.106317763886 0.30511890327392216 5.2368355446529764e-05 0.01991068283133941 1.2152640023027984e-05 1.6900712495693874e-05 1.0315481233500311e-08 0.13273788554226273 8.101760015351989e-05 0.17238101773165942 9.646914629460401e-05']
['59907.106458044094 0.30512187802372287 5.236812027516473e-05 0.019915898753746678 1.2153361503716919e-05 1.6905139908141345e-05 1.0316093645329588e-08 0.1327726583583112 8.102241002477945e-05 0.17234921966541167 9.647305814255916e-05']
['59907.1065983243 0.3051686271499307 5.237296800949464e-05 0.019903222459137303 1.2152034060454123e-05 1.6894379935089765e-05 1.0314966876492532e-08 0.13268814972758203 8.101356040302748e-05 0.17248047742234868 9.646825771878816e-05']
['59907.10673860451 0.3050339553618794 5.2363934705588604e-05 0.019891689096186597 1.214973605398837e-05 1.6884590112561348e-05 1.0313016268021697e-08 0.13261126064124398 8.099824035992248e-05 0.1724226947206354 9.645048781242592e-05']
['59907.10687888472 0.30508946502573087 5.2367993250387843e-05 0.019898637343221705 1.2153217829032498e-05 1.6890487967822476e-05 1.0315971690469733e-08 0.13265758228814473 8.102145219354999e-05 0.17243188273758614 9.647218476133094e-05']
['59907.107019164934 0.30513249584536506 5.236881594339544e-05 0.01991093254449747 1.2152472912842228e-05 1.6900924458805664e-05 1.031533938596909e-08 0.1327395502966498 8.101648608561486e-05 0.17239294554871526 9.646846065411148e-05']
['59907.10715944514 0.30497299347299206 5.23614823985603e-05 0.019870959961854444 1.214722168453922e-05 1.68669946768548e-05 1.0310882004946541e-08 0.13247306641236295 8.098147789692813e-05 0.1724999270606291 9.643507972385048e-05']
['59907.10729972535 0.30517123051181044 5.237324746369805e-05 0.01992641929183371 1.2154367536918798e-05 1.691407001822421e-05 1.0316947592833554e-08 0.1328427952788914 8.102911691279199e-05 0.17232843523291905 9.648147406399151e-05']
['59907.10744000556 0.3051158922107103 5.23761461664546e-05 0.019920483690675467 1.2153910181363648e-05 1.6909031723479912e-05 1.0316559377381007e-08 0.13280322460450314 8.102606787575766e-05 0.17231266760620714 9.64804869528378e-05']
['59907.10758028577 0.3051337301911317 5.23693211250305e-05 0.01991403391017538 1.2153040285763444e-05 1.6903556979754863e-05 1.031582098706236e-08 0.13276022606783588 8.10202685717563e-05 0.17237350412329583 9.647191153147162e-05']
['59907.107720565975 0.30506207106152083 5.236514342186603e-05 0.019895318011708615 1.215111359602622e-05 1.688767043172611e-05 1.031418556201978e-08 0.1326354534113908 8.100742397350814e-05 0.17242661765013004 9.645885643328092e-05']
['59907.10786084618 0.30518779026002774 5.237494668202243e-05 0.019902205660666854 1.2152396634608463e-05 1.689351684974203e-05 1.0315274638993335e-08 0.13268137107111236 8.101597756405642e-05 0.17250641918891538 9.647136186767752e-05']
['59907.10800112639 0.3050574215350818 5.236461719469797e-05 0.01991717497798571 1.2153831042470322e-05 1.6906223200920732e-05 1.0316492202202e-08 0.13278116651990474 8.102554028313548e-05 0.17227625501517707 9.647378562138664e-05']
['59907.1081414066 0.30509126281557175 5.23680399751871e-05 0.019901971245021265 1.2152678010614537e-05 1.6893317871562116e-05 1.0315513478365252e-08 0.13267980830014175 8.101785340409692e-05 0.17241145451543 9.646918772877965e-05']
['59907.10828168681 0.3050800900648737 5.2365595319014345e-05 0.019915666272444336 1.2153429159284783e-05 1.6904942571882974e-05 1.0316151073159206e-08 0.13277110848296225 8.102286106189857e-05 0.17230898158191144 9.647206636001168e-05']
['59907.108421967016 0.3051301791508282 5.236845717148682e-05 0.019912599838705976 1.2152351044043465e-05 1.6902339702084982e-05 1.0315235940519855e-08 0.1327506655913732 8.101567362695644e-05 0.172379513559455 9.64675835695669e-05']
['59907.108562247224 0.3050772479438022 5.236760879108689e-05 0.019885193394747012 1.214971978163934e-05 1.6879076389932234e-05 1.0313002455622849e-08 0.13256795596498008 8.09981318775956e-05 0.17250929197882212 9.645239145898192e-05']
['59907.10870252743 0.3050797537487077 5.2364996954627734e-05 0.019905290723008905 1.215224518867612e-05 1.6896135531989944e-05 1.031514608769337e-08 0.1327019381533927 8.101496792450747e-05 0.172377815595315 9.646511252192238e-05']
['59907.10884280764 0.3050802280424297 5.2369604303557654e-05 0.019910024814167517 1.2153064122029294e-05 1.690015395337096e-05 1.0315841219913212e-08 0.13273349876111679 8.102042748019529e-05 0.1723467292813129 9.647219871022318e-05']
['59907.10898308785 0.30506854034649994 5.2370378860640615e-05 0.01990573328971631 1.216839917313223e-05 1.6896511194278645e-05 1.0328858015569742e-08 0.13270488859810872 8.112266115421487e-05 0.17236365174839122 9.65584938508705e-05']
['59907.109123368056 0.30512377213449987 5.2367668260539734e-05 0.019914488211355198 1.2153234929181057e-05 1.6903942602573107e-05 1.0315986205526645e-08 0.132763254742368 8.102156619454039e-05 0.17236051739213187 9.647210409057236e-05']
['59907.109263648264 0.30512817519209573 5.237172301742959e-05 0.01989130997042657 1.215089538815205e-05 1.6884268300621286e-05 1.0314000341423536e-08 0.13260873313617713 8.1005969254347e-05 0.1725194420559186 9.646120684840396e-05']
['59907.10940392847 0.305155840969804 5.23775240710352e-05 0.019916768445269566 1.2152848035544089e-05 1.6905878125233784e-05 1.0315657800007848e-08 0.1327784563017971 8.101898690362726e-05 0.17237738466800692 9.64752883732513e-05']
['59907.10954420868 0.3051851403298306 5.237157205063012e-05 0.01991494055285902 1.2153966024200425e-05 1.69043265619667e-05 1.0316606778253057e-08 0.13276627035239347 8.102644016133618e-05 0.1724188699774371 9.64783165497457e-05']
['59907.10968448889 0.30515676065285524 5.237108226996679e-05 0.019913294807830467 1.2152155246223859e-05 1.6902929610199428e-05 1.0315069742168724e-08 0.13275529871886976 8.101436830815906e-05 0.17240146193398548 9.646791243982466e-05']
['59907.1098247691 0.30517213776334706 5.237270377586855e-05 0.019912272713908732 1.2152883527509563e-05 1.6902062029933038e-05 1.0315687926523824e-08 0.13274848475939155 8.101922351673042e-05 0.1724236530039555 9.647287017627702e-05']
['59907.109965049305 0.30499986476489394 5.2361581010434346e-05 0.01988877574704742 1.2149975088915372e-05 1.6882117185006936e-05 1.0313219167169451e-08 0.13259183831364948 8.099983392610248e-05 0.17240802645124445 9.645054827199512e-05']
['59907.11010532951 0.3051996114046757 5.238047241663598e-05 0.019923057322462266 1.2153934527830653e-05 1.6911216289989606e-05 1.031658004330405e-08 0.13282038214974845 8.102623018553768e-05 0.17237922925492727 9.648297191043454e-05']
['59907.11024560972 0.30515452591831305 5.237008908384366e-05 0.019909960243733683 1.215352713501317e-05 1.6900099144284444e-05 1.0316234237540409e-08 0.1327330682915579 8.102351423342113e-05 0.17242145762675515 9.647505423363657e-05']
['59907.11038588993 0.3051158349745209 5.23755388563549e-05 0.019877798622073877 1.21499595771769e-05 1.6872799511937727e-05 1.0313206000396898e-08 0.13251865748049252 8.099973051451268e-05 0.17259717749402836 9.645803965412742e-05']
['59907.11052617014 0.3050861722860096 5.2372373865269424e-05 0.01990791064003596 1.2151668594116732e-05 1.6898359386631792e-05 1.0314656659030508e-08 0.1327194042669064 8.101112396077821e-05 0.1723667680191032 9.646588904722814e-05']
['59907.110666450346 0.30508021180598954 5.236752766396209e-05 0.019897460370678667 1.2152378118680487e-05 1.688948892249923e-05 1.0315258922185531e-08 0.13264973580452444 8.101585412453658e-05 0.1724304760014651 9.646723056646763e-05']
['59907.110806730554 0.3050725079669525 5.236625337885814e-05 0.019892714695050388 1.2151055473421564e-05 1.688546066791496e-05 1.0314136226020653e-08 0.1326180979670026 8.10070364894771e-05 0.1724544099999499 9.645913359421306e-05']
['59907.11094701076 0.30512549787906085 5.2370497492863056e-05 0.0199093439342495 1.2153395953207539e-05 1.6899576004546406e-05 1.0316122886965424e-08 0.13272895956166336 8.102263968805026e-05 0.17239653831739749 9.647454145871642e-05']
['59907.11108729097 0.30509121933057 5.236638198933515e-05 0.019922563351625427 1.215339514422174e-05 1.6910796994520665e-05 1.031612220027695e-08 0.1328170890108362 8.10226342948116e-05 0.1722741303197338 9.647230292018402e-05']
['59907.11122757118 0.30502566974966194 5.23688189603685e-05 0.019898358727457176 1.2150867533517096e-05 1.6890251471416352e-05 1.0313976697675051e-08 0.13265572484971452 8.100578355678064e-05 0.17236994489994742 9.645947423116013e-05']
['59907.11136785139 0.3051145648555276 5.236923833773884e-05 0.019907378459158756 1.2152606218078157e-05 1.6897907657473254e-05 1.0315452538967693e-08 0.1327158563943917 8.101737478718771e-05 0.17239870846113592 9.64694363074779e-05']
['59907.111508131595 0.3051336976055258 5.237075827573354e-05 0.019912892175931625 1.2153828552008997e-05 1.6902587845629045e-05 1.0316490088232772e-08 0.13275261450621084 8.102552368005999e-05 0.17238108309931494 9.647710510791291e-05']
['59907.1116484118 0.30507250202328223 5.237616816173056e-05 0.01989685416245909 1.2151563184345853e-05 1.6888974356980893e-05 1.0314567184438052e-08 0.13264569441639393 8.101042122897236e-05 0.1724268076068883 9.6467358930373e-05']
['59907.11178869201 0.305104900701758 5.236990950936839e-05 0.019893146835191625 1.2151423404913287e-05 1.688582747985942e-05 1.0314448535970663e-08 0.1326209789012775 8.100948936608858e-05 0.1724839218004805 9.646317841214778e-05']
['59907.11192897222 0.3050374002687668 5.2364633651945735e-05 0.019899552687315386 1.2151687078135546e-05 1.6891264936020552e-05 1.0314672348752975e-08 0.1326636845821026 8.10112471875703e-05 0.1723737156866642 9.64617905099636e-05']
['59907.11206925243 0.3050331409047119 5.236722835098239e-05 0.01989469271929628 1.2150827581898134e-05 1.6887139667041837e-05 1.0313942785687625e-08 0.13263128479530856 8.100551721265423e-05 0.17240185610940334 9.645838700731811e-05']
['59907.112209532635 0.3051392771111191 5.237458396740903e-05 0.019914256103109422 1.2172235189594584e-05 1.6903745582974985e-05 1.033211412747249e-08 0.1327617073540628 8.114823459729723e-05 0.1723775697570563 9.658226040022653e-05']
['59907.11234981284 0.3050904882524029 5.236816291724858e-05 0.019890567095548192 1.2150128033683633e-05 1.6883637728839992e-05 1.0313348990720858e-08 0.13260378063698794 8.100085355789089e-05 0.17248670761541499 9.645497791422885e-05']
['59907.11249009306 0.3051534796066361 5.237252506793919e-05 0.019907323667127275 1.2153205950072884e-05 1.689786114855244e-05 1.0315961607295646e-08 0.13271549111418185 8.10213730004859e-05 0.17243798849245423 9.647457833479131e-05']
['59907.11263037327 0.3050622918729702 5.237367771451304e-05 0.019927455160560933 1.215554403998337e-05 1.6914949290908648e-05 1.0317946239651097e-08 0.13284970107040622 8.10369602665558e-05 0.17221259080256396 9.648829486827417e-05']
['59907.112770653475 0.30512279553313304 5.236895257899772e-05 0.019903763232193044 1.2152646118087598e-05 1.689483895751596e-05 1.0315486407147598e-08 0.13269175488128696 8.101764078725065e-05 0.17243104065184608 9.646950457503807e-05']
['59907.11291093368 0.3051129620503459 5.2378399829575914e-05 0.019907103467102467 1.2153083440589301e-05 1.6897674236966217e-05 1.0315857618016244e-08 0.13271402311401645 8.102055627059534e-05 0.17239893893632943 9.647708177128712e-05']
['59907.11305121389 0.3051498265523623 5.2369492050373956e-05 0.019908881029836626 1.215219254188263e-05 1.6899183079077135e-05 1.031510139970712e-08 0.13272587353224416 8.10146169458842e-05 0.17242395302011812 9.646725795057373e-05']
['59907.1131914941 0.30514150760444714 5.23705982005126e-05 0.019911766989313753 1.2153732376700652e-05 1.6901632757564325e-05 1.0316408452095564e-08 0.1327451132620917 8.102488251133769e-05 0.17239639434235543 9.647647973395179e-05']
['59907.11333177431 0.3051686827736151 5.237271300528939e-05 0.0199126247874791 1.215252714317013e-05 1.6902360879261338e-05 1.0315385418101096e-08 0.13275083191652734 8.101684762113421e-05 0.17241785085708775 9.647087988611117e-05']
['59907.113472054516 0.3051358722980049 5.2370009297715614e-05 0.01992319635170158 1.2153892144886002e-05 1.6911334301673185e-05 1.0316544067543283e-08 0.13282130901134387 8.102594763257335e-05 0.172314563286661 9.647705459641344e-05']
['59907.113612334724 0.30519535031894474 6.003790698635484e-05 0.019918952313920116 1.2153218457980896e-05 1.6907731850518043e-05 1.0315972224337716e-08 0.13279301542613411 8.102145638653931e-05 0.17240233489281062 0.00010084159196630172']
['59907.11375261493 0.30516998899868963 5.237768954508374e-05 0.01989380511850866 1.2163987666207935e-05 1.6886386248093345e-05 1.0325113412191151e-08 0.1326253674567244 8.109325110805291e-05 0.17254462154196523 9.653775291229282e-05']
['59907.11389289514 0.3051589672198378 5.237334775445224e-05 0.019921713336042125 1.2154140441210913e-05 1.6910075478884464e-05 1.0316754828009742e-08 0.13281142224028084 8.10276029414061e-05 0.17234754497955698 9.64802570137484e-05']
['59907.11403317535 0.3051822688455418 5.2372807825061394e-05 0.019919178599337027 1.21542851633981e-05 1.6907923927545517e-05 1.031687767201756e-08 0.1327945239955802 8.102856775598734e-05 0.17238774484996158 9.648077420951514e-05']
['59907.11417345556 0.30513902530382697 5.236992586544866e-05 0.019919763805937837 1.2153166716314724e-05 1.6908420666336178e-05 1.0315928304647395e-08 0.13279842537291894 8.102111144209817e-05 0.17234059993090803 9.647294768205996e-05']
['59907.114313735765 0.305182480136885 5.237387885258931e-05 0.019912355959895097 1.2153964965769857e-05 1.690213269132089e-05 1.0316605879829288e-08 0.13274903973263397 8.102643310513239e-05 0.17243344040425101 9.647956285040991e-05']
['59907.11445401597 0.30523718334170796 5.2387337204884565e-05 0.019941527013834552 1.2156159085863203e-05 1.6926893850945768e-05 1.0318468306808451e-08 0.13294351342556368 8.104106057242136e-05 0.17229366991614428 9.649915335442664e-05']
['59907.11459429618 0.3051535075856944 5.237197815778075e-05 0.01991326035650806 1.2153089243540708e-05 1.6902900367008724e-05 1.0315862543714383e-08 0.13275506904338708 8.102059495693805e-05 0.1723984385423073 9.647362801996865e-05']
['59907.11473457639 0.3051168872374893 5.236965177605708e-05 0.019903727978180862 1.2157370377062854e-05 1.6894809032981014e-05 1.0319496482712174e-08 0.1326915198545391 8.104913584708569e-05 0.17242536738295022 9.64963359340904e-05']
['59907.1148748566 0.30524656485274926 5.237865233467859e-05 0.019923089711906785 1.2155697260077807e-05 1.6911243783004e-05 1.0318076296906622e-08 0.13282059807937857 8.103798173385205e-05 0.1724259667733707 9.649185304414705e-05']
['59907.115015136806 0.30516608394153877 5.237927781245772e-05 0.019909843372300288 1.2153339887055164e-05 1.6899999940730676e-05 1.0316075296537207e-08 0.13273228914866858 8.102226591370109e-05 0.1724337947928702 9.647899417979603e-05']
['59907.115155417014 0.30506273740904893 5.236744872611931e-05 0.01989673938216917 1.2153029803114504e-05 1.688887692844484e-05 1.0315812089113584e-08 0.13264492921446114 8.102019868743003e-05 0.1724178081945878 9.647083642963491e-05']
['59907.11529569722 0.30518311063342224 5.2373362051561855e-05 0.019928218689065646 1.2155335718766856e-05 1.691559739403247e-05 1.0317769411110516e-08 0.13285479126043764 8.103557145844571e-05 0.1723283193729846 9.648695711950316e-05']
['59907.11543597743 0.305175061641669 5.2372012186640294e-05 0.019902834524410277 1.2152210203721708e-05 1.689405064586628e-05 1.0315116391541751e-08 0.1326855634960685 8.101473469147806e-05 0.17248949814560052 9.646872497140292e-05']
['59907.11557625764 0.3051858715378425 5.237282652918407e-05 0.019918161576748285 1.2153491537480698e-05 1.6907060651960263e-05 1.0316204021416384e-08 0.13278774384498856 8.102327691653799e-05 0.17239812769285393 9.647634093885404e-05']
['59907.115716537846 0.30518148051419497 5.246381078640968e-05 0.019917058899782125 1.2189182195010272e-05 1.6906124670681345e-05 1.0346499192445886e-08 0.1327803926652142 8.126121463340181e-05 0.17240108784898078 9.672557286430509e-05']
['59907.115856818054 0.30515508689831505 5.246216705300511e-05 0.019902501569619792 1.2178415463567635e-05 1.6893768025062377e-05 1.0337360106952348e-08 0.13268334379746527 8.118943642378424e-05 0.17247174310084978 9.66643861963087e-05']
['59907.11599709826 0.30521501822501407 5.2472161400734136e-05 0.019917475818504185 1.217870231955328e-05 1.690647856228392e-05 1.0337603597875394e-08 0.13278317212336124 8.119134879702188e-05 0.17243184610165282 9.667141687978076e-05']
['59907.11613737847 0.30518881783961654 5.246796600799364e-05 0.019916454570816963 1.2179698206029086e-05 1.6905611700323693e-05 1.0338448932570768e-08 0.1327763638054464 8.119798804019391e-05 0.17241245403417013 9.667471602643293e-05']
['59907.11627765868 0.30519696104358895 5.246820777190867e-05 0.019912217590614747 1.218354890153834e-05 1.690201523982788e-05 1.0341717504435513e-08 0.132748117270765 8.122365934358894e-05 0.17244884377282396 9.669640977802413e-05']
['59907.11641793889 0.30519831760457106 5.246367385040787e-05 0.019897544819184133 1.2177036924665882e-05 1.6889560604617002e-05 1.0336189966789903e-08 0.1326502987945609 8.118024616443922e-05 0.17254801881001017 9.665748517937407e-05']
['59907.116558219095 0.30521420017819095 5.247332464873803e-05 0.019911888948094494 1.2178198422744048e-05 1.6901736279392635e-05 1.0337175876979406e-08 0.13274592632062995 8.118798948496032e-05 0.172468273857561 9.666922693547252e-05']
['59907.1166984993 0.30525050890549843 5.246618395528375e-05 0.019919067368404555 1.2180371725305253e-05 1.6907829511797636e-05 1.0339020633488472e-08 0.13279378245603038 8.120247816870168e-05 0.17245672644946805 9.667752023903048e-05']
['59907.11683877951 0.30531139564264165 5.247546659681818e-05 0.01992943830630837 1.217965737406855e-05 1.6916632637301055e-05 1.0338414273326206e-08 0.1328629220420558 8.119771582712367e-05 0.17244847360058585 9.667855837824699e-05']
['59907.11697905972 0.3053282018335174 5.2473143679796485e-05 0.01991402116648237 1.217921356489402e-05 1.690354616257227e-05 1.0338037556398653e-08 0.13276014110988246 8.119475709929346e-05 0.17256806072363493 9.667481258349473e-05']
['59907.11711933993 0.30531867682384733 5.247124344701942e-05 0.019907558236208298 1.2178084004031142e-05 1.6898060256972395e-05 1.0337078755359453e-08 0.13271705490805533 8.118722669354095e-05 0.172601621915792 9.666745660802702e-05']
['59907.117259620136 0.30533097663717046 5.247304237170753e-05 0.019935559384147497 1.2181847546784195e-05 1.692182836954184e-05 1.0340273349667112e-08 0.13290372922764998 8.12123169785613e-05 0.17242724740952048 9.6689506177089e-05']
['59907.117399900344 0.3054450459410759 5.2476973040997986e-05 0.019946384479122527 1.2181744299144514e-05 1.693101699554032e-05 1.0340185710348617e-08 0.1329758965274835 8.121162866096343e-05 0.1724691494135924 9.669106126892933e-05']
['59907.11754018055 0.30546708322246263 5.248710694517843e-05 0.01992403360372963 1.2179850216392036e-05 1.69120449832672e-05 1.0338577962974312e-08 0.13282689069153086 8.119900144261357e-05 0.17264019253093177 9.668595674011897e-05']
['59907.11768046076 0.3055188696540934 5.248486001236448e-05 0.019926887106458915 1.2180634341733125e-05 1.6914467111611155e-05 1.0339243549235849e-08 0.13284591404305943 8.12042289448875e-05 0.172672955611034 9.668912725353975e-05']
['59907.117820740976 0.3055813484588937 5.248759639311534e-05 0.019959896219171176 1.2184092648421384e-05 1.6942486116705735e-05 1.0342179051124725e-08 0.1330659747944745 8.122728432280923e-05 0.17251537366441919 9.670997618438888e-05']
['59907.117961021184 0.3055022155970925 5.248594115403594e-05 0.01992754845392337 1.2181397293117391e-05 1.6915028480774193e-05 1.0339891162484622e-08 0.13285032302615582 8.120931528744928e-05 0.1726518925709367 9.669398589509725e-05']
['59907.11810130139 0.3055651266898034 5.2496424106333826e-05 0.0199267923225193 1.2181171536710047e-05 1.691438665650441e-05 1.0339699534494415e-08 0.1328452821501287 8.120781024473365e-05 0.1727198445396747 9.669841254486412e-05']
['59907.1182415816 0.3055677157700032 5.249337646515172e-05 0.019925217997372093 1.2180896617169826e-05 1.691305032781528e-05 1.033946617554093e-08 0.1328347866491473 8.120597744779885e-05 0.1727329291208559 9.669521883715121e-05']
['59907.11838186181 0.30565624324696544 5.249313588383654e-05 0.019923838610196788 1.2180960903528967e-05 1.6911879467615878e-05 1.033952074349736e-08 0.13282559073464525 8.120640602352645e-05 0.1728306525123202 9.669544815645026e-05']
['59907.11852214202 0.30566952321267216 5.249333532193789e-05 0.019933757525973223 1.218216661413649e-05 1.6920298904820848e-05 1.0340544182447363e-08 0.13289171683982148 8.121444409424327e-05 0.17277780637285067 9.670230701880064e-05']
['59907.118662422225 0.30572988676788826 5.2496951942811396e-05 0.019943019342208594 1.2182446342746207e-05 1.6928160578612142e-05 1.034078162346582e-08 0.13295346228139063 8.121630895164139e-05 0.17277642448649763 9.670583644751911e-05']
['59907.11880270243 0.30590918566209824 5.2510910759159736e-05 0.01997650377500855 1.2186568731418996e-05 1.69565830479281e-05 1.0344280815650462e-08 0.13317669183339034 8.124379154279331e-05 0.1727324938287079 9.673649473185026e-05']
['59907.11894298264 0.3057654870181676 5.250046314201073e-05 0.019945216164149338 1.2182499478428139e-05 1.693002529899061e-05 1.0340826726433467e-08 0.1329681077609956 8.121666318952092e-05 0.17279737925717198 9.670804004717349e-05']
['59907.11908326285 0.305957808732506 5.251643363731243e-05 0.019990450405335196 1.2188109931509063e-05 1.6968421315426558e-05 1.034558902691781e-08 0.13326966936890133 8.125406621006043e-05 0.17268813936360466 9.674812183009613e-05']
['59907.11922354306 0.3059813140975596 5.2513089164496306e-05 0.019960275817336132 1.2185067229886898e-05 1.694280832963556e-05 1.0343006301565696e-08 0.13306850544890755 8.123378153257932e-05 0.17291280864865202 9.672927062518958e-05']
['59907.119363823265 0.3060093038456227 5.251656356456891e-05 0.019956681388284096 1.2184564686533722e-05 1.6939757283495692e-05 1.0342579729518892e-08 0.13304454258856066 8.123043124355815e-05 0.17296476125706203 9.672834335729024e-05']
['59907.11950410347 0.3060094745545564 5.251605783524552e-05 0.01994857564177233 1.2185228532560823e-05 1.6932876912163438e-05 1.0343143219527772e-08 0.1329905042784822 8.123485688373883e-05 0.1730189702760742 9.673178538348385e-05']
['59907.11964438368 0.30602560944018375 5.252331461846574e-05 0.019987164820712913 1.2188854175572902e-05 1.696563242458078e-05 1.0346220760899819e-08 0.13324776547141942 8.125902783715268e-05 0.17277784396876433 9.675602401685122e-05']
['59907.11978466389 0.30605665736110593 5.2518264488001454e-05 0.019956342857531707 1.2185381681741088e-05 1.6939469929668324e-05 1.0343273216589476e-08 0.13304228571687804 8.123587787827392e-05 0.1730143716442279 9.67338408184308e-05']
['59907.1199249441 0.30617946814647146 5.252600883898147e-05 0.01997145530614064 1.2186613491324612e-05 1.6952297774459438e-05 1.0344318809038362e-08 0.1331430353742709 8.124408994216409e-05 0.17303643277220054 9.674494175450833e-05']
['59907.120065224306 0.30620308395813695 5.2527833318741526e-05 0.019960881296804824 1.2186527196651587e-05 1.6943322276570932e-05 1.0344245559844896e-08 0.13307254197869883 8.124351464434391e-05 0.1731305419794381 9.674544922076292e-05']
['59907.120205504514 0.3062475206694571 5.2528043673787876e-05 0.019992812237242627 1.2188821167688505e-05 1.6970426100614928e-05 1.0346192742937351e-08 0.13328541491495086 8.125880778459003e-05 0.17296210575450624 9.67584064294587e-05']
['59907.12034578472 0.30632119377680883 5.2533168527179835e-05 0.019983572757664044 1.2187402740460265e-05 1.696258338676678e-05 1.0344988744511802e-08 0.13322381838442698 8.124935160306845e-05 0.17309737539238185 9.675324765311042e-05']
['59907.12048606493 0.30638426362726245 5.2538001369038594e-05 0.019976608009775586 1.2188315026556725e-05 1.6956671525146316e-05 1.0345763117001218e-08 0.13317738673183727 8.125543351037817e-05 0.1732068768954252 9.676097902983717e-05']
['59907.12062634514 0.3063940731201158 5.255610425258385e-05 0.019984105261371433 1.2187622103648312e-05 1.696303538995209e-05 1.0345174945768921e-08 0.1332273684091429 8.125081402432208e-05 0.1731667047109729 9.676693068307703e-05']
['59907.12076662535 0.3064164012632624 5.2540517882737076e-05 0.019994018150118788 1.2189862561070272e-05 1.6971449711255886e-05 1.0347076705094211e-08 0.13329345433412526 8.126575040713514e-05 0.17312294692913716 9.677100913300945e-05']
['59907.120906905555 0.30649080513208343 5.255313336010632e-05 0.020004240029148912 1.2191417698522604e-05 1.6980126311657653e-05 1.0348396746762084e-08 0.13336160019432608 8.127611799015069e-05 0.17312920493775735 9.678656508789852e-05']
['59907.12104718576 0.3065518929741981 5.2550019377070346e-05 0.020003629642388904 1.2192246038665008e-05 1.6979608199284038e-05 1.0349099863712618e-08 0.13335753094925937 8.128164025776672e-05 0.17319436202493874 9.678951172272475e-05']
['59907.12118746597 0.3065312605849737 5.254590633771709e-05 0.019992150197551194 1.2188492072347563e-05 1.6969864143871385e-05 1.0345913398135968e-08 0.13328100131700799 8.125661381565042e-05 0.17325025926796572 9.676626251766618e-05']
['59907.12132774618 0.30652069757566425 5.255967746252859e-05 0.019984965696901565 1.2188199748339672e-05 1.6963765750313863e-05 1.0345665265811487e-08 0.13323310464601043 8.125466498893115e-05 0.17328759292965382 9.677210485170027e-05']
['59907.12146802639 0.30658339261356954 5.256152872964116e-05 0.01999826383522474 1.2190610939377696e-05 1.697505356070348e-05 1.0347711948331167e-08 0.13332175890149828 8.12707395958513e-05 0.17326163371207126 9.678660763170474e-05']
['59907.121608306596 0.3066371390410787 5.255425546269343e-05 0.020014102498660227 1.2192308559175612e-05 1.6988497835784685e-05 1.0349152932770257e-08 0.13342734999106817 8.128205706117076e-05 0.17320978905001053 9.679216170400092e-05']
['59907.121748586804 0.3066912304379653 5.255656216857009e-05 0.020003146626904906 1.2190671652067483e-05 1.6979198203007407e-05 1.0347763482862838e-08 0.13335431084603272 8.127114434711656e-05 0.1733369195919326 9.678425042572076e-05']
['59907.12188886701 0.3066787168076573 5.2556052366812244e-05 0.019994638387509985 1.2188832265742301e-05 1.6971976185104946e-05 1.0346202163257993e-08 0.13329758925006654 8.125888177161533e-05 0.17338112755759075 9.677367672645526e-05']
['59907.12202914722 0.30683992203448585 5.2567117811507464e-05 0.02003539796799204 1.2195731706579425e-05 1.7006573991569328e-05 1.0352058590531584e-08 0.13356931978661363 8.130487804386283e-05 0.17327060224787222 9.681830957384203e-05']
['59907.12216942743 0.30677651553810337 5.256233353411499e-05 0.020020627844681324 1.2194527009116843e-05 1.6994036721516114e-05 1.0351036011565716e-08 0.1334708522978755 8.129684672744562e-05 0.17330566324022786 9.680896753078887e-05']
['59907.122309707636 0.3067223085870583 5.256142887498274e-05 0.020012879689638084 1.219208182910304e-05 1.6987459883249587e-05 1.0348960478307337e-08 0.13341919793092058 8.12805455273536e-05 0.1733031106561377 9.679478749707585e-05']
['59907.122449987844 0.3068072865305511 5.2565849055455516e-05 0.02002016947669765 1.219221457198392e-05 1.6993647646687546e-05 1.0349073153964149e-08 0.13346779651131768 8.12814304798928e-05 0.17333949001923343 9.6797930906495e-05']
['59907.12259026805 0.3068764473207489 5.257077707582791e-05 0.020010875802326532 1.2191309502756007e-05 1.6985758930870745e-05 1.0348304907343015e-08 0.13340583868217687 8.127539668504005e-05 0.17347060863857205 9.679554074784133e-05']
['59907.12273054826 0.306859730524223 5.2569876418020674e-05 0.02000086833611433 1.2190849804434042e-05 1.6977264329721428e-05 1.0347914703288232e-08 0.1333391222407622 8.127233202956029e-05 0.1735206082834608 9.679247832413971e-05']
['59907.12287082847 0.3068129577348171 5.256533858635953e-05 0.0200058084760217 1.2192067153094117e-05 1.6981457650712488e-05 1.0348948020924057e-08 0.13337205650681136 8.128044768729412e-05 0.17344090122800573 9.679682844466328e-05']
['59907.12301110868 0.30691929490758474 5.2577535115816955e-05 0.020008709502791076 1.2190182487924418e-05 1.6983920118714557e-05 1.0347348267442294e-08 0.13339139668527386 8.126788325282946e-05 0.17352789822231088 9.67929028764531e-05']
['59907.12315138889 0.30688762769380196 5.256721671062907e-05 0.020046377679224216 1.2195001933922682e-05 1.7015893859923046e-05 1.035143914026143e-08 0.13364251786149478 8.130001289281789e-05 0.17324510983230718 9.681427771292102e-05']
['59907.1232916691 0.3069382959756377 5.2578583517303294e-05 0.020019934669753527 1.219283085251793e-05 1.699344833636312e-05 1.0349596269128516e-08 0.13346623113169018 8.12855390167862e-05 0.17347206484394753 9.680829663791997e-05']
['59907.12343194931 0.3069166380513078 5.2570279672710995e-05 0.02003042028807208 1.2195302659144746e-05 1.7002348805625907e-05 1.0351694403757985e-08 0.13353613525381386 8.130201772763165e-05 0.17338050279749395 9.681762438446411e-05']
['59907.12357222952 0.3069215032698111 5.25711582415922e-05 0.020025986724604594 1.2193765405220981e-05 1.699858548007198e-05 1.0350389542100626e-08 0.13350657816403064 8.129176936813988e-05 0.17341492510578047 9.680949563893705e-05']
['59907.123712509725 0.30688213212323007 5.2575848265609045e-05 0.020027925861233163 1.2195534440213836e-05 1.700023147036407e-05 1.0351891145639908e-08 0.1335195057415544 8.130356293475891e-05 0.17336262638167566 9.682194568761077e-05']
['59907.12385278993 0.306914640250526 5.2577831310345006e-05 0.02000853066727601 1.219207027832206e-05 1.69837683184147e-05 1.0348950673699925e-08 0.13339020444850674 8.128046852214706e-05 0.17352443580201926 9.680363065752665e-05']
['59907.12399307014 0.30682151098814936 5.2564542378012234e-05 0.02002620057749664 1.2193976677967897e-05 1.6998767004044586e-05 1.0350568875978024e-08 0.13350800384997763 8.129317785311931e-05 0.17331350713817173 9.680708590216282e-05']
['59907.12413335035 0.3069438285527098 5.2571979266274565e-05 0.02002477928220881 1.2192984093508327e-05 1.6997560571134444e-05 1.0349726344121083e-08 0.13349852854805874 8.128656062338885e-05 0.17344530000465105 9.680556772186956e-05']
['59907.12427363056 0.30681158738221814 5.256499160641298e-05 0.020011182216708813 1.219392546818105e-05 1.6986019023476475e-05 1.0350525407760897e-08 0.13340788144472543 8.129283645454034e-05 0.1734037059374927 9.680704313946846e-05']
['59907.124413910766 0.3067939984154162 5.257873529523324e-05 0.02000921154418385 1.2192061676227023e-05 1.6984346264684137e-05 1.034894337201488e-08 0.13339474362789233 8.128041117484682e-05 0.17339925478752388 9.680407349899265e-05']
['59907.124554190974 0.3068642479337955 5.256937267865853e-05 0.0200005220102673 1.2190669866574899e-05 1.6976970359212227e-05 1.034776196728966e-08 0.13333681340178202 8.127113244383265e-05 0.1735274345320135 9.679119749507534e-05']
['59907.12469447118 0.30684651091165205 5.256937343351124e-05 0.02000202879851505 1.2191792422043316e-05 1.6978249360800613e-05 1.034871482196536e-08 0.13334685865676701 8.127861614695545e-05 0.17349965225488503 9.679748171288386e-05']
['59907.12483475139 0.3069365819104851 5.257346687176628e-05 0.020027779774771153 1.2193793708230349e-05 1.7000107468323814e-05 1.0350413566441135e-08 0.13351853183180767 8.1291958054869e-05 0.17341805007867744 9.681090777030907e-05']
['59907.1249750316 0.3070239930745537 5.257814493737801e-05 0.020041808042513005 1.2194237551272038e-05 1.701201503181252e-05 1.0350790312116024e-08 0.13361205361675338 8.129491700848026e-05 0.1734119394578003 9.68159328647492e-05']
['59907.12511531181 0.3069171190618936 5.257281038917806e-05 0.02001848319904847 1.2193335015744004e-05 1.6992216289763317e-05 1.0350024216166143e-08 0.13345655466032313 8.128890010496003e-05 0.17346056440157048 9.680798351629188e-05']
['59907.125255592015 0.30692853583413027 5.258040571659703e-05 0.02002105721154121 1.2192831385473743e-05 1.699440117942625e-05 1.0349596721515461e-08 0.13347371474360806 8.128554256982496e-05 0.1734548210905222 9.680928930734269e-05']
['59907.12539587222 0.30682690582307004 5.2566662784106757e-05 0.020034974516697248 1.2193986005452743e-05 1.7006214554946793e-05 1.0350576793393064e-08 0.13356649677798166 8.129324003635162e-05 0.17326040904508838 9.680828947908271e-05']
['59907.12553615243 0.30696370553645447 5.257296674693831e-05 0.02002061174367684 1.2193736544354543e-05 1.6994023054559035e-05 1.035036504423633e-08 0.1334707449578456 8.129157696236362e-05 0.17349296057860886 9.681031617344595e-05']
['59907.12567643264 0.30688306139919475 5.257041946865756e-05 0.02001808040400194 1.2193754927857245e-05 1.6991874386708875e-05 1.0350380648638072e-08 0.13345386936001294 8.129169951904831e-05 0.1734291920391818 9.680903580661181e-05']
['59907.12581671285 0.30689536817931423 5.257128408528951e-05 0.020016008901092106 1.2193493746453918e-05 1.699011604042765e-05 1.035015895097736e-08 0.13344005934061404 8.128995830969279e-05 0.1734553088387002 9.680804322145865e-05']
['59907.125956993055 0.3068639093088883 5.256923200835065e-05 0.020051917131275465 1.2196339502739198e-05 1.702059589286159e-05 1.0352574503935424e-08 0.13367944754183644 8.130893001826131e-05 0.17318446176705185 9.682286018633365e-05']
['59907.12609727326 0.3068816339007324 5.257363531827439e-05 0.020039214604815975 1.2195085588005395e-05 1.7009813653524076e-05 1.0351510148052222e-08 0.1335947640321065 8.130057058670264e-05 0.17328686986862593 9.681823128059264e-05']
['59907.12623755347 0.30693256354100484 5.257058490929568e-05 0.020044015962756942 1.2194889447377421e-05 1.7013889172723323e-05 1.0351343658716312e-08 0.13362677308504628 8.129926298251614e-05 0.17330579045595856 9.681547685781331e-05']
['59907.12637783368 0.307001694777495 5.257604515152717e-05 0.020024338411407817 1.2193387074352866e-05 1.6997186348375814e-05 1.0350068404885774e-08 0.13349558940938544 8.128924716235245e-05 0.17350610536810956 9.681003164960463e-05']
['59907.12651811389 0.30697144670469134 5.257382344448257e-05 0.020030303972089374 1.219344006261628e-05 1.700225007355333e-05 1.0350113382720698e-08 0.13353535981392917 8.128960041744187e-05 0.17343608689076218 9.680912171690739e-05']
['59907.126658394096 0.3068877092698702 5.2571347282627963e-05 0.020018706694725753 1.219268354204732e-05 1.699240599878625e-05 1.0349471228117494e-08 0.13345804463150504 8.128455694698213e-05 0.17342966463836515 9.680354204871771e-05']
['59907.126798674304 0.3068858697961233 5.25681412265977e-05 0.02003515559825837 1.2194401612546512e-05 1.7006368261749755e-05 1.035092957165097e-08 0.13356770398838913 8.129601075031008e-05 0.17331816580773418 9.681141893358475e-05']
['59907.12693895451 0.3069017140650526 5.2569831098160484e-05 0.020036288279512256 1.2197253936745165e-05 1.700732971145911e-05 1.0353350699627057e-08 0.13357525519674837 8.131502624496776e-05 0.17332645886830425 9.682830492634329e-05']
['59907.12707923472 0.3068687556092814 5.256870560651662e-05 0.02002985136202985 1.2194021339238655e-05 1.7001865886202575e-05 1.0350606785642057e-08 0.13353234241353232 8.129347559492437e-05 0.17333641319574908 9.68095965462473e-05']
['59907.12721951493 0.3069715384733642 5.257382790562165e-05 0.020039573877627337 1.219578927056664e-05 1.7010118613757926e-05 1.03521074523615e-08 0.13359715918418225 8.13052618037776e-05 0.17337437928918198 9.682227521407839e-05']
['59907.12735979514 0.3070117112650519 5.2576776294585674e-05 0.020038862177886668 1.2195535703928885e-05 1.7009514504255395e-05 1.0351892218314557e-08 0.13359241451924445 8.13035713595259e-05 0.17341929674580744 9.682245669959229e-05']
['59907.127500075345 0.3069130997208408 5.2580118263701175e-05 0.02002623074759733 1.2193748996586907e-05 1.6998792613221427e-05 1.035037561401944e-08 0.1335082049839822 8.129165997724605e-05 0.1734048947368586 9.681426970483736e-05']
['59907.12764035555 0.3068417115393406 5.2568288446986107e-05 0.020019433227547442 1.2193622874683038e-05 1.6993022698998996e-05 1.0350268558422466e-08 0.13346288818364963 8.12908191645536e-05 0.17337882335569096 9.680713935805401e-05']
['59907.12778063576 0.30693943276806196 5.2574012108905426e-05 0.020022144627558414 1.2194033820263688e-05 1.6995324206809374e-05 1.0350617379865143e-08 0.13348096418372277 8.129355880175793e-05 0.1734584685843392 9.681254800841784e-05']
['59907.12792091597 0.30680120411894657 5.2565111866484496e-05 0.020001372312965872 1.2190278859797523e-05 1.697769211855944e-05 1.034743007042885e-08 0.13334248208643917 8.126852573198348e-05 0.1734587220325074 9.678669464438844e-05']
['59907.12806119618 0.3068991037553407 5.2575145440708987e-05 0.019998348185653204 1.2190308611343098e-05 1.69751251595709e-05 1.034745532432508e-08 0.13332232123768803 8.126872407562065e-05 0.17357678251765266 9.679231080509994e-05']
['59907.128201476386 0.30680297065070117 5.256339677776294e-05 0.02000787466362004 1.2191130598285501e-05 1.6983211485217183e-05 1.0348153048511963e-08 0.13338583109080027 8.127420398857001e-05 0.1734171395599009 9.679053112155253e-05']
['59907.128341756594 0.3068717896125857 5.256722645955987e-05 0.0200453869638271 1.219637886281125e-05 1.701505291457559e-05 1.0352607913802239e-08 0.13363591309218067 8.130919241874167e-05 0.17323587652040504 9.682199166221799e-05']
['59907.12848203681 0.3069982321414916 5.2576668856304373e-05 0.02003162840718878 1.219535403157033e-05 1.7003374288981996e-05 1.035173801002716e-08 0.13354418938125853 8.130236021046888e-05 0.17345404276023305 9.682138133603713e-05']
['59907.12862231702 0.3068714892926555 5.257006981180486e-05 0.020018288676988235 1.2193565486458866e-05 1.6992051174310377e-05 1.0350219845784853e-08 0.13345525784658824 8.129043657639244e-05 0.17341623144606727 9.680778542451283e-05']
['59907.128762597225 0.3068482103603441 5.2566606177896315e-05 0.02001783833832317 1.2193517400635865e-05 1.699166891497912e-05 1.0350179029270596e-08 0.13345225558882112 8.129011600423911e-05 0.17339595477152298 9.680563539920957e-05']
['59907.12890287743 0.30686111654956716 5.2567612663210644e-05 0.02003443855249305 1.2194719875703705e-05 1.7005759614400563e-05 1.0351199721809218e-08 0.133562923683287 8.129813250469138e-05 0.17329819286628015 9.6812913652362e-05']
['59907.12904315764 0.30682709696541344 5.256588138278211e-05 0.020007147564839005 1.21913003360524e-05 1.698259430460322e-05 1.034829712640333e-08 0.13338098376559335 8.127533557368268e-05 0.1734461131998201 9.679283061344703e-05']
['59907.12918343785 0.3069002352688894 5.257098140974626e-05 0.020014495593128553 1.2192606878842276e-05 1.6988831504732612e-05 1.0349406154367969e-08 0.133429970620857 8.12840458589485e-05 0.17347026464803236 9.680291419985004e-05']
['59907.12932371806 0.30695849722819746 5.257457150770229e-05 0.020018733964937432 1.2192297510992761e-05 1.699242914646085e-05 1.0349143554781388e-08 0.13345822643291622 8.128198340661841e-05 0.17350027079528124 9.680313215868736e-05']
['59907.129463998266 0.30680618782513513 5.256317099489091e-05 0.020043305221758772 1.2196394208149035e-05 1.70132858770267e-05 1.0352620939329502e-08 0.13362203481172516 8.130929472099357e-05 0.17318415301340997 9.681987581619559e-05']
['59907.129604278474 0.30682420318576 5.256713164775908e-05 0.020003584320385386 1.2191182444037602e-05 1.697956972877262e-05 1.0348197056553163e-08 0.13335722880256926 8.127454962691735e-05 0.17346697438319073 9.679284966737514e-05']
['59907.12974455868 0.3069896589115545 5.2577315751196045e-05 0.020031681855488457 1.2195794396771184e-05 1.700341965730783e-05 1.035211180361906e-08 0.13354454570325638 8.130529597847457e-05 0.1734451132082981 9.682419783168008e-05']
['59907.12988483889 0.3069285625128868 5.257095931720024e-05 0.020019465477906978 1.219340602503286e-05 1.699305007395439e-05 1.0350084490722553e-08 0.1334631031860465 8.128937350021908e-05 0.1734654593268403 9.680737579125282e-05']
['59907.1300251191 0.3068250180536438 5.256631256277725e-05 0.02000585252505187 1.2192532413721349e-05 1.6981495040690568e-05 1.034934294641019e-08 0.1333723501670125 8.1283549424809e-05 0.17345266788663133 9.67999618984582e-05']
['59907.13016539931 0.30679996246488483 5.2566331906720686e-05 0.020003670681646803 1.2190001469159845e-05 1.6979643034488065e-05 1.0347194613942697e-08 0.133357804544312 8.126667646106563e-05 0.17344215792057283 9.678580450228763e-05']
['59907.130305679515 0.30692459819274903 5.257524606608636e-05 0.020047448892432294 1.2194843902304403e-05 1.7016803133934623e-05 1.0351304998857623e-08 0.13364965928288194 8.129895934869603e-05 0.1732749389098671 9.681775296964115e-05']
['59907.13044595972 0.3068942844965837 5.257147599093877e-05 0.02001968575246089 1.2194239077903146e-05 1.6993237048802887e-05 1.0350791607960754e-08 0.13346457168307263 8.129492718602096e-05 0.17342971281351105 9.6812319846424e-05']
['59907.13058623993 0.30684970688898383 5.256887980256106e-05 0.02000591781861513 1.2194006730489227e-05 1.6981550463588403e-05 1.0350594385350409e-08 0.1333727854574342 8.129337820326151e-05 0.17347692143154964 9.680960935462257e-05']
['59907.13072652014 0.3068314125681486 5.256468483682073e-05 0.02003539081344822 1.2195839418770822e-05 1.7006567918603915e-05 1.0352150019479275e-08 0.1335692720896548 8.130559612513882e-05 0.1732621404784938 9.681759165181956e-05']
['59907.13086680035 0.306909367868327 5.257049813783399e-05 0.02001961378551706 1.2194104663672694e-05 1.6993175961363686e-05 1.0350677513618365e-08 0.13346409190344707 8.129403109115131e-05 0.17344527596487994 9.681103638278584e-05']
['59907.131007080556 0.3068630444188325 5.256795738246051e-05 0.020036721646456052 1.2194432004900227e-05 1.7007697564745924e-05 1.0350955369482042e-08 0.13357814430970702 8.129621336600152e-05 0.17328490010912548 9.681148925109369e-05']
['59907.131147360764 0.3068711686551794 5.2573528496140866e-05 0.020016956055408743 1.2192952337402548e-05 1.699092000998159e-05 1.0349699388701305e-08 0.13344637370272494 8.128634891601699e-05 0.17342479495245444 9.680623130062958e-05']
['59907.13128764097 0.30692107426323506 5.258343638275744e-05 0.02002932073349159 1.219446161921884e-05 1.7001415474710258e-05 1.0350980506896408e-08 0.13352880488994393 8.129641079479227e-05 0.17339226937329114 9.682006088582633e-05']
['59907.13142792118 0.30699766834674974 5.258194182799715e-05 0.020032895073965676 1.2194403431978697e-05 1.700444946913556e-05 1.0350931116032975e-08 0.13355263382643784 8.129602287985798e-05 0.1734450345203119 9.681892347307559e-05']
['59907.13156820139 0.3068755571299754 5.256817596891868e-05 0.020031228904603144 1.2193211330258528e-05 1.700303518065516e-05 1.0349919228665331e-08 0.1335415260306876 8.128807553505686e-05 0.17333403109928777 9.680477441165963e-05']
['59907.1317084816 0.30691908908028903 5.257669324464734e-05 0.020015195942562184 1.2192281370304336e-05 1.69894259797953e-05 1.0349129854139532e-08 0.13343463961708124 8.12818758020289e-05 0.1734844494632078 9.680419415726881e-05']
['59907.131848761805 0.3068077353830809 5.25646859706847e-05 0.0200113322750448 1.2191392951453314e-05 1.698614639694807e-05 1.034837574079726e-08 0.133408881833632 8.127595300968875e-05 0.17339885354944892 9.679269987364663e-05']
['59907.13198904201 0.3069141237931583 5.257065557579958e-05 0.02003883152835581 1.2195044015726284e-05 1.7009488488125586e-05 1.0351474860405736e-08 0.13359221018903875 8.130029343817523e-05 0.17332191360411955 9.681638053967287e-05']
['59907.13212932222 0.30687051536787147 5.256863129268375e-05 0.02003162363692984 1.2193764824347087e-05 1.700337023986045e-05 1.0350389049039551e-08 0.13354415757953228 8.129176549564725e-05 0.17332635778833919 9.680812018309949e-05']
['59907.13226960243 0.30694236255594776 5.2604325177088916e-05 0.02002773891494084 1.219373406928753e-05 1.7000072785422654e-05 1.0350362943334199e-08 0.13351825943293896 8.129156046191687e-05 0.1734241031230088 9.682733513667717e-05']
['59907.13240988264 0.3068860791988889 5.2570833617514705e-05 0.020008998490054334 1.219071467138014e-05 1.6984165418722227e-05 1.0347799998789545e-08 0.1333933232670289 8.127143114253427e-05 0.17349275593185998 9.67922417717252e-05']
['59907.132550162845 0.3068925244496412 5.256999482677953e-05 0.020031435759468634 1.2194114043568323e-05 1.7003210764518336e-05 1.0350685475521057e-08 0.13354290506312425 8.129409362378883e-05 0.17334961938651697 9.68108155848352e-05']
['59907.13269044305 0.3067716888492249 5.256353840943304e-05 0.020019152490790334 1.219488398665036e-05 1.6992784402238458e-05 1.035133902350722e-08 0.1334610166052689 8.129922657766907e-05 0.173310672243956 9.681162023356037e-05']
['59907.13283072326 0.3067959802980926 5.256526519579025e-05 0.020019790229953226 1.2192655019854653e-05 1.6993325732052735e-05 1.0349447017728424e-08 0.13346526819968815 8.128436679903103e-05 0.17333071209840442 9.680007949905401e-05']
['59907.13297100347 0.306905035724439 5.256960864932795e-05 0.02003953488543184 1.2194246604232918e-05 1.701008551615443e-05 1.0350797996507883e-08 0.13359689923621226 8.129497736155279e-05 0.17330813648822674 9.681134798028005e-05']
['59907.13311128368 0.30684030072659785 5.2567439205597604e-05 0.020016599419285963 1.2193389035157716e-05 1.6990617287838522e-05 1.0350070069268623e-08 0.1334439961285731 8.128926023438477e-05 0.17339630459802474 9.680536913874008e-05']
['59907.133251563886 0.30692674199421643 5.257266863977484e-05 0.020031936973286382 1.2194669348833503e-05 1.700363620802042e-05 1.0351156833269742e-08 0.13354624648857588 8.129779565889002e-05 0.17338049550564055 9.681537619046988e-05']
['59907.133391844094 0.30685064121624117 5.2568198316721154e-05 0.02002300577634164 1.219293053731703e-05 1.6996055172599177e-05 1.0349680884214e-08 0.13348670517561095 8.128620358211355e-05 0.17336393604063022 9.680321465250488e-05']
['59907.1335321243 0.3069220225906083 5.2573390814341406e-05 0.020010079409797592 1.2191542253138615e-05 1.698508293189676e-05 1.0348502472003807e-08 0.13340052939865063 8.127694835425743e-05 0.17352149319195767 9.679826318430567e-05']
['59907.13367240451 0.30687788450904907 5.256918276607363e-05 0.020024416579127007 1.2193303584804812e-05 1.699725269919661e-05 1.0349997536756337e-08 0.1334961105275134 8.128869056536541e-05 0.17338177398153568 9.680583758495446e-05']
['59907.133812684726 0.30679344260273 5.256330910396858e-05 0.02000301882432446 1.2190457089641167e-05 1.6979089720807845e-05 1.0347581356618837e-08 0.13335345882882974 8.126971393094111e-05 0.17343998377390027 9.678671327396313e-05']
['59907.133952964934 0.306776449771833 5.257364861720039e-05 0.02000452666163462 1.21897156441128e-05 1.698036961286806e-05 1.0346951998107515e-08 0.13336351107756414 8.1264770960752e-05 0.17341293869426885 9.678817865952607e-05']
['59907.13409324514 0.3069366211512572 5.257252439394736e-05 0.020026037290292203 1.2194006717374285e-05 1.6998628401560692e-05 1.0350594374218101e-08 0.1335069152686147 8.129337811582857e-05 0.1734297058826425 9.681158839020908e-05']
['59907.13423352535 0.3069051923772066 5.257173401189079e-05 0.02002329427263452 1.2192880940035466e-05 1.6996300055858244e-05 1.0349638784733866e-08 0.13348862848423013 8.128587293356977e-05 0.17341656389297647 9.680485708676731e-05']
['59907.13437380556 0.30692256231738096 5.258548411218172e-05 0.020016997626478964 1.219446873237102e-05 1.699095529660194e-05 1.0350986544727502e-08 0.1334466508431931 8.12964582158068e-05 0.17347591147418787 9.682121285000997e-05']
['59907.13451408577 0.3069064428849708 5.2569022381115676e-05 0.020022047594341556 1.2192828232041387e-05 1.6995241842456803e-05 1.0349594044798944e-08 0.13348031729561038 8.128552154694259e-05 0.17342612558936044 9.680308945103306e-05']
['59907.134654365975 0.3068612133872194 5.2585448902045126e-05 0.02004131156711876 1.2195280962386888e-05 1.7011593610409227e-05 1.0351675986977919e-08 0.13360874378079174 8.130187308257926e-05 0.17325246960642765 9.682574039461523e-05']
['59907.13479464618 0.306900700452022 5.257059004596393e-05 0.020025336103024025 1.2193760998163624e-05 1.699803321532195e-05 1.0350385801274158e-08 0.13350224068682684 8.12917399877575e-05 0.17339845976519516 9.680916241770701e-05']
['59907.13493492639 0.306927493020288 5.25732922139034e-05 0.02001410239341805 1.2192366886386929e-05 1.6988497746452352e-05 1.0349202442444911e-08 0.13342734928945366 8.128244590924619e-05 0.17350014373083433 9.680282571907706e-05']
['59907.1350752066 0.3068104226521192 5.2563427394981634e-05 0.02002883403065884 1.2194279279613193e-05 1.7001002348514797e-05 1.0350825732232087e-08 0.13352556020439227 8.12951951974213e-05 0.17328486244772695 9.680817456028359e-05']
['59907.13521548681 0.3069058739276285 5.257085647965188e-05 0.0200324060848223 1.2194951063214882e-05 1.7004034402259367e-05 1.0351395959863537e-08 0.13354937389881535 8.129967375476588e-05 0.17335650002881317 9.681596925939193e-05']
['59907.135355767015 0.30676506009292215 5.2566629721451455e-05 0.01999257040701468 1.2188747930526868e-05 1.697022082874204e-05 1.0346130577303791e-08 0.1332838027134312 8.12583195368458e-05 0.17348125737949094 9.677894943749038e-05']
['59907.13549604722 0.3069150390710138 5.2574799567495074e-05 0.020040254144046504 1.2194495241160656e-05 1.7010696041828488e-05 1.0351009046087002e-08 0.13360169429364338 8.129663494107105e-05 0.17331334477737043 9.681555867888205e-05']
['59907.13563632743 0.3068583735852018 5.256692258705137e-05 0.02002098536229039 1.219242979059242e-05 1.6994340191887983e-05 1.0349255837192885e-08 0.13347323574860262 8.128286527061613e-05 0.17338513783659917 9.679971868179259e-05']
['59907.13577660764 0.3068307731061822 5.2566316435851654e-05 0.020025819900905004 1.2193887495749188e-05 1.6998443875717766e-05 1.0350493175759661e-08 0.13350546600603336 8.129258330499459e-05 0.17332530710014882 9.680754993301697e-05']
['59907.13591688785 0.3069312693716564 5.257511130253543e-05 0.020045029032140775 1.219744144569679e-05 1.7014749092724028e-05 1.0353509862168525e-08 0.13363352688093852 8.131627630464528e-05 0.17329774249071786 9.683222149949574e-05']
['59907.136057168056 0.306877879388912 5.256946090620201e-05 0.020018269087486967 1.2192128854785573e-05 1.6992034546225258e-05 1.0349000394946417e-08 0.13345512724991312 8.128085903190383e-05 0.17342275213899885 9.67994125236973e-05']
['59907.136197448264 0.3068439880436898 5.2569325885052645e-05 0.020015350498353977 1.2191536853087197e-05 1.6989557170825956e-05 1.03484978882978e-08 0.13343566998902653 8.127691235391465e-05 0.17340831805466325 9.679602525824493e-05']
['59907.13633772847 0.3069035680179995 5.258625022602014e-05 0.020013139239867733 1.2191847399842776e-05 1.6987680196327074e-05 1.0348761488570929e-08 0.1334209282657849 8.12789826656185e-05 0.17348263975221462 9.680695603101833e-05']
['59907.13647800868 0.30684271570758603 5.2568611285428575e-05 0.019991855641414022 1.2189581590488767e-05 1.6969614116856722e-05 1.0346838209857359e-08 0.1332790376094268 8.126387726992512e-05 0.17356367809815923 9.678469218538612e-05']
['59907.13661828889 0.3069329013227772 5.2571216835516124e-05 0.020042904261432425 1.219517648820566e-05 1.7012945531331117e-05 1.0351587306538623e-08 0.13361936174288286 8.130117658803773e-05 0.17331353957989432 9.681742691357867e-05']
['59907.1367585691 0.30686563875637907 5.256910009802653e-05 0.020003964843224864 1.218964805509779e-05 1.6979892726590552e-05 1.0346894626769715e-08 0.1333597656214991 8.12643203673186e-05 0.17350587313487997 9.678532972449143e-05']
['59907.136898849305 0.3068683694811583 5.257025984548934e-05 0.020031318096651766 1.2195478882607642e-05 1.7003110889217415e-05 1.0351843986879096e-08 0.13354212064434512 8.130319255071762e-05 0.1733262488368132 9.681860017146154e-05']
['59907.13703912951 0.3068523702487238 5.2568091067678045e-05 0.020040909296963262 1.2195346567188795e-05 1.701125215289613e-05 1.0351731674063328e-08 0.1336060619797551 8.13023104479253e-05 0.1732463082689687 9.681668184084041e-05']
['59907.13717940972 0.30688793685669835 5.257029948784609e-05 0.020028075620530467 1.2194630256994997e-05 1.700035859000375e-05 1.0351123651086634e-08 0.13352050413686978 8.129753504663332e-05 0.17336743271982857 9.681387087034793e-05']
['59907.13731968993 0.30695694707730786 5.2575382692032656e-05 0.020009326340356726 1.2193079135626873e-05 1.6984443706702065e-05 1.0349807018376914e-08 0.1333955089357115 8.128719423751249e-05 0.17356143814159636 9.680794808392941e-05']
['59907.13745997014 0.3068334403245423 5.257309808606353e-05 0.020042550360026033 1.2195717264868118e-05 1.701264513048741e-05 1.0352046332026298e-08 0.13361700240017355 8.130478176578746e-05 0.17321643792436875 9.68214758219951e-05']
['59907.137600250346 0.3068706630664416 5.2570251128450276e-05 0.020017061386569713 1.2192033630254913e-05 1.6991009417847884e-05 1.0348919565854373e-08 0.13344707591046476 8.128022420169942e-05 0.17342358715597686 9.679930862349612e-05']
['59907.137740530554 0.306932946570848 5.257082763056241e-05 0.020048307552402778 1.2197072925548438e-05 1.7017531987154557e-05 1.035319705255125e-08 0.13365538368268517 8.131381950365626e-05 0.17327756288816284 9.68278325691301e-05']
['59907.13788081076 0.30697403888336194 5.2575716164889345e-05 0.020020529508135827 1.219271484062914e-05 1.6993953250863835e-05 1.0349497795178873e-08 0.13347019672090552 8.128476560419428e-05 0.17350384216245643 9.680608994056011e-05']
['59907.13802109097 0.3068857615703271 5.2577478446427836e-05 0.02003175610930132 1.2193819247403845e-05 1.7003482685901753e-05 1.035043524476489e-08 0.13354504072867548 8.129212831602563e-05 0.1733407208416516 9.681322929194006e-05']
['59907.13816137118 0.3067845431376143 5.257103337325313e-05 0.020003168688614646 1.2191526728676676e-05 1.697921692956825e-05 1.034848929443124e-08 0.13335445792409764 8.127684485784452e-05 0.17343008521351663 9.679689592119068e-05']
['59907.13830165139 0.30696867091293706 5.2577902942670186e-05 0.01999442017909355 1.2190320790416493e-05 1.6971790964048416e-05 1.0347465662243656e-08 0.13329613452729033 8.126880526944329e-05 0.17367253638564673 9.679387680928758e-05']
['59907.138441931595 0.30689488352108923 5.256893510759467e-05 0.020027364286889216 1.2193623800224496e-05 1.6999754791256055e-05 1.0350269344046456e-08 0.1335157619125948 8.129082533482998e-05 0.17337912160849445 9.680749569100698e-05']
['59907.1385822118 0.30682812478917226 5.2567143590568445e-05 0.019993984587998677 1.2190286423145084e-05 1.6971421222843532e-05 1.0347436490397656e-08 0.13329323058665787 8.126857615430057e-05 0.1735348942025144 9.678784043163063e-05']
['59907.13872249201 0.30687409574912816 5.257557622498729e-05 0.02003324287851617 1.2195719509135028e-05 1.7004744694807246e-05 1.0352048237019217e-08 0.13355495252344113 8.130479672756686e-05 0.17331914322568703 9.682283401295594e-05']
['59907.13886277222 0.30680937525086327 5.2566476694017014e-05 0.0200241157717873 1.2193054839761674e-05 1.6996997365996437e-05 1.0349786395406017e-08 0.13349410514524868 8.128703226507783e-05 0.1733152701056146 9.680297560760432e-05']
['59907.13900305243 0.3068744753106296 5.2570157423117185e-05 0.02000858258074567 1.21927258165257e-05 1.698381238393635e-05 1.0349507111809233e-08 0.13339055053830448 8.128483877683801e-05 0.17348392477232513 9.680313252404527e-05']
['59907.139143332635 0.30691533975655255 5.257766580532019e-05 0.020031039749483146 1.2193827025244818e-05 1.7002874620802578e-05 1.0350441846801358e-08 0.1335402649965543 8.12921801682988e-05 0.17337507475999825 9.681337458249809e-05']
['59907.13928361285 0.30689838904072564 5.256988015279972e-05 0.02003187284430368 1.219450452462498e-05 1.700358177364926e-05 1.035101692613626e-08 0.13354581896202455 8.129669683083319e-05 0.17335257007870108 9.681293929472511e-05']
['59907.13942389306 0.3068549893817839 5.2568137259021324e-05 0.020012652993107404 1.2192636632558671e-05 1.6987267457257908e-05 1.0349431410106848e-08 0.13341768662071601 8.128424421705782e-05 0.1734373027610679 9.680153621106228e-05']
['59907.13956417327 0.3069249869756455 5.257220157299869e-05 0.020032214637969014 1.2193714668219757e-05 1.7003871897123154e-05 1.03503464751964e-08 0.1335480975864601 8.129143112146506e-05 0.1733768893891854 9.68097781838586e-05']
['59907.139704453475 0.306901378402202 5.257117818651529e-05 0.0200110324023064 1.219207692844568e-05 1.6985891857062127e-05 1.0348956318500174e-08 0.13340688268204268 8.128051285630455e-05 0.17349449572015932 9.680005447365322e-05']
['59907.13984473368 0.30687539023971777 5.257158336449493e-05 0.020039825518989876 1.219405878340555e-05 1.7010332213580513e-05 1.0350638569238063e-08 0.13359883679326587 8.129372522270366e-05 0.1732765534464519 9.681136884702377e-05']
['59907.13998501389 0.3068619171132241 5.2566527011123744e-05 0.020041349769304044 1.2194569593386841e-05 1.7011626037431226e-05 1.0351072158216748e-08 0.13360899846202695 8.129713062257895e-05 0.17325291865119713 9.68114828389477e-05']
['59907.1401252941 0.3069486194439281 5.2574082506220424e-05 0.020034678834278626 1.2195333215793785e-05 1.7005963571914747e-05 1.0351720341047259e-08 0.13356452556185752 8.130222143862524e-05 0.17338409388207057 9.681986037082539e-05']
['59907.14026557431 0.30702889768508856 5.257654182218169e-05 0.0200745041947789 1.219840184483676e-05 1.70397683878296e-05 1.0354325074277683e-08 0.13383002796519267 8.13226789655784e-05 0.1731988697198959 9.683837495599638e-05']
['59907.140405854516 0.3069418075938984 5.257469158797413e-05 0.020009477242169914 1.2192569442250789e-05 1.6984571796139346e-05 1.0349374377202167e-08 0.13339651494779942 8.128379628167192e-05 0.17354529264609897 9.680471958293635e-05']
['59907.140546134724 0.30688552565103167 5.2574391752648925e-05 0.020034665071030456 1.2196525987107539e-05 1.7005951889306856e-05 1.035273279678359e-08 0.13356443380686972 8.13101732473836e-05 0.17332109184416195 9.682670572564438e-05']
['59907.14068641493 0.30687907348467847 5.2570095037698156e-05 0.020016510219597248 1.2193599788291895e-05 1.6990541572791155e-05 1.0350248962085033e-08 0.13344340146398165 8.12906652552793e-05 0.17343567202069682 9.680799114700445e-05']
['59907.14082669514 0.3069368686467575 5.257255739652327e-05 0.020016566520415297 1.2191890824252779e-05 1.699058936240978e-05 1.0348798348354945e-08 0.13344377680276864 8.12792721616852e-05 0.17349309184398887 9.679976174735156e-05']
['59907.14096697535 0.3070024558919695 5.257743854233966e-05 0.02002689150460384 1.2194470306893521e-05 1.6999353481188192e-05 1.0350987881223712e-08 0.13351261003069226 8.129646871262348e-05 0.17348984586127725 9.681685219431622e-05']
['59907.14110725556 0.30698389955113237 5.257541115379133e-05 0.020012012212699812 1.2192559827886542e-05 1.698672354595495e-05 1.034936621627633e-08 0.1334134147513321 8.128373218591028e-05 0.17357048479980028 9.680505656245954e-05']
['59907.141247535765 0.3068270608474295 5.2565487277726e-05 0.020033708278258178 1.2195468320145152e-05 1.700513973837767e-05 1.0351835021182475e-08 0.13355805518838787 8.130312213430101e-05 0.17326900565904163 9.681594972694242e-05']
['59907.14138781597 0.3068132636451892 5.2565327329143434e-05 0.020013369950070255 1.219141818122972e-05 1.6987876029229225e-05 1.034839715649661e-08 0.1334224663338017 8.127612120819814e-05 0.17339079731138748 9.679318940849976e-05']
['59907.14152809618 0.3068585111210232 5.258601894923289e-05 0.02003881822370325 1.21949822465219e-05 1.700947719478574e-05 1.0351422429076625e-08 0.13359212149135502 8.129988164347934e-05 0.17326638962966817 9.682437784036018e-05']
['59907.14166837639 0.30682383204429775 5.256627980202195e-05 0.020010484060017784 1.21918139208412e-05 1.6985426409671516e-05 1.034873307071178e-08 0.13340322706678523 8.127875947227466e-05 0.17342060497751252 9.679592198835827e-05']
['59907.1418086566 0.3068976969615387 5.256850627858331e-05 0.020041908355669387 1.2196163184256546e-05 1.701210018026423e-05 1.0352424840159038e-08 0.13361272237112926 8.130775456171031e-05 0.17328497459040942 9.682147904379884e-05']
['59907.141948936805 0.30692847192659867 5.258201123555358e-05 0.02002814173709768 1.2194071168914009e-05 1.7000414711489043e-05 1.0350649082384165e-08 0.13352094491398456 8.129380779276007e-05 0.1734075270126141 9.681710123228283e-05']
['59907.14208921701 0.3069406167588813 5.2573118273690774e-05 0.020024464204521773 1.2193209383385416e-05 1.6997293124887244e-05 1.0349917576108108e-08 0.13349642803014516 8.128806255590277e-05 0.17344418872873613 9.680744743619595e-05']
['59907.14222949722 0.30693532226803893 5.257316474261092e-05 0.02011141050733842 1.2219688712782973e-05 1.7071095438897026e-05 1.0372393928979467e-08 0.1340760700489228 8.146459141855316e-05 0.17285925221911613 9.695574921604966e-05']
['59907.14236977743 0.30692821420901795 5.257347991706902e-05 0.020036394356611552 1.2194197835455509e-05 1.700741975249752e-05 1.035075660028392e-08 0.13357596237741037 8.129465223637007e-05 0.17335225183160757 9.681317716521243e-05']
['59907.14251005764 0.3070151846090469 5.257660170196645e-05 0.02004164851202157 1.2195325569395439e-05 1.7011879618125663e-05 1.0351713850582758e-08 0.1336109900801438 8.130217046263626e-05 0.17340419452890313 9.68211855353093e-05']
['59907.142650337846 0.3068726276655188 5.256808638298133e-05 0.02003078901648829 1.219440457818993e-05 1.7002661792026434e-05 1.0350932088967288e-08 0.13353859344325528 8.129603052126621e-05 0.17333403422226354 9.681140575615683e-05']
['59907.142790618054 0.30684887839313413 5.257189419961038e-05 0.020033847869618635 1.2211176597971447e-05 1.7005258227204492e-05 1.0365168621521226e-08 0.13355898579745756 8.140784398647632e-05 0.17328989259567656 9.69073842504352e-05']
['59907.14293089826 0.30689644089402135 5.2580132462962773e-05 0.02000817625745624 1.2190967594219478e-05 1.6983467486016318e-05 1.034801468636342e-08 0.13338784171637494 8.127311729479652e-05 0.1735085991776464 9.6798708279793e-05']
['59907.14307117847 0.30691665002839924 5.2572322884542146e-05 0.020052143227387062 1.2196682685402932e-05 1.702078780920172e-05 1.0352865806427781e-08 0.13368095484924708 8.131121790268622e-05 0.17323569517915216 9.682645966002616e-05']
['59907.14321145868 0.306914332267749 5.257822096449918e-05 0.02002936362332943 1.2194226142163652e-05 1.700145188073533e-05 1.0350780627764045e-08 0.13352909082219622 8.129484094775768e-05 0.17338524144555278 9.68159102860316e-05']
['59907.14335173889 0.306922823020473 5.257096166599075e-05 0.020022680308646137 1.2192390148301672e-05 1.6995778907038876e-05 1.0349222187771404e-08 0.13348453539097424 8.128260098867782e-05 0.17343828762949878 9.680169024336134e-05']
['59907.143492019095 0.3068614011508356 5.2567737538179306e-05 0.020030342067349587 1.2193996103975093e-05 1.7002282409814512e-05 1.0350585365285064e-08 0.1335356137823306 8.129330735983396e-05 0.173325787368505 9.680892960560685e-05']
['59907.1436322993 0.3068528850976847 5.257082621627444e-05 0.020029019395286153 1.2192734076569514e-05 1.7001159690897257e-05 1.0349514123152182e-08 0.13352679596857436 8.128489384379677e-05 0.17332608912911035 9.680354196133031e-05']
['59907.14377257951 0.306871635657203 5.256774937344852e-05 0.020024794836797425 1.219358408830179e-05 1.6997573774279327e-05 1.035023563551953e-08 0.13349863224531616 8.12905605886786e-05 0.17337300341188683 9.680662949928235e-05']
['59907.14391285972 0.3068606457144967 5.258938737282175e-05 0.02002451625771357 1.2192597786082756e-05 1.6997337309008727e-05 1.0349398436193974e-08 0.1334967750514238 8.128398524055171e-05 0.17336387066307293 9.681286030706319e-05']
['59907.14405313993 0.3069002855722547 5.257071354925754e-05 0.020017067062311864 1.2192469007709828e-05 1.6991014235567454e-05 1.034928912571603e-08 0.13344711374874577 8.128312671806553e-05 0.17345317182350892 9.680199694295149e-05']
['59907.144193420136 0.3068851646813679 5.2570362251274326e-05 0.020015094523865323 1.2192298992306172e-05 1.6989339892931688e-05 1.0349144812159263e-08 0.13343396349243547 8.128199328204115e-05 0.17345120118893242 9.680085443389429e-05']
['59907.144333700344 0.3069127418723546 5.257107825952777e-05 0.02005170388200235 1.2196685533553038e-05 1.7020414881256645e-05 1.0352868224012677e-08 0.13367802588001568 8.131123689035359e-05 0.17323471599233894 9.682579983665816e-05']
['59907.14447398055 0.3068796162598245 5.2569858418532394e-05 0.020016326773607346 1.21926592711264e-05 1.6990385858998712e-05 1.034945062631996e-08 0.13344217849071566 8.128439514084267e-05 0.17343743776910886 9.680259762814833e-05']
['59907.14461426077 0.30681771437334815 5.256472919268543e-05 0.02002944890732307 1.2194137564421767e-05 1.7001524272037484e-05 1.0350705440641544e-08 0.1335296593821538 8.129425042947845e-05 0.17328805499119435 9.680808802982896e-05']
['59907.144754540976 0.3068417914993281 5.256554218573982e-05 0.020042932140244225 1.2195350521045677e-05 1.7012969195601547e-05 1.0351735030201285e-08 0.1336195476016282 8.130233680697118e-05 0.1732222438976999 9.681532004571886e-05']
['59907.144894821184 0.306898259202644 5.256996786556827e-05 0.020027454975114926 1.2193451189240424e-05 1.6999831769812868e-05 1.0350122827292604e-08 0.1335163665007662 8.128967459493616e-05 0.17338189270187782 9.680709022141658e-05']
['59907.14503510139 0.3068781003376349 5.256810168811672e-05 0.020004974865682458 1.2190398437296579e-05 1.6980750060279938e-05 1.034753157096249e-08 0.13336649910454973 8.126932291531052e-05 0.17351160123308518 9.678898781475708e-05']
['59907.1451753816 0.3068602442553627 5.256770222005433e-05 0.02001244154835028 1.2192520044532461e-05 1.6987087977373713e-05 1.034933244711657e-08 0.13341627698900188 8.128346696354974e-05 0.1734439672663608 9.680064730316006e-05']
['59907.14531566181 0.3068963626989716 5.257066154983834e-05 0.02003008522992148 1.2193826243367566e-05 1.700206439943449e-05 1.0350441183123333e-08 0.1335339015328099 8.129217495578378e-05 0.1733624611661617 9.680956649437807e-05']
['59907.145455942016 0.3069191077143947 5.257147812556195e-05 0.020028197971597488 1.2192386606397569e-05 1.7000462444814995e-05 1.0349219181309824e-08 0.1335213198106499 8.128257737598379e-05 0.17339778790374477 9.680195089557457e-05']
['59907.145596222224 0.3068992833084923 5.257047262259114e-05 0.020014632353222057 1.2191703261784726e-05 1.6988947590305407e-05 1.0348639140387323e-08 0.1334308823548137 8.127802174523151e-05 0.1734684009536786 9.679757956984737e-05']
['59907.14573650243 0.30675216049278964 5.256163198599448e-05 0.020004402460089284 1.2191010188732303e-05 1.6980264187322033e-05 1.0348050841708833e-08 0.1333626830672619 8.127340125821537e-05 0.17338947742552774 9.678889868734947e-05']
['59907.14587678264 0.30682873522251525 5.2578766241354726e-05 0.020038978551511204 1.2194965279260353e-05 1.7009613285255878e-05 1.0351408026817712e-08 0.13359319034340802 8.129976852840236e-05 0.17323554487910722 9.682034405141735e-05']
['59907.14601706285 0.3068626002363497 5.2575710520917984e-05 0.020012913065369644 1.2191459468139787e-05 1.6987488213450422e-05 1.0348432201914327e-08 0.13341942043579763 8.127639645426525e-05 0.17344317980055207 9.679905969259343e-05']
['59907.14615734306 0.30688392528838415 5.257180195075207e-05 0.0200080046662001 1.2191815555617438e-05 1.698332183483442e-05 1.0348734458352949e-08 0.13338669777466736 8.127877037078293e-05 0.1734972275137168 9.679893012495314e-05']
['59907.146297623265 0.30681065651417383 5.2564738542002585e-05 0.02001004146737824 1.2192210978616721e-05 1.6985050725370933e-05 1.0349070103819337e-08 0.13340027644918828 8.128140652411148e-05 0.17341038006498555 9.679730773387742e-05']
['59907.14643790347 0.30696183227109797 5.257464925495667e-05 0.02003041363223621 1.2193861676107155e-05 1.7002343155976956e-05 1.0350471259366815e-08 0.13353609088157475 8.12924111740477e-05 0.1734257413895232 9.681193035350629e-05']
['59907.14657818368 0.30698570442485007 5.25827419437193e-05 0.020013461129861475 1.2191693900921203e-05 1.69879534250398e-05 1.0348631194639582e-08 0.1334230741990765 8.12779593394747e-05 0.17356263022577356 9.680419115259979e-05']
['59907.14671846389 0.30680242107802835 5.25663426076913e-05 0.02001138871218467 1.21926012583671e-05 1.6986194302280255e-05 1.0349401383560466e-08 0.13340925808123114 8.1284008389114e-05 0.17339316299679722 9.680036360959982e-05']
['59907.1468587441 0.30687296886137916 5.257388780878734e-05 0.02002096150209714 1.2193832962372601e-05 1.699431993872692e-05 1.0350446886391941e-08 0.1334730766806476 8.129221974915067e-05 0.17339989218073157 9.681135610596083e-05']
['59907.146999024306 0.30685744286747146 5.2566589262387316e-05 0.020028033071413355 1.2193309647942276e-05 1.7000322473191416e-05 1.0350002683307261e-08 0.13352022047608905 8.128873098628185e-05 0.1733372223913824 9.68044631824413e-05']
['59907.147139304514 0.306905752719865 5.257043770123491e-05 0.020036762544395622 1.2195439842675407e-05 1.700773227999523e-05 1.03518108487554e-08 0.13357841696263748 8.130293228450272e-05 0.1733273357572275 9.681847818550886e-05']
['59907.14727958472 0.3068363512621529 5.256741797202736e-05 0.020007265663306927 1.2192351592784481e-05 1.6982694549696244e-05 1.0349189460831967e-08 0.13338177108871285 8.128234395189654e-05 0.17345458017344006 9.679954995019468e-05']
['59907.14741986493 0.30687837102934756 5.256880487281757e-05 0.020028555739256514 1.2194066283413786e-05 1.700076612743586e-05 1.0350644935442779e-08 0.13352370492837676 8.129377522275858e-05 0.1733546661009708 9.68099020541017e-05']
['59907.14756014514 0.30696476543925755 5.257306301329289e-05 0.020054340568607262 1.2196404243687977e-05 1.702265297035828e-05 1.0352629457759525e-08 0.1336956037907151 8.130936162458652e-05 0.17326916164854245 9.682530269716407e-05']
['59907.14770042535 0.30687789363740753 5.256964948598196e-05 0.020026069748837437 1.2194546564903099e-05 1.6998655953229595e-05 1.0351052611032644e-08 0.13350713165891626 8.1296977099354e-05 0.17337076197849127 9.681304939196932e-05']
['59907.147840705555 0.30681766967607205 5.2566546277979555e-05 0.02001670180033557 1.2193329630402053e-05 1.6990704191572517e-05 1.035001964494592e-08 0.1334446786689038 8.128886420268036e-05 0.17337299100716824 9.680455170577867e-05']
['59907.14798098576 0.30684670937175706 5.256981007785041e-05 0.02002619719531938 1.2203048373315927e-05 1.6998764133163363e-05 1.0358269170147959e-08 0.13350798130212924 8.135365582210618e-05 0.17333872806962783 9.686073635505242e-05']
['59907.14812126597 0.3069108103854671 5.2570424475721655e-05 0.02002259951721217 1.2193137959494006e-05 1.699571032913981e-05 1.034985694962612e-08 0.13348399678141448 8.12875863966267e-05 0.1734268136040526 9.680558471362385e-05']
['59907.14826154618 0.30685874334201035 5.2568038550474196e-05 0.020019525662420514 1.2191844674094218e-05 1.6993101160156137e-05 1.0348759174883695e-08 0.13346350441613677 8.127896449396147e-05 0.17339523892587358 9.679704926419395e-05']
['59907.14840182639 0.3078365794845431 5.321167475904797e-05 0.020029459604002847 1.2193871630901089e-05 1.700153335166128e-05 1.0350479709258345e-08 0.13352973069335233 8.12924775393406e-05 0.1743068487911908 9.715940116708676e-05']
['59907.148542106595 0.30691618495921136 5.257289495178994e-05 0.020010819679015943 1.2192539435983254e-05 1.698571129192513e-05 1.0349348907091225e-08 0.13340546452677296 8.128359623988837e-05 0.1735107204324384 9.680357587042504e-05']
['59907.1486823868 0.30697885371577477 5.257418696940431e-05 0.020040898908723292 1.2195630681898823e-05 1.7011243335084176e-05 1.035197283811936e-08 0.13360599272482196 8.130420454599216e-05 0.1733728609909528 9.682158236855259e-05']
['59907.14882266701 0.3068222903392299 5.256516843200978e-05 0.020017966085811054 1.2192962266628407e-05 1.6991777350414663e-05 1.034970781688998e-08 0.13345310723874038 8.128641511085604e-05 0.17336918310048954 9.680174695665344e-05']
['59907.14896294722 0.30687072882687205 5.257432193993643e-05 0.020015699695307164 1.2191936959681712e-05 1.698985357840575e-05 1.0348837509323298e-08 0.13343799796871442 8.127957973121142e-05 0.17343273085815764 9.680097834591567e-05']
['59907.14910322743 0.30685227205114496 5.256719177329175e-05 0.020038537687082983 1.2194863429483642e-05 1.7009239067906624e-05 1.0351321574042159e-08 0.13359025124721988 8.129908952989096e-05 0.17326202080392508 9.681348877774862e-05']
['59907.149243507636 0.306929824342716 5.257923176456669e-05 0.020029803660562354 1.219435208959969e-05 1.7001825395939404e-05 1.0350887535268128e-08 0.13353202440374903 8.129568059733127e-05 0.17339779993896695 9.681716426716558e-05']
['59907.149383787844 0.3068902734258801 5.257043272290936e-05 0.020008353229684115 1.2190767369493937e-05 1.6983617704708885e-05 1.0347844730337825e-08 0.13338902153122745 8.12717824632929e-05 0.17350125189465265 9.679231902085383e-05']
['59907.14952406805 0.30688683896625035 5.2571825946886374e-05 0.02000652920942384 1.2196517312294494e-05 1.698206942822503e-05 1.0352725433373581e-08 0.13337686139615895 8.131011541529663e-05 0.1735099775700914 9.682526401842947e-05']
['59907.14966434826 0.3068216281352033 5.25653381611894e-05 0.020026854829564997 1.2193973527960693e-05 1.6999322350448354e-05 1.0350566202168866e-08 0.1335123655304333 8.129315685307129e-05 0.17330926260477 9.680750036612993e-05']
['59907.14980462847 0.3069794704436284 5.257471091810938e-05 0.02003562740851826 1.2195655939686818e-05 1.700676874673676e-05 1.0351994277595685e-08 0.13357084939012173 8.130437293124545e-05 0.17340862105350666 9.682200827221984e-05']
['59907.149944908684 0.306914730935424 5.25740696260794e-05 0.019999784063025383 1.21915088257596e-05 1.697634397013867e-05 1.0348474097963248e-08 0.13333189375350257 8.127672550506401e-05 0.1735828371819214 9.679844474924877e-05']
['59907.15008518889 0.3068192897368298 5.2568419903754815e-05 0.020010264422996006 1.2192512904595768e-05 1.6985239975977106e-05 1.0349326386550075e-08 0.13340176281997337 8.128341936397179e-05 0.17341752691685644 9.680099707480698e-05']
['59907.1502254691 0.3069219637187622 5.2571013088868783e-05 0.020040309933408933 1.2195790699618012e-05 1.7010743397310098e-05 1.0352108665377979e-08 0.13360206622272622 8.130527133078675e-05 0.17331989749603596 9.682075481715099e-05']
['59907.15036574931 0.30686111294248325 5.2568029642523986e-05 0.02003007829130165 1.2193606057987553e-05 1.700205850975105e-05 1.0350254283967996e-08 0.1335338552753443 8.129070705325036e-05 0.17332725766713894 9.68069046799589e-05']
['59907.15050602952 0.3068797975652692 5.256949021687329e-05 0.020040706020618713 1.2195561998035793e-05 1.7011079606575872e-05 1.0351914537445697e-08 0.13360470680412478 8.130374665357195e-05 0.1732750907611444 9.681864759213563e-05']
['59907.150646309725 0.3068217638535663 5.256322866914799e-05 0.020033984149542963 1.2195171970801849e-05 1.7005373905197034e-05 1.0351583472047177e-08 0.13355989433028642 8.130114647201233e-05 0.17326186952327988 9.681306433425576e-05']
['59907.15078658993 0.3069225901055326 5.257067655698668e-05 0.0200333056480134 1.2193675802260227e-05 1.7004797975211298e-05 1.0350313484745321e-08 0.13355537098675602 8.129117201506818e-05 0.17336721911877656 9.680873246377474e-05']
['59907.15092687014 0.3068325659327902 5.257489324784401e-05 0.020006360489760743 1.2190794288274254e-05 1.698192621452701e-05 1.0347867579708223e-08 0.13337573659840496 8.127196192182837e-05 0.17345682933438522 9.679489239957505e-05']
['59907.15106715035 0.3068321473928271 5.256565436913816e-05 0.020028640407003088 1.2192880369080438e-05 1.7000837995651264e-05 1.0349638300092187e-08 0.1335242693800206 8.128586912720292e-05 0.1733078780128065 9.680155235852602e-05']
['59907.15120743056 0.30689767011185975 5.256976619913425e-05 0.020003593278664127 1.2191551488002398e-05 1.6979577332795782e-05 1.0348510310799645e-08 0.13335728852442752 8.127700992001598e-05 0.17354038158743224 9.679634631415595e-05']
['59907.151347710766 0.30701939889823665 5.25782994363296e-05 0.020034158475931516 1.2194524593984518e-05 1.7005521878031432e-05 1.0351033961537728e-08 0.1335610565062101 8.129683062656345e-05 0.17345834239202654 9.681762361027295e-05']
['59907.151487990974 0.30691078685795803 5.257089218776827e-05 0.020007928899244493 1.2191511174679251e-05 1.698325752184504e-05 1.0348476091788173e-08 0.13338619266162996 8.127674116452835e-05 0.17352459419632807 9.679673217492258e-05']
['59907.15162827118 0.3068784499134168 5.257117507649064e-05 0.020021916149638767 1.2193106036791022e-05 1.6995130268727777e-05 1.0349829852794244e-08 0.1334794409975918 8.128737357860682e-05 0.173399008915825 9.680581362826831e-05']
['59907.15176855139 0.30684397604432134 5.2571173131281584e-05 0.020027496362104838 1.2193387161717824e-05 1.6999866900180995e-05 1.0350068479043454e-08 0.13351664241403227 8.12892477447855e-05 0.17332733363028907 9.680738630555159e-05']
['59907.1519088316 0.30693178220449285 5.257006839392222e-05 0.020035163138999675 1.2194969846495679e-05 1.7006374662529773e-05 1.0351411903607464e-08 0.13356775425999784 8.129979897663786e-05 0.173364027944495 9.681564648641967e-05']
['59907.152049111806 0.3069051644845977 5.2570817422973486e-05 0.020047517191718177 1.2196985770556798e-05 1.7016861108169068e-05 1.0353123073096663e-08 0.13365011461145454 8.131323847037866e-05 0.17325504987314316 9.682733908902113e-05']
['59907.152189392014 0.30693735591243054 5.257338954638504e-05 0.020033301442922483 1.2194638377814273e-05 1.700479440581927e-05 1.0351130544252126e-08 0.13355534295281657 8.129758918542849e-05 0.17338201295961397 9.68155942798403e-05']
['59907.15232967222 0.3069332961063106 5.257259522050986e-05 0.020017253841448396 1.2192303451916804e-05 1.699117277862263e-05 1.0349148597594337e-08 0.13344835894298931 8.12820230127787e-05 0.17348493716332128 9.680209209138748e-05']
['59907.15246995243 0.30666962754612964 5.2572410278813125e-05 0.02001337979928515 1.2192582550741293e-05 1.6987884389502483e-05 1.0349385504034488e-08 0.13342253199523432 8.128388367160863e-05 0.17324709555089532 9.68035540012011e-05']
['59907.15261023264 0.30687846823398657 5.256752229732427e-05 0.020026815875597414 1.2195037019001026e-05 1.6999289285293722e-05 1.0351468921400881e-08 0.1335121058373161 8.130024679334017e-05 0.17336636239667047 9.681464005581854e-05']
['59907.15275051285 0.30687020152241457 5.257056304643702e-05 0.02000105527933651 1.2191258298264473e-05 1.6977423012056827e-05 1.0348261443620688e-08 0.13334036852891007 8.127505532176316e-05 0.1735298329935045 9.67951378767295e-05']
['59907.152890793055 0.306883627721914 5.256946644754123e-05 0.020012101345804813 1.2191751445771927e-05 1.6986799204484306e-05 1.034868004022594e-08 0.1334140089720321 8.127834297181285e-05 0.17346961874988193 9.679730284890588e-05']
['59907.15303107326 0.30674594775206576 5.256771792185928e-05 0.020008793306494035 1.2190289311117421e-05 1.6983991253506957e-05 1.034743894178471e-08 0.1333919553766269 8.126859540744947e-05 0.17335399237543886 9.678816852803797e-05']
['59907.15317135347 0.3068156086707545 5.2564926863829075e-05 0.020036730459838954 1.2195139722395852e-05 1.700770504577768e-05 1.0351556098749996e-08 0.13357820306559304 8.130093148263901e-05 0.1732374056051615 9.681380581376017e-05']
['59907.15331163368 0.306856160562612 5.256646937824012e-05 0.020032090908021234 1.2194685615147894e-05 1.7003766871881565e-05 1.0351170640546229e-08 0.13354727272014155 8.129790410098596e-05 0.17330888784247045 9.681210107267874e-05']
['59907.15345191389 0.30693381219076366 5.257444101444358e-05 0.020025368573935123 1.219309043371041e-05 1.6998060777487327e-05 1.0349816608488074e-08 0.1335024571595675 8.12872695580694e-05 0.17343135503119617 9.680749991703867e-05']
['59907.153592194096 0.3068943799406107 5.258552722344118e-05 0.020004022749396375 1.2191916432562282e-05 1.697994187887552e-05 1.0348820085363166e-08 0.1333601516626425 8.127944288374855e-05 0.1735342282779682 9.680694969298339e-05']
['59907.153732474304 0.3068956997570901 5.257136653959567e-05 0.02003097680352082 1.219615019510268e-05 1.70028211906103e-05 1.0352413814622803e-08 0.13353984535680546 8.130766796735122e-05 0.17335585440028461 9.682295931301392e-05']
['59907.15387275451 0.3068578570808804 5.257366259283727e-05 0.020011341389021577 1.2193351396697859e-05 1.6986154133131835e-05 1.0350038120751628e-08 0.1334089425934772 8.128900931131906e-05 0.17344891448740324 9.680853801830299e-05']
['59907.15401303472 0.3068644919941437 5.2569123777807005e-05 0.020000328846377854 1.2190923069794544e-05 1.6976806396610455e-05 1.0347976892857732e-08 0.13333552564251902 8.127282046529697e-05 0.17352896635162465 9.679247967249723e-05']
['59907.15415331493 0.306840597001939 5.256673783226392e-05 0.020011645202234512 1.2190837686697438e-05 1.698641201779645e-05 1.034790441743394e-08 0.13341096801489677 8.127225124464959e-05 0.17342962898704223 9.679070590040871e-05']
['59907.15429359514 0.3068474662242934 5.2567600496500574e-05 0.020028767904635994 1.2194095634296498e-05 1.7000946219003314e-05 1.0350669849245806e-08 0.13352511936423994 8.129397089530999e-05 0.17332234686005343 9.680941238271821e-05']
['59907.154433875345 0.30686577215383787 5.2569835159741505e-05 0.02001944849803995 1.2193825941745053e-05 1.6993035660995615e-05 1.0350440927098192e-08 0.133462989986933 8.129217294496702e-05 0.17340278216690486 9.680911605234716e-05']
['59907.15457415555 0.3069607627746078 5.257404063809488e-05 0.020038458744302583 1.2194209233315646e-05 1.700917205919344e-05 1.0350766275088087e-08 0.1335897249620172 8.12947282221043e-05 0.1733710378125906 9.681354546612708e-05']
['59907.15471443576 0.3068711891532923 5.2570682931995006e-05 0.0200300094790958 1.219537902569208e-05 1.700200010013662e-05 1.0351759225696625e-08 0.13353339652730534 8.130252683794721e-05 0.17333779262598698 9.681827086955993e-05']
['59907.15485471597 0.30693362343791686 5.257448105603728e-05 0.020020106494818918 1.2196791864186383e-05 1.6993594186008476e-05 1.0352958480257472e-08 0.13346737663212613 8.131194576124256e-05 0.17346624680579073 9.682824268668142e-05']
['59907.15499499618 0.3068734551726724 5.256869637079261e-05 0.020014266039011415 1.219319951569865e-05 1.6988636653146215e-05 1.0349909200155438e-08 0.1334284402600761 8.128799677132434e-05 0.17344501491259628 9.680499086937315e-05']
['59907.155135276385 0.30697654290852827 5.2577403114062437e-05 0.02003400045952844 1.2194434403583326e-05 1.7005387749542687e-05 1.0350957405547494e-08 0.13356000306352292 8.129622935722218e-05 0.17341653984500535 9.681663196951593e-05']
['59907.1552755566 0.3068494860170363 5.2567760790826686e-05 0.02000951065131928 1.2190870079975231e-05 1.6984600154706102e-05 1.034793191370212e-08 0.1333967376754619 8.127246719983488e-05 0.17345274834157443 9.67914428000214e-05']
['59907.15541583681 0.3068254863873487 5.2566500827974285e-05 0.020022442530870488 1.2193208946772497e-05 1.6995577074994333e-05 1.0349917205499552e-08 0.13348295020580325 8.128805964514998e-05 0.17334253618154544 9.680385142219746e-05']
['59907.15555611702 0.30688255882653814 5.2579062996677495e-05 0.020026624144735786 1.219379394927024e-05 1.699912653908374e-05 1.0350413771042148e-08 0.1335108276315719 8.129195966180161e-05 0.17337173119496624 9.681394822681575e-05']
['59907.155696397225 0.3069017860165456 5.2570015958033424e-05 0.020034827168055186 1.2195084081503607e-05 1.7006089481534835e-05 1.0351508869293788e-08 0.13356551445370124 8.130056054335737e-05 0.17333627156284437 9.681625753194557e-05']
['59907.15583667743 0.30696359939944273 5.2573673989046905e-05 0.020026181826538262 1.21929427447394e-05 1.6998751087736777e-05 1.0349691246195934e-08 0.13350787884358842 8.128628496492935e-05 0.17345572055585431 9.680625661653428e-05']
['59907.15597695764 0.30687856819885817 5.256883280484117e-05 0.020031140331759758 1.2193948358899395e-05 1.7002959997690633e-05 1.03505448380061e-08 0.13354093554506505 8.12929890593293e-05 0.17333763265379312 9.680925706079754e-05']
['59907.15611723785 0.3069344773098388 5.2573720587828325e-05 0.020036685290036414 1.2196632324309952e-05 1.7007666704458464e-05 1.0352823058604383e-08 0.1335779019335761 8.131088216206636e-05 0.1733565753762627 9.6826936615905e-05']
['59907.15625751806 0.3070014520066653 5.258227080564172e-05 0.020046303307508256 1.2197386839384598e-05 1.7015830731249865e-05 1.0353463510891142e-08 0.13364202205005504 8.1315912262564e-05 0.17335942995661024 9.683580324534333e-05']
['59907.156397798266 0.3069286727751914 5.2571873577384335e-05 0.0200308092770258 1.2195191077928407e-05 1.7002678989704804e-05 1.0351599690679922e-08 0.13353872851350534 8.130127385285604e-05 0.17338994426168608 9.68178651981832e-05']
['59907.156538078474 0.30696604929140686 5.2577832793325106e-05 0.020007901617184125 1.2191794293525106e-05 1.6983234364112962e-05 1.0348716410528442e-08 0.1333860107812275 8.127862862350072e-05 0.17358003851017936 9.680208661056746e-05']
['59907.15667835868 0.30693340149591886 5.257345090089645e-05 0.020030482484560738 1.2194408180656756e-05 1.7002401599645175e-05 1.0350935146836102e-08 0.1335365498970716 8.129605453771171e-05 0.17339685159884727 9.68143389329678e-05']
['59907.15681863889 0.30699437910546246 5.2581115233996265e-05 0.020037740329796692 1.2195132927671736e-05 1.7008562250021166e-05 1.0351550331209036e-08 0.13358493553197795 8.130088618447824e-05 0.1734094435734845 9.682255818574656e-05']
['59907.1569589191 0.3068581086752119 5.257046430708217e-05 0.020018207460212614 1.2193604688964096e-05 1.6991982235370097e-05 1.0350253121904794e-08 0.13345471640141743 8.12906979264273e-05 0.17340339227379448 9.680821910782087e-05']
['59907.15709919931 0.3068459612656599 5.256731796116937e-05 0.020026003145548393 1.219346094085177e-05 1.6998599418601982e-05 1.0350131104717398e-08 0.1335066876369893 8.128973960567847e-05 0.17333927362867058 9.680570583798091e-05']
['59907.157239479515 0.3069061635618404 5.256976236367903e-05 0.020027266445174097 1.2192851208991116e-05 1.6999671740628844e-05 1.0349613548239619e-08 0.13351510963449398 8.128567472660745e-05 0.17339105392734644 9.680361992577299e-05']
['59907.15737975972 0.30696416280728844 5.257432210630816e-05 0.020035475338471984 1.2195220165229266e-05 1.7006639665672433e-05 1.0351624380747725e-08 0.13356983558981322 8.130146776819511e-05 0.17339432721747522 9.681935760064054e-05']
['59907.15752003993 0.30683896177320313 5.2576966607847264e-05 0.02003090281775344 1.219343661112078e-05 1.7002758389540455e-05 1.0350110453000324e-08 0.1335393521183563 8.128957740747187e-05 0.17329960965484684 9.681080937977973e-05']
['59907.15766032014 0.3069282944078572 5.257183775346583e-05 0.020025203578710564 1.2193720720845017e-05 1.6997920725190927e-05 1.0350351612824287e-08 0.13350135719140377 8.129147147230012e-05 0.17342693721645341 9.680961449622925e-05']
['59907.15780060035 0.3069114826527206 5.2571451176219156e-05 0.02002785849431933 1.2194158623458688e-05 1.7000174287551605e-05 1.0350723316107267e-08 0.13351905662879554 8.129439082305793e-05 0.17339242602392507 9.681185597882979e-05']
['59907.157940880556 0.3068957613891353 5.2577403332908916e-05 0.020036461185812836 1.2194849493129417e-05 1.7007476478885395e-05 1.0351309744497287e-08 0.1335764079054189 8.129899662086279e-05 0.17331935348371644 9.681895575139427e-05']
['59907.158081160764 0.30687824531728525 5.2568751549740696e-05 0.0200228052501114 1.2192946852015909e-05 1.6995884960648445e-05 1.0349694732560514e-08 0.133485368334076 8.128631234677272e-05 0.17339287698320924 9.680360641234116e-05']
['59907.15822144097 0.30692272370233076 5.25712403884259e-05 0.02002237109741499 1.219425949461278e-05 1.6995516440394094e-05 1.035080893820214e-08 0.13348247398276658 8.129506329741854e-05 0.17344024971956418 9.681230620385483e-05']
['59907.15836172118 0.3068331696402182 5.256466873799351e-05 0.020033493524149376 1.2194849510441939e-05 1.7004957449428522e-05 1.035130975919261e-08 0.13355662349432917 8.129899673627959e-05 0.173276546145889 9.681204093427941e-05']
['59907.15850200139 0.3072949311448626 5.2756446934876e-05 0.020021461372126688 1.2192950023309432e-05 1.6994744241586155e-05 1.0349697424438061e-08 0.13347640914751127 8.128633348872955e-05 0.17381852199735134 9.690567942712823e-05']
['59907.158642281596 0.30692414988174477 5.257180681775256e-05 0.020007697976265837 1.2190870748733524e-05 1.69830615083329e-05 1.0347932481361789e-08 0.1333846531751056 8.12724716582235e-05 0.17353949670663918 9.679364401405619e-05']
['59907.158782561804 0.3068531591890575 5.256760956561402e-05 0.020025555090829927 1.2193804363526428e-05 1.6998219097944813e-05 1.0350422610937353e-08 0.13350370060553288 8.129202909017618e-05 0.1733494585835246 9.680778671698307e-05']
['59907.15892284201 0.30679493646770883 5.256611581118204e-05 0.019993811669717754 1.2189431863730217e-05 1.6971274445248012e-05 1.0346711117837432e-08 0.13329207779811836 8.126287909153479e-05 0.17350285866959048 9.678249867470877e-05']
['59907.15906312222 0.30693258275118884 5.257140319074619e-05 0.02004613212677376 1.2196225231409722e-05 1.701568542852956e-05 1.0352477507418413e-08 0.13364088084515838 8.130816820939815e-05 0.17329170190603047 9.682339929485943e-05']
['59907.15920340243 0.3069062770305544 5.2569529861696936e-05 0.02005239015719725 1.219829208017898e-05 1.702099740973446e-05 1.0354231903142417e-08 0.1336826010479817 8.13219472011932e-05 0.1732236759825727 9.683395358278779e-05']
['59907.15934368264 0.30696672576380285 5.257442354702193e-05 0.02004074070685799 1.2195795758236966e-05 1.7011109049170207e-05 1.0352112959267109e-08 0.13360493804571993 8.130530505491311e-05 0.17336178771808292 9.682263496401105e-05']
['59907.159483962845 0.30689794652723534 5.256821218906291e-05 0.02004178921280201 1.2195271791874889e-05 1.7011999048657418e-05 1.035166820280557e-08 0.13361192808534675 8.130181194583259e-05 0.1732860184418886 9.68163289865396e-05']
['59907.15962424305 0.30686768056468405 5.256869516458656e-05 0.020012111521664783 1.2191720567042322e-05 1.6986807842022518e-05 1.0348653829546191e-08 0.13341407681109857 8.127813711361548e-05 0.17345360375358548 9.679671112164352e-05']
['59907.15976452326 0.3068841399218482 5.2570389949584524e-05 0.02000583183348567 1.2191727892483798e-05 1.698147747714368e-05 1.0348660047574037e-08 0.1333722122232378 8.127818594989199e-05 0.1735119276986104 9.679767254824156e-05']
['59907.15990480347 0.30692105104284567 5.257261549841727e-05 0.020030116094638055 1.2193102937525672e-05 1.7002090598219608e-05 1.0349827222056109e-08 0.13353410729758702 8.128735291683783e-05 0.17338694374525865 9.680657851908086e-05']
['59907.16004508368 0.30695810861513306 5.257482958591107e-05 0.020033310486169707 1.2195304077381453e-05 1.700480208196592e-05 1.035169560759469e-08 0.13355540324113138 8.130202718254303e-05 0.17340270537400168 9.682010292278435e-05']
['59907.160185363886 0.30689787768064897 5.2573780216426466e-05 0.020038219571214762 1.2207583207841526e-05 1.700896904277114e-05 1.0362118457245842e-08 0.1335881304747651 8.138388805227685e-05 0.17330974720588388 9.688828412532986e-05']
['59907.160325644094 0.3068015290955085 5.2566740303014614e-05 0.019995602204788104 1.219097021915615e-05 1.697279429861988e-05 1.0348016914478868e-08 0.13330401469858735 8.127313479437433e-05 0.17349751439692115 9.679144913363536e-05']
['59907.1604659243 0.30682618454090727 5.256646662756254e-05 0.02001375613425307 1.219220409321495e-05 1.6988203832544634e-05 1.0349064259308793e-08 0.13342504089502047 8.1281360621433e-05 0.1734011436458868 9.679820761862321e-05']
['59907.16060620451 0.30687619628473 5.257524913473161e-05 0.020032937223128926 1.2197690424180687e-05 1.7004485246456513e-05 1.0353721201669515e-08 0.13355291482085951 8.131793616120458e-05 0.1733232814638705 9.683369022761055e-05']
['59907.160746484726 0.3069475004551852 5.2581250954487676e-05 0.02004485318007619 1.2201851343890254e-05 1.7014599824855594e-05 1.0357253100013974e-08 0.13363235453384129 8.134567562593503e-05 0.17331514592134392 9.68602441406104e-05']
['59907.160886764934 0.30689969235538206 5.258053172812267e-05 0.02000800615624249 1.2196138409644099e-05 1.698332309962168e-05 1.0352403810814856e-08 0.13338670770828326 8.130758939762733e-05 0.1735129846470988 9.682787000892498e-05']
['59907.16102704514 0.3068517813451267 5.2576482716240474e-05 0.020011160612210536 1.2195637431314842e-05 1.6986000685008775e-05 1.0351978567201613e-08 0.1334077374147369 8.130424954209895e-05 0.17344404393038979 9.682286676408125e-05']
['59907.16116732535 0.3068322031395189 5.257356276128634e-05 0.020031574984803777 1.2198546060553517e-05 1.7003328942653223e-05 1.035444748838005e-08 0.13354383323202518 8.132364040369013e-05 0.17328836990749374 9.683756497312195e-05']
['59907.16130760556 0.3069661346566962 5.2582552753525764e-05 0.02002953182797549 1.2197892465156197e-05 1.700159465727331e-05 1.0353892699375965e-08 0.1335302121865033 8.131928310104132e-05 0.1734359224701929 9.683878695101784e-05']
['59907.16144788577 0.30687283926352055 5.257824021976878e-05 0.02005113692703378 1.2201873863940931e-05 1.70199336349326e-05 1.0357272215626688e-08 0.1336742461802252 8.13458257596062e-05 0.17319859308329535 9.685873586373056e-05']
['59907.161588165975 0.3069360882686377 5.258802031324891e-05 0.020027716302408852 1.2198150990338226e-05 1.7000053591309362e-05 1.0354112142366011e-08 0.13351810868272568 8.132100660225484e-05 0.17341797958591204 9.684320314441616e-05']
['59907.16172844618 0.30687692870951344 5.257568832679843e-05 0.02002743065630083 1.2197899878778039e-05 1.699981112736234e-05 1.0353898992253631e-08 0.13351620437533887 8.131933252518692e-05 0.17336072433417457 9.683510130824759e-05']
['59907.16186872639 0.3068343383757695 5.257974235875077e-05 0.020038238666840187 1.21995913232528e-05 1.7008985251641422e-05 1.0355334734915624e-08 0.13358825777893457 8.133060882168534e-05 0.17324608059683494 9.684677195352775e-05']
['59907.1620090066 0.30689130972285333 5.2579033065730464e-05 0.020015149362121815 1.219668747409444e-05 1.698938644108951e-05 1.0352869871195377e-08 0.1334343290808121 8.131124982729627e-05 0.17345698064204124 9.683012995242835e-05']
['59907.16214928681 0.3068944618401371 5.257800153278131e-05 0.020042628006839126 1.2200217776800694e-05 1.7012711039149382e-05 1.035586648520237e-08 0.13361752004559418 8.13347851786713e-05 0.1732769417945429 9.684933414970783e-05']
['59907.162289567015 0.30694675548549966 5.2583491466737025e-05 0.02002001401672008 1.2200268703082674e-05 1.6993515688160168e-05 1.0355909712773093e-08 0.13346676011146721 8.133512468721783e-05 0.17347999537403244 9.685259977263221e-05']
['59907.16242984722 0.30687580611524196 5.2576436531882764e-05 0.020025569992890013 1.2196855329077166e-05 1.6998231747206276e-05 1.0353012350929903e-08 0.1335037999526001 8.131236886051445e-05 0.17337200616264187 9.682965975412418e-05']
['59907.16257012743 0.30696189370892896 5.2587836768793574e-05 0.020022797061348983 1.2196856181185417e-05 1.6995878009811024e-05 1.0353013074221852e-08 0.13348531374232658 8.131237454123613e-05 0.17347657996660237 9.683585508248246e-05']
['59907.16271040764 0.3067950705004071 5.2572417674652837e-05 0.0200234752798619 1.219770034334504e-05 1.699645369956477e-05 1.035372962131772e-08 0.13348983519907934 8.131800228896695e-05 0.17330523530132777 9.683220846612239e-05']
['59907.16285068785 0.30689483164731535 5.257767472200482e-05 0.020018685479024356 1.2195845151155519e-05 1.699238799033959e-05 1.035215488527853e-08 0.1334579031934957 8.130563434103679e-05 0.17343692845381964 9.682467688957875e-05']
['59907.162990968056 0.3069569903837804 5.258292282801105e-05 0.020016067129184717 1.2196566833033088e-05 1.699016546596774e-05 1.0352767467882023e-08 0.13344044752789813 8.131044555355392e-05 0.17351654285588225 9.68315668016067e-05']
['59907.163131248264 0.3069208810270112 5.25801411237253e-05 0.020017368869384485 1.2196427627423577e-05 1.699127041736728e-05 1.0352649306490771e-08 0.13344912579589657 8.130951751615718e-05 0.17347175523111463 9.682927697396661e-05']
['59907.16327152847 0.3068860930433047 5.257535770078111e-05 0.020052130737246168 1.2201383017597223e-05 1.702077720724085e-05 1.0356855572309889e-08 0.13368087158164113 8.134255345064815e-05 0.1732052214616636 9.68544229203635e-05']
['59907.16341180868 0.3069306690670642 5.258169921367388e-05 0.020021040466276306 1.2197711805989246e-05 1.6994386965603942e-05 1.0353739351112311e-08 0.1334736031085087 8.131807870659498e-05 0.17345706595855548 9.683731211020496e-05']
['59907.16355208889 0.30685301461910053 5.2579707934976726e-05 0.020004972103833008 1.2202836125988066e-05 1.6980747715949313e-05 1.0358089009020561e-08 0.13336648069222007 8.135224083992044e-05 0.17348653392688046 9.68649202560136e-05']
['59907.1636923691 0.3068250213110189 5.2575809347518465e-05 0.020001222420862302 1.2195313985119969e-05 1.6977564886190298e-05 1.0351704017544341e-08 0.13334148280574867 8.130209323413312e-05 0.17348353850527024 9.682069041686433e-05']
['59907.163832649305 0.3068412478399002 5.259096550081733e-05 0.019993488710758955 1.2194642867813994e-05 1.6971000309169564e-05 1.035113435548226e-08 0.13328992473839302 8.129761911875997e-05 0.17355132310150717 9.682516473875542e-05']
['59907.16397292951 0.306891443909977 5.257868215886684e-05 0.020031873306957163 1.2198446104117208e-05 1.700358216636173e-05 1.0354362642721742e-08 0.1335458220463811 8.132297402744806e-05 0.17334562186359592 9.683978481095532e-05']
['59907.16411320972 0.30688826445407186 5.257811318327229e-05 0.020028279550003334 1.2197326477127942e-05 1.7000531690716543e-05 1.0353412273816351e-08 0.1335218636666889 8.131550984751961e-05 0.17336640078738297 9.683320777334111e-05']
['59907.16425348993 0.30702323916763924 5.258623208737391e-05 0.020031903679178713 1.2198235759520544e-05 1.700360794710409e-05 1.0354184096682746e-08 0.13354602452785808 8.132157173013696e-05 0.17347721463978116 9.684270666295404e-05']
['59907.16439377014 0.30686670845733544 5.257626455066403e-05 0.02000365728536444 1.219504560811835e-05 1.6979631663370428e-05 1.0351476212070103e-08 0.13335771523576295 8.130030405412233e-05 0.17350899322157248 9.681943520489133e-05']
['59907.164534050346 0.3068513859332882 5.257408005172785e-05 0.020019154352394992 1.2195738105211861e-05 1.6992785982417567e-05 1.0352064021859485e-08 0.13346102901596663 8.130492070141241e-05 0.17339035691732158 9.68221256921601e-05']
['59907.164674330554 0.3068585188126457 5.25817556479236e-05 0.02001413056286758 1.2195812698461839e-05 1.698852165742375e-05 1.0352127338576579e-08 0.1334275370857839 8.13054179897456e-05 0.1734309817268618 9.682671130171257e-05']
['59907.16481461076 0.30685797272078386 5.2576796830111936e-05 0.020018638010085507 1.2195566359387698e-05 1.6992347697452863e-05 1.0351918239476173e-08 0.13345758673390337 8.130377572925133e-05 0.17340038598688048 9.682263946385302e-05']
['59907.16495489097 0.3069646904773611 5.2582582755986946e-05 0.020031392042476743 1.2199716608149478e-05 1.70031736563831e-05 1.035544108003883e-08 0.13354261361651162 8.133144405432986e-05 0.17342207686084946 9.684901548933167e-05']
['59907.16509517118 0.30687618516143 5.257810501642674e-05 0.0200316980401058 1.2197316373575521e-05 1.7003433395237707e-05 1.0353403697654695e-08 0.13354465360070533 8.131544249050347e-05 0.17333153156072467 9.683314677601247e-05']
['59907.165235451386 0.3068761866275558 5.2577538310884056e-05 0.01999622018800461 1.2193148419987699e-05 1.697331885906604e-05 1.0349865828768938e-08 0.1333081345866974 8.128765613325134e-05 0.17356805204085837 9.68095066327176e-05']
['59907.165375731594 0.30689714237897525 5.257775398204856e-05 0.020018017906908124 1.2195941851190603e-05 1.6991821337528023e-05 1.0352236966817628e-08 0.13345345271272083 8.130627900793736e-05 0.17344368966625442 9.682526126953325e-05']
['59907.1655160118 0.3070041555982195 5.2589078904350265e-05 0.02003003784943773 1.2198202483835231e-05 1.7002024181630782e-05 1.03541558514038e-08 0.1335335856629182 8.132134989223487e-05 0.17347056993530127 9.68440662524208e-05']
['59907.16565629201 0.3068851279521464 5.2577930359163897e-05 0.020012813617325348 1.2196408584657035e-05 1.6987403799328662e-05 1.0352633142488503e-08 0.13341875744883566 8.130939056438024e-05 0.17346637050331074 9.682796989921876e-05']
['59907.16579657222 0.30688050926856614 5.258179865381492e-05 0.02004095388756636 1.2200452914543215e-05 1.701129000257559e-05 1.0356066076317195e-08 0.13360635925044242 8.133635276362144e-05 0.1732741500181237 9.685271204544869e-05']
['59907.16593685243 0.3068864360159024 5.257914403528764e-05 0.02000527730382527 1.2194966436255293e-05 1.698100677774878e-05 1.035140900890552e-08 0.13336851535883515 8.129977624170196e-05 0.17351792065706723 9.682055569162124e-05']
['59907.16607713264 0.30682107840121553 5.25747780358912e-05 0.02002867825431968 1.2197734008921877e-05 1.7000870121451365e-05 1.0353758197546869e-08 0.13352452169546455 8.131822672614586e-05 0.17329655670575098 9.683367845645486e-05']
['59907.16621741285 0.30701995571636176 5.25873593911312e-05 0.020031944685797557 1.2197905217532871e-05 1.700364275460323e-05 1.035390352392948e-08 0.13354629790531705 8.131936811688581e-05 0.1734736578110447 9.684146838344397e-05']
['59907.16635769306 0.30678253744516926 5.2575995755684034e-05 0.020008062039735472 1.2194123537880863e-05 1.698337053500379e-05 1.0350693534543843e-08 0.13338708026490315 8.129415691920576e-05 0.1733954571802661 9.681412747582945e-05']
['59907.16649797327 0.3068853217600783 5.258810395918671e-05 0.01999015310459895 1.2208413061112845e-05 1.6968168958723847e-05 1.0362822858580089e-08 0.13326768736399303 8.138942040741896e-05 0.1736176343960853 9.690070398236441e-05']
['59907.166638253475 0.3068518393953388 5.257475939147618e-05 0.020017073747544186 1.2196882155506168e-05 1.699101991016889e-05 1.0353035121910069e-08 0.13344715831696125 8.131254770337444e-05 0.17340468107837753 9.682889929708567e-05']
['59907.16677853368 0.3068404153027977 5.25808492535864e-05 0.02000528323284239 1.2195034144175218e-05 1.698101181045482e-05 1.0351466481172947e-08 0.13336855488561594 8.130022762783479e-05 0.17347186041718177 9.682186075761056e-05']
['59907.16691881389 0.3069634148696545 5.258199940260694e-05 0.020036412551034243 1.2198556746315277e-05 1.700743519640316e-05 1.0354456558736341e-08 0.13357608367356164 8.132371164210185e-05 0.17338733119609287 9.68422053467572e-05']
['59907.1670590941 0.3068638850420501 5.2576063691167e-05 0.02000779217071527 1.2195818113072951e-05 1.6983141463064844e-05 1.0352131934641237e-08 0.1333852811381018 8.1305454087153e-05 0.1734786039039483 9.682365071394382e-05']
['59907.16719937431 0.3068033556496237 5.257209106373652e-05 0.020023904771391505 1.219694938570795e-05 1.699681826329785e-05 1.0353092188677742e-08 0.1334926984759434 8.131299590471966e-05 0.1733106571736803 9.682782689813276e-05']
['59907.167339654516 0.3069385803956385 5.257823010484958e-05 0.02005493307477172 1.2201443338186678e-05 1.7023155905211002e-05 1.035690677401646e-08 0.13369955383181148 8.134295558791119e-05 0.173239026563827 9.6856319900848e-05']
['59907.167479934724 0.30706102271797847 5.2585314020981736e-05 0.02004840982176577 1.219899545117606e-05 1.701761879608601e-05 1.0354828942987818e-08 0.13365606547843847 8.132663634117372e-05 0.17340495723954 9.684646110857525e-05']
['59907.16762021493 0.3068315360079553 5.25850010026764e-05 0.020039711631482885 1.2199723690777855e-05 1.7010235542862143e-05 1.0355447091960517e-08 0.13359807754321923 8.133149127185237e-05 0.1732334584647361 9.68503681095476e-05']
['59907.16776049514 0.30689181044553815 5.257886751616448e-05 0.020020122153348877 1.2196340833116184e-05 1.6993607477381513e-05 1.0352575633194484e-08 0.13346748102232583 8.130893888744122e-05 0.17342432942321231 9.68280994974291e-05']
['59907.16790077535 0.3068679544258853 5.25760386080978e-05 0.020024029356485767 1.2196518192792337e-05 1.6996924014410313e-05 1.0352726180763364e-08 0.13349352904323844 8.131012128528225e-05 0.17337442538264689 9.682755630060846e-05']
['59907.16804105556 0.30685748019652337 5.257772438673344e-05 0.02002356352530563 1.2196895799153724e-05 1.6996528604623833e-05 1.0353046702997804e-08 0.13349042350203752 8.131263866102482e-05 0.17336705669448585 9.683058560034475e-05']
['59907.168181335765 0.3069481003433856 5.2591448400727246e-05 0.020008265513464706 1.2195494660182038e-05 1.698354324886937e-05 1.0351857379300192e-08 0.13338843675643136 8.130329773454693e-05 0.17355966358695424 9.683019501890275e-05']
['59907.16832161597 0.306822158901383 5.2574599255150515e-05 0.020003927332087383 1.2194269291406865e-05 1.6979860886148147e-05 1.0350817253979235e-08 0.13335951554724923 8.12951286093791e-05 0.17346264335413375 9.681418502706698e-05']
['59907.16846189618 0.306903239640213 5.257931737704141e-05 0.020035137749466185 1.2198532765481788e-05 1.70063531112244e-05 1.0354436203172666e-08 0.13356758499644125 8.13235517698786e-05 0.17333565464377174 9.68406148695049e-05']
['59907.16860217639 0.3069686527280998 5.258382207630184e-05 0.020041564339183353 1.2200293800486803e-05 1.7011808170001522e-05 1.0355931016111364e-08 0.13361042892788902 8.133529200324536e-05 0.1733582238002108 9.685291977738905e-05']
['59907.1687424566 0.30693354927721994 5.258270974012619e-05 0.020015360229925942 1.2196920144581373e-05 1.6989565431240792e-05 1.0353067368038615e-08 0.13343573486617294 8.131280096387581e-05 0.173497814411047 9.68334289602782e-05']
['59907.168882736805 0.3068656014618245 5.258970119671899e-05 0.020009288117600544 1.2210224230196082e-05 1.6984411262218947e-05 1.0364360226646075e-08 0.13339525411733696 8.140149486797389e-05 0.17347034734448755 9.691171259812183e-05']
['59907.16902301701 0.30690205428437595 5.257739721050391e-05 0.02001369574607236 1.2194664553725008e-05 1.6988152573464825e-05 1.0351152763055237e-08 0.1334246383071491 8.129776369150006e-05 0.17347741597722685 9.681791713660282e-05']
['59907.16916329722 0.30689518742736777 5.257786133377717e-05 0.020018340208528537 1.2196234790906447e-05 1.699209491564032e-05 1.0352485621771251e-08 0.13345560139019025 8.130823193937632e-05 0.17343958603717752 9.682695948722811e-05']
['59907.16930357743 0.3068686187678463 5.257533464158809e-05 0.020035527725474955 1.2197883416588412e-05 1.7006684133141643e-05 1.0353885018713081e-08 0.1335701848364997 8.131922277725609e-05 0.1732984339313466 9.68348171153949e-05']
['59907.16944385764 0.30692719304367766 5.258700375182382e-05 0.020023972557260968 1.2198019368211334e-05 1.69968758017309e-05 1.035400041803473e-08 0.1334931503817398 8.132012912140889e-05 0.17343404266193785 9.684191429291837e-05']
['59907.169584137846 0.3069543012599121 5.258725282256079e-05 0.020049960233760517 1.2199024875675743e-05 1.7018934826660904e-05 1.0354853919278872e-08 0.13366640155840345 8.132683250450496e-05 0.17328789970150862 9.68476785712478e-05']
['59907.169724418054 0.3068349178441375 5.2589049021765834e-05 0.020029252041361002 1.2197810961157816e-05 1.7001357167018873e-05 1.0353823516633437e-08 0.13352834694240667 8.131873974105211e-05 0.17330657090173085 9.684185825399396e-05']
['59907.16986469826 0.30685793162383357 5.257564181174265e-05 0.020019379625570554 1.2196043186701597e-05 1.6992977200227898e-05 1.0352322983070883e-08 0.13346253083713705 8.130695457801064e-05 0.17339540078669652 9.682468163989669e-05']
['59907.17000497847 0.3068900606087176 5.257827133231522e-05 0.020025327821672358 1.2197532401405628e-05 1.6998026185892334e-05 1.0353587067772066e-08 0.13350218547781573 8.131688267603753e-05 0.17338787513090187 9.683444647666972e-05']
['59907.17014525868 0.30713804341750967 5.2635420532324546e-05 0.02033114835192164 1.2415693288651674e-05 1.725761471436251e-05 1.0538767780276182e-08 0.13554098901281095 8.277128859101117e-05 0.17159705440469872 9.808962080480844e-05']
['59907.17028553889 0.3068173363468234 5.257162686212775e-05 0.020040766257269162 1.2199633729861255e-05 1.70111307370328e-05 1.0355370730762853e-08 0.13360510838179443 8.133089153240837e-05 0.17321222796502897 9.684260358120886e-05']
['59907.170425819095 0.30689815852797436 5.2578319775742477e-05 0.020056752756677843 1.2201658306653505e-05 1.7024700499185477e-05 1.035708924491835e-08 0.13371168504451894 8.134438871102337e-05 0.17318647348345542 9.685757216248143e-05']
['59907.1705660993 0.3069017120597128 5.257588856643295e-05 0.02006163256428625 1.2201222120282722e-05 1.7028842608530628e-05 1.035671899842758e-08 0.13374421709524167 8.134148080188482e-05 0.1731574949644711 9.685381023787021e-05']
['59907.17070637951 0.3069577711571193 5.258234571170597e-05 0.02005925393005578 1.220430767758824e-05 1.70268235610875e-05 1.0359338100813534e-08 0.13372835953370524 8.13620511839216e-05 0.17322941162341407 9.687459137152756e-05']
['59907.17084665972 0.3069767041913072 5.2589703652952014e-05 0.020023584675432443 1.2198071466749913e-05 1.6996546557409057e-05 1.0354044640647758e-08 0.13349056450288296 8.132047644499942e-05 0.17348613968842422 9.684367206765251e-05']
['59907.17098693993 0.3069109908533413 5.2578749476274205e-05 0.020023860573780482 1.2196308503844839e-05 1.6996780747200423e-05 1.0352548191256665e-08 0.13349240382520322 8.13087233589656e-05 0.17341858702813806 9.682785441572896e-05']
['59907.171127220136 0.3068476252927562 5.257584075707338e-05 0.020032273347868654 1.2198550452718413e-05 1.7003921731633747e-05 1.0354451216565403e-08 0.13354848898579103 8.132366968478941e-05 0.1732991363069652 9.683882631627603e-05']
['59907.171267500344 0.30685003139059497 5.257492461245772e-05 0.020000428302087644 1.2193691631081588e-05 1.697689081723889e-05 1.035032692066619e-08 0.1333361886805843 8.129127754054392e-05 0.17351384271001066 9.681112798733085e-05']
['59907.17140778056 0.3068939750840941 5.257781780342054e-05 0.02002191593773446 1.2197047702946182e-05 1.6995130088857817e-05 1.0353175642941506e-08 0.13347943958489641 8.131365135297455e-05 0.1734145354991977 9.683148672473632e-05']
['59907.17154806077 0.3069198552894905 5.257973076843235e-05 0.020029296761986806 1.2197625536329417e-05 1.7001395127065035e-05 1.0353666123150708e-08 0.13352864507991205 8.131750357552946e-05 0.17339121020957846 9.683576031320804e-05']
['59907.171688340975 0.30683387743074314 5.2573189950409195e-05 0.019996802340563297 1.2194521359288697e-05 1.6973813005505232e-05 1.0351031215842639e-08 0.1333120156037553 8.129680906192465e-05 0.17352186182698784 9.681483081229259e-05']
['59907.17182862118 0.30688714214990087 5.258447657518593e-05 0.020032318963284456 1.2198701435595956e-05 1.7003960451201247e-05 1.0354579374812248e-08 0.13354879308856304 8.132467623730638e-05 0.17333834906133783 9.684436040260157e-05']
In [31]:
fig, axs = plt.subplots(2, 2,figsize=(15,10))

#JWST pipeline: net aperture
dat = ascii.read('/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/50520_radii/GJ3470b_nrca3_level3_asn_phot.ecsv') #call the data 
normalized_net_aperture_sum_pipeline = dat['net_aperture_sum'].value/dat['net_aperture_sum'][0].value #normalized net aperture sum
std_net_aperture_sum_pipeline = np.std(normalized_net_aperture_sum_pipeline[0:20]) #calculated standard deviation
relative_error_net_aperture_sum_pipeline = (dat['net_aperture_sum_err'].value/dat['net_aperture_sum'].value)

#MAD: 
deviation = normalized_net_aperture_sum_pipeline[0:seg01_len] - np.median(normalized_net_aperture_sum_pipeline[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Tshirt Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Pipeline Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_net_aperture_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_net_aperture_sum_pipeline)*10**6))

axs[0,0].errorbar(dat['MJD'],normalized_net_aperture_sum_pipeline,yerr=relative_error_net_aperture_sum_pipeline,color='navy',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,0].set_title("Net Aperture Sum")
axs[0,0].set_xlabel("Time (MJD)")
axs[0,0].set_ylabel("Normalized Flux")
axs[0,0].legend()

#JWST pipeline: aperature background
normalized_aperture__bkg_pipeline = dat['aperture_bkg'].value/dat['aperture_bkg'][0].value #normalized aperture bkg
std_aperture_bkg_pipeline = np.std(normalized_aperture__bkg_pipeline[0:20]) #calculated standard deviation
relative_error_aperture_bkg_pipeline = (dat['aperture_bkg_err'].value/dat['aperture_bkg'].value)

print(style.BOLD+"Pipeline Calculated Aperture Background std (ppm):"+style.END + " " +str(std_aperture_bkg_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Aperture Background (ppm):"+style.END + " " +str(np.median(relative_error_aperture_bkg_pipeline)*10**6))

axs[0,1].errorbar(dat['MJD'],normalized_aperture__bkg_pipeline,yerr=relative_error_aperture_bkg_pipeline,color='darkred',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[0,1].set_title("Aperture Background")
axs[0,1].set_xlabel("Time (MJD)")
axs[0,1].set_ylabel("Normalized Flux")
axs[0,1].legend()


#JWST pipeline: annulus mean
normalized_annulus_mean_pipeline = dat['annulus_mean'].value/dat['annulus_mean'][0].value #normalized annulus mean
std_annulus_mean_pipeline = np.std(normalized_annulus_mean_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_mean_pipeline = (dat['annulus_mean_err'].value/dat['annulus_mean'].value)

print(style.BOLD+"Pipeline Calculated Annulus Mean std (ppm):"+style.END + " " +str(std_annulus_mean_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Mean (ppm):"+style.END + " " +str(np.median(relative_error_annulus_mean_pipeline)*10**6))

axs[1,0].errorbar(dat['MJD'],normalized_annulus_mean_pipeline,yerr=relative_error_annulus_mean_pipeline,color ='darkgreen',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,0].set_title("Annulus Mean")
axs[1,0].set_xlabel("Time (MJD)")
axs[1,0].set_ylabel("Normalized Flux")
axs[1,0].legend()

#JWST pipeline: annulus sum
normalized_annulus_sum_pipeline = dat['annulus_sum'].value/dat['annulus_sum'][0].value #normalized annulus sum
std_annulus_sum_pipeline = np.std(normalized_annulus_sum_pipeline[0:20]) #calculated standard deviation
relative_error_annulus_sum_pipeline = (dat['annulus_sum_err'].value/dat['annulus_sum'].value)

print(style.BOLD+"Pipeline Calculated Annulus Sum std (ppm):"+style.END + " " +str(std_annulus_sum_pipeline*10**6))
print(style.BOLD+"Median Relative Errors Annulus Sum (ppm):"+style.END + " " +str(np.median(relative_error_annulus_sum_pipeline)*10**6))

axs[1,1].errorbar(dat['MJD'],normalized_annulus_sum_pipeline,yerr=relative_error_annulus_sum_pipeline,color = 'indigo',fmt='.',markersize=4,elinewidth=1,ecolor='silver',label='Pipeline')
axs[1,1].set_title("Annulus Sum")
axs[1,1].set_xlabel("Time (MJD)")
axs[1,1].set_ylabel("Normalized Flux")
axs[1,1].legend()
Tshirt Calculated Net Aperture Sum MAD (ppm): 488.806960332937
Pipeline Calculated Net Aperture Sum std (ppm): 432.81554815368
Median Relative Errors Net Aperture Sum (ppm): 558.6153469644996
Pipeline Calculated Aperture Background std (ppm): 530.0990819268585
Median Relative Errors Aperture Background (ppm): 609.3038823762159
Pipeline Calculated Annulus Mean std (ppm): 530.0990819268844
Median Relative Errors Annulus Mean (ppm): 609.3038823762159
Pipeline Calculated Annulus Sum std (ppm): 530.0990819268699
Median Relative Errors Annulus Sum (ppm): 609.3038823762159
Out[31]:
<matplotlib.legend.Legend at 0x7f25b73441c0>

$\textbf{External method: tshirt $\rightarrow$ (bkgGeometry = CircularAnnulus) }$¶

In [32]:
phot = phot_pipeline.phot(paramFile="/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/GJ3470b_WLP8_NRCA3_ROEBA_phot_pipeline.yaml") #create a photometric object

alteredParam = deepcopy(phot.param)
alteredParam['srcGeometry']='Circular'
alteredParam['bkgGeometry'] = 'CircularAnnulus'
alteredParam['bkgMethod'] = 'mean' #Due to the odd aperture configuration, we need to do mean background subtraction
alteredParam['apRadius'] = 50 #Changing the source radius
alteredParam['backStart'] = 5 #Changing the inner radius
alteredParam['backEnd'] = 20 #Changing the outer radius

alteredParam['doCentering'] = True
alteredParam['srcNameShort'] = 'GJ3470b_phot3' #provide a new name for centroid realignment

#Assignimg a object new phot3
phot3 = phot_pipeline.phot(directParam=alteredParam) #create new photometric object

phot3.showStarChoices(showAps=True,showPlot=True,apColor='red',backColor='pink', figSize=(30,20),xLim=[900,1200]) #Plot the source and background subtraction area
In [33]:
phot3.get_allimg_cen(recenter=True,useMultiprocessing=True) #recenter the centroids each time. 
phot3.do_phot(useMultiprocessing=True) #extract the photometric data
  1%|▎                                        | 11/1681 [00:00<01:41, 16.47it/s]2022-03-16 14:19:37,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▎                                        | 15/1681 [00:00<01:20, 20.66it/s]2022-03-16 14:19:37,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 19/1681 [00:01<01:13, 22.47it/s]2022-03-16 14:19:37,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:19:37,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                        | 34/1681 [00:01<00:54, 30.47it/s]2022-03-16 14:19:37,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:19:37,866 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                       | 69/1681 [00:02<00:49, 32.75it/s]2022-03-16 14:19:38,815 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▊                                       | 73/1681 [00:02<00:49, 32.23it/s]2022-03-16 14:19:39,006 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 144/1681 [00:05<00:45, 33.42it/s]2022-03-16 14:19:41,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▌                                    | 148/1681 [00:05<00:45, 33.98it/s]2022-03-16 14:19:41,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▍                                 | 271/1681 [00:09<00:46, 30.20it/s]2022-03-16 14:19:45,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▌                                 | 276/1681 [00:09<00:49, 28.20it/s]2022-03-16 14:19:45,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                                | 330/1681 [00:11<00:54, 24.70it/s]2022-03-16 14:19:47,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:19:47,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▍                               | 357/1681 [00:12<00:41, 31.77it/s]2022-03-16 14:19:48,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▌                               | 361/1681 [00:12<00:40, 32.92it/s]2022-03-16 14:19:48,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▎                              | 391/1681 [00:13<00:48, 26.62it/s]2022-03-16 14:19:49,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                              | 399/1681 [00:13<00:36, 35.16it/s]2022-03-16 14:19:49,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▊                             | 454/1681 [00:15<00:34, 35.83it/s]2022-03-16 14:19:51,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:19:51,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▉                             | 458/1681 [00:15<00:42, 28.65it/s]2022-03-16 14:19:51,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:19:51,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                             | 466/1681 [00:15<00:45, 26.75it/s]2022-03-16 14:19:51,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:19:52,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████▎                            | 476/1681 [00:15<00:37, 32.18it/s]2022-03-16 14:19:52,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:19:52,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                           | 519/1681 [00:17<00:35, 32.69it/s]2022-03-16 14:19:53,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:19:53,576 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                           | 531/1681 [00:17<00:32, 35.63it/s]2022-03-16 14:19:53,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                           | 535/1681 [00:17<00:40, 28.07it/s]2022-03-16 14:19:54,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                          | 565/1681 [00:18<00:40, 27.31it/s]2022-03-16 14:19:54,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▌                          | 570/1681 [00:18<00:35, 31.41it/s]2022-03-16 14:19:55,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|██████████████▏                         | 596/1681 [00:19<00:31, 34.69it/s]2022-03-16 14:19:55,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:19:55,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:19:56,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▎                         | 600/1681 [00:19<00:40, 27.01it/s]2022-03-16 14:19:56,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▌                         | 613/1681 [00:20<00:36, 29.64it/s]2022-03-16 14:19:56,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:19:56,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▉                      | 756/1681 [00:24<00:28, 31.99it/s]2022-03-16 14:20:01,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|██████████████████                      | 760/1681 [00:25<00:36, 25.58it/s]2022-03-16 14:20:01,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▉                   | 879/1681 [00:29<00:29, 27.29it/s]2022-03-16 14:20:05,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|█████████████████████                   | 886/1681 [00:29<00:28, 28.03it/s]2022-03-16 14:20:05,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▊                  | 918/1681 [00:30<00:24, 31.36it/s]2022-03-16 14:20:06,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▉                  | 922/1681 [00:30<00:26, 28.72it/s]2022-03-16 14:20:06,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▌                 | 947/1681 [00:31<00:24, 30.33it/s]2022-03-16 14:20:07,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▋                 | 952/1681 [00:31<00:22, 32.92it/s]2022-03-16 14:20:07,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:20:07,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:20:07,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:20:07,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:20:07,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:20:07,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▋                 | 956/1681 [00:31<00:26, 27.08it/s]2022-03-16 14:20:07,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▉                 | 963/1681 [00:31<00:20, 35.39it/s]2022-03-16 14:20:07,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:20:08,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████▎                | 981/1681 [00:32<00:25, 26.96it/s]2022-03-16 14:20:08,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:20:08,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▌                | 988/1681 [00:32<00:24, 27.82it/s]2022-03-16 14:20:08,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▋                | 993/1681 [00:32<00:23, 29.76it/s]2022-03-16 14:20:09,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 1012/1681 [00:33<00:22, 29.18it/s]2022-03-16 14:20:09,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:20:09,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 1019/1681 [00:33<00:20, 32.39it/s]2022-03-16 14:20:09,716 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:20:09,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 1087/1681 [00:35<00:19, 31.22it/s]2022-03-16 14:20:11,928 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 1091/1681 [00:35<00:19, 30.69it/s]2022-03-16 14:20:12,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 1108/1681 [00:36<00:16, 34.31it/s]2022-03-16 14:20:12,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 1113/1681 [00:36<00:16, 34.93it/s]2022-03-16 14:20:12,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 1122/1681 [00:36<00:21, 25.68it/s]2022-03-16 14:20:13,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:20:13,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 1142/1681 [00:37<00:16, 32.98it/s]2022-03-16 14:20:13,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 1148/1681 [00:37<00:16, 32.29it/s]2022-03-16 14:20:13,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 1163/1681 [00:38<00:15, 32.80it/s]2022-03-16 14:20:14,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 1170/1681 [00:38<00:15, 32.55it/s]2022-03-16 14:20:14,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 1204/1681 [00:39<00:16, 29.05it/s]2022-03-16 14:20:15,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 1209/1681 [00:39<00:15, 31.05it/s]2022-03-16 14:20:15,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 1378/1681 [00:45<00:09, 33.14it/s]2022-03-16 14:20:21,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:20:21,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:20:21,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 1383/1681 [00:45<00:09, 30.33it/s]2022-03-16 14:20:21,530 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 1491/1681 [00:48<00:05, 31.71it/s]2022-03-16 14:20:24,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 1495/1681 [00:48<00:06, 29.79it/s]2022-03-16 14:20:25,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-03-16 14:20:25,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 1500/1681 [00:49<00:05, 30.19it/s]2022-03-16 14:20:25,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▉    | 1504/1681 [00:49<00:06, 26.00it/s]2022-03-16 14:20:25,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 1514/1681 [00:49<00:05, 32.91it/s]2022-03-16 14:20:25,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 1538/1681 [00:50<00:04, 31.88it/s]2022-03-16 14:20:26,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 1542/1681 [00:50<00:04, 32.79it/s]2022-03-16 14:20:26,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 1550/1681 [00:50<00:04, 31.18it/s]2022-03-16 14:20:26,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 1554/1681 [00:50<00:03, 32.16it/s]2022-03-16 14:20:27,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 1558/1681 [00:50<00:04, 30.30it/s]2022-03-16 14:20:27,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 1562/1681 [00:51<00:03, 30.63it/s]2022-03-16 14:20:27,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|███████████████████████████████████████| 1681/1681 [00:54<00:00, 30.71it/s]
2022-03-16 14:20:30,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

100%|██████████████████████████████████████| 1681/1681 [00:10<00:00, 164.17it/s]
In [34]:
#Tshirt: net aperture
Flux3, Flux_error3 = phot3.get_tSeries() #The flux data and flux data errors
normalized_flux_tshirt3 = Flux3['Flux 0']/Flux3['Flux 0'][0] #normalized net aperture sum
std_tshirt3 = np.std(normalized_flux_tshirt3[0:20]) #calculated standard deviation
relative_error_tshirt3 = (Flux_error3['Error 0']/Flux3['Flux 0'])

#MAD: 
deviation = normalized_flux_tshirt3[0:seg01_len] - np.median(normalized_flux_tshirt3[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Tshirt Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Tshirt Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_tshirt3*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_tshirt3)*10**6))

plt.errorbar(Flux3['Time (JD)'],normalized_flux_tshirt3,yerr=relative_error_tshirt3,fmt='b.',markersize=4,elinewidth=1,ecolor='silver')
#plt.plot(phot3.cenArr[:,0,0],'.')
Tshirt Calculated Net Aperture Sum MAD (ppm): 472.3066517378238
Tshirt Calculated Net Aperture Sum std (ppm): 465.1155034934176
Median Relative Errors Net Aperture Sum (ppm): 472.2699639271607
Out[34]:
<ErrorbarContainer object of 3 artists>

$\textbf{Light Curve Modeling}$¶

Modeling the best returned light curve from the photometry steps above. Here the best result is the 50-5-20 Radii values from tshirt pipeline (note the best was from JWST)

Planet Specific Parameters:

  • per: 288286.52544 ## seconds, APT file
  • rp: 0.07641 ## rp/r*, Stefansson et al. 2021
  • a: 13.84 ## a/r*, Stefansson et al. 2021
  • inc: 88.83 ## inclination, Stefansson et al. 2021
  • ecc: 0.115 ## eccentricity, Stefansson et al. 2021
  • w: -82.5 ## longitude of periastron, Stefansson et al. 2021, alth it says arg.
  • limb_model: "nonlinear" ## type of limb darkening model
  • ld_u: [0.658,-0.489,0.209,-0.024] ## limb darkening parameters, ExoCTK 4 param law
In [36]:
def transit_model(x, rp, A, t0):
    '''
    Models transit light curve using Python package `batman` based on initial parameters stored in params_transit.
    
    Parameters
    ----------
    
    x: array
        Time in Julian days  
    rp: int
        Planet-to-star radius ratio
    A: int
        Baseline Normalization Factor
    t0: int
        Time of inferior conjunction
    '''

    params_transit = batman.TransitParams()                   #Object to store transit parameters
    
    params_transit.t0 = t0                                                       #time of inferior conjunction
    params_transit.per = 3.3366496                                               #orbital period (days)
    params_transit.a = 13.84                                                      #semi-major axis (in units of stellar radii)
    params_transit.inc = 88.83                                                    #orbital inclination (in degrees)
    params_transit.ecc = 0.115                                                  #eccentricity
    params_transit.w = -82.5                                                      #longitude of periastron (in degrees)
    params_transit.limb_dark = "nonlinear"                                       #limb darkening model
    params_transit.u = [0.658,-0.489,0.209,-0.024]                                #limb darkening coefficients [u1, u2, u3, u4]
    

    params_transit.rp = rp                                    #Planet-to-star radius ratio - Will depend on function input
    
    #Modifying the time: Julian Date(x) - Initial Julian Date(x0) 
    x0 = np.min(x)
    m = batman.TransitModel(params_transit, x-x0)                #Initializes model
    
    flux = m.light_curve(params_transit)*A        #Calculate the light curve
    return flux
In [37]:
#Simple curve_fit model to determine the best planet-to-star radius ratio. 
popt, pcov = curve_fit(transit_model,Flux2['Time (JD)'],normalized_flux_tshirt2,sigma=relative_error_tshirt2,p0=[0.08,1,0.107])

print("Optimized Planet-to-star radius ratio = " + str(popt[0]))
print("Optimized Baseline Normalization Factor = " + str(popt[1]))
print("Optimized Time of Inferior Conjunction = " + str(popt[2]))
Optimized Planet-to-star radius ratio = 0.07638510285844995
Optimized Baseline Normalization Factor = 1.000084397784594
Optimized Time of Inferior Conjunction = 0.1427223934484061
In [38]:
#plot the modeled light curves
modeled_flux =transit_model(Flux2['Time (JD)'], *popt)
t = Flux3['Time (JD)'] 

plt.plot(t,modeled_flux, color='red')
plt.plot(t,normalized_flux_tshirt2,'.',alpha=0.2)
plt.title("GJ3470b Light Curve Model")
plt.xlabel("Time (JD)")
plt.ylabel("Normalized Flux")
Out[38]:
Text(0, 0.5, 'Normalized Flux')

Sweep Test¶

Calculate the Noise Statistics for a "Sweep" of Aperture Sizes. Loops through a series of source sizes and background sizes in a grid search.

  • Step 1: Assign a photometry object with 'procFiles' limited to the first segment of the raw data. We are interested in looking at the baseline (not the transit) for statistical measurments.
  • Step 2: Perform the Sweep. The important part is finiding the best source aperaute size. Therefore, the background start and backgroun end are kept at a constant interval of 20.
  • Step 3: Find the minimum MAD.
  • Step 4: Perform photometry on the best radii configuration.
In [4]:
phot = phot_pipeline.phot(paramFile="/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/GJ3470b_WLP8_NRCA3_ROEBA_phot_pipeline.yaml") #create a photometric object
alteredParam = deepcopy(phot.param)
alteredParam['srcGeometry']='Circular'
alteredParam['bkgGeometry'] = 'CircularAnnulus'
alteredParam['bkgMethod'] = 'mean' #Due to the odd aperture configuration, we need to do mean background subtraction
alteredParam['procFiles'] ='/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/splintegrate/jw01185016001_01101_00001-seg001*.fits'

alteredParam['doCentering'] = True
alteredParam['srcNameShort'] = 'GJ3470b_sweep' #provide a new name for centroid realignment

#Assignimg a object new phot3
phot_sweep = phot_pipeline.phot(directParam=alteredParam) #create new photometric object

phot_sweep.showStarChoices(showAps=True,showPlot=True,apColor='red',backColor='pink', figSize=(30,20),xLim=[900,1200]) #Plot the source and background subtraction area
In [12]:
phot_sweep.get_allimg_cen(recenter=True,useMultiprocessing=True) #recenter the centroids each time. 
phot_sweep.do_phot(useMultiprocessing=True) #extract the photometric data
  0%|▏                                          | 1/320 [00:00<03:39,  1.46it/s]2022-04-13 02:41:08,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▊                                        | 14/320 [00:01<00:20, 15.19it/s]2022-04-13 02:41:08,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 02:41:08,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▋                                       | 20/320 [00:01<00:15, 19.99it/s]2022-04-13 02:41:08,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▊                                      | 29/320 [00:01<00:12, 23.04it/s]2022-04-13 02:41:09,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 11%|████▌                                     | 35/320 [00:01<00:10, 27.64it/s]2022-04-13 02:41:09,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 22%|█████████▍                                | 72/320 [00:03<00:08, 29.59it/s]2022-04-13 02:41:10,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 02:41:10,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|█████████████████▋                       | 138/320 [00:05<00:07, 24.97it/s]2022-04-13 02:41:13,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|██████████████████▌                      | 145/320 [00:06<00:05, 29.70it/s]2022-04-13 02:41:13,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 83%|██████████████████████████████████▏      | 267/320 [00:10<00:02, 22.60it/s]2022-04-13 02:41:18,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 86%|███████████████████████████████████▎     | 276/320 [00:11<00:01, 26.22it/s]2022-04-13 02:41:18,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|█████████████████████████████████████████| 320/320 [00:12<00:00, 25.18it/s]
2022-04-13 02:41:20,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.96it/s]

Coarse Sweep¶

In [13]:
sweep_analysis_coarse = analysis.aperture_size_sweep(phot_sweep,stepSize=10,srcRange=[5,150],backRange=[5,150],minBackground=10)
2022-04-13 02:41:21,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:528: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  yStamp_proposed = np.array(onePos[1] + np.array([-1,1]) * boxsize,dtype=np.int)

2022-04-13 02:41:21,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:529: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  xStamp_proposed = np.array(onePos[0] + np.array([-1,1]) * boxsize,dtype=np.int)

2022-04-13 02:41:22,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:528: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  yStamp_proposed = np.array(onePos[1] + np.array([-1,1]) * boxsize,dtype=np.int)

2022-04-13 02:41:22,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:529: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  xStamp_proposed = np.array(onePos[0] + np.array([-1,1]) * boxsize,dtype=np.int)

src: 5, back st: 5, back end: 15
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.43it/s]
2022-04-13 02:41:24,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:24,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 5, back end: 25
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.15it/s]
2022-04-13 02:41:25,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:25,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 5, back end: 35
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.52it/s]
2022-04-13 02:41:27,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:27,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 5, back end: 45
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.38it/s]
2022-04-13 02:41:29,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:29,267 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 5, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.47it/s]
2022-04-13 02:41:30,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:30,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 5, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.14it/s]
2022-04-13 02:41:32,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:32,657 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 5, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.80it/s]
2022-04-13 02:41:34,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:34,312 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 5, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.54it/s]
2022-04-13 02:41:35,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:35,963 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 5, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.97it/s]
2022-04-13 02:41:37,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:37,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 5, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.64it/s]
2022-04-13 02:41:39,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:39,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 5, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.48it/s]
2022-04-13 02:41:41,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:41,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 5, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.93it/s]
2022-04-13 02:41:42,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:42,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 5, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 167.19it/s]
2022-04-13 02:41:45,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:45,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 5, back end: 145
100%|████████████████████████████████████████| 320/320 [00:02<00:00, 155.84it/s]
2022-04-13 02:41:47,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:47,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 15, back end: 25
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.81it/s]
2022-04-13 02:41:49,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:49,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 15, back end: 35
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.07it/s]
2022-04-13 02:41:50,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:50,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 15, back end: 45
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.59it/s]
2022-04-13 02:41:52,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:52,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 15, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.85it/s]
2022-04-13 02:41:54,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:54,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 15, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.41it/s]
2022-04-13 02:41:55,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:55,781 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 15, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.29it/s]
2022-04-13 02:41:57,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:57,421 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 15, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.58it/s]
2022-04-13 02:41:59,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:41:59,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 15, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.10it/s]
2022-04-13 02:42:00,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:00,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 15, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 234.51it/s]
2022-04-13 02:42:02,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:02,621 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 15, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.31it/s]
2022-04-13 02:42:04,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:04,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 15, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.79it/s]
2022-04-13 02:42:05,921 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:05,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 15, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.06it/s]
2022-04-13 02:42:07,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:07,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 15, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 194.72it/s]
2022-04-13 02:42:09,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:09,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 25, back end: 35
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 206.64it/s]
2022-04-13 02:42:11,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:11,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 25, back end: 45
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 232.07it/s]
2022-04-13 02:42:13,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:13,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 25, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.09it/s]
2022-04-13 02:42:15,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:15,168 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 25, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.41it/s]
2022-04-13 02:42:16,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:16,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 25, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.81it/s]
2022-04-13 02:42:18,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:18,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 25, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.37it/s]
2022-04-13 02:42:20,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:20,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 25, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.84it/s]
2022-04-13 02:42:21,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:21,729 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 25, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.27it/s]
2022-04-13 02:42:23,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:23,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 25, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.18it/s]
2022-04-13 02:42:25,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:25,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 25, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.25it/s]
2022-04-13 02:42:26,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:26,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 25, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 220.28it/s]
2022-04-13 02:42:28,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:28,651 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 25, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 223.33it/s]
2022-04-13 02:42:30,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:30,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 35, back end: 45
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.83it/s]
2022-04-13 02:42:32,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:32,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 35, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.24it/s]
2022-04-13 02:42:33,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:33,802 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 35, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.35it/s]
2022-04-13 02:42:35,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:35,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 35, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.72it/s]
2022-04-13 02:42:37,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:37,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 35, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.29it/s]
2022-04-13 02:42:38,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:38,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 35, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.70it/s]
2022-04-13 02:42:40,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:40,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 35, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.84it/s]
2022-04-13 02:42:42,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:42,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 35, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 186.78it/s]
2022-04-13 02:42:44,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:44,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 35, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 232.77it/s]
2022-04-13 02:42:46,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:46,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 35, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 235.93it/s]
2022-04-13 02:42:47,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:47,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 35, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 232.35it/s]
2022-04-13 02:42:49,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:49,561 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 45, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 221.50it/s]
2022-04-13 02:42:51,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:51,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 45, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.49it/s]
2022-04-13 02:42:52,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:53,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 45, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.43it/s]
2022-04-13 02:42:54,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:54,582 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 45, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.46it/s]
2022-04-13 02:42:56,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:56,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 45, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 236.19it/s]
2022-04-13 02:42:57,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:57,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 45, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.24it/s]
2022-04-13 02:42:59,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:42:59,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 45, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 235.03it/s]
2022-04-13 02:43:01,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:01,401 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 45, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.62it/s]
2022-04-13 02:43:03,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:03,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 45, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.68it/s]
2022-04-13 02:43:04,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:04,769 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 45, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 231.89it/s]
2022-04-13 02:43:06,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:06,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 55, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.68it/s]
2022-04-13 02:43:08,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:08,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 55, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.38it/s]
2022-04-13 02:43:09,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:09,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 55, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.36it/s]
2022-04-13 02:43:11,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:11,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 55, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.65it/s]
2022-04-13 02:43:13,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:13,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 55, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.17it/s]
2022-04-13 02:43:14,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:14,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 55, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 233.75it/s]
2022-04-13 02:43:16,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:16,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 55, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.43it/s]
2022-04-13 02:43:18,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:18,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 55, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 227.28it/s]
2022-04-13 02:43:19,971 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:20,021 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 55, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 228.40it/s]
2022-04-13 02:43:21,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:21,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 65, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.50it/s]
2022-04-13 02:43:23,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:23,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 65, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.52it/s]
2022-04-13 02:43:25,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:25,190 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 65, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.42it/s]
2022-04-13 02:43:26,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:26,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 65, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.20it/s]
2022-04-13 02:43:28,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:28,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 65, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.84it/s]
2022-04-13 02:43:30,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:30,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 65, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.59it/s]
2022-04-13 02:43:31,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:31,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 65, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.96it/s]
2022-04-13 02:43:33,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:33,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 65, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.71it/s]
2022-04-13 02:43:35,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:35,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 75, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.11it/s]
2022-04-13 02:43:36,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:36,884 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 75, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.17it/s]
2022-04-13 02:43:38,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:38,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 75, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.37it/s]
2022-04-13 02:43:40,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:40,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 75, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 213.03it/s]
2022-04-13 02:43:42,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:42,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 75, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.72it/s]
2022-04-13 02:43:43,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:43,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 75, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.99it/s]
2022-04-13 02:43:45,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:45,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 75, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.95it/s]
2022-04-13 02:43:47,211 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:47,244 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 85, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.52it/s]
2022-04-13 02:43:48,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:48,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 85, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.81it/s]
2022-04-13 02:43:50,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:50,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 85, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.39it/s]
2022-04-13 02:43:52,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:52,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 85, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.28it/s]
2022-04-13 02:43:53,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:53,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 85, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.18it/s]
2022-04-13 02:43:55,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:55,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 85, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.72it/s]
2022-04-13 02:43:57,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:57,122 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 95, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.83it/s]
2022-04-13 02:43:58,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:43:58,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 95, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.15it/s]
2022-04-13 02:44:00,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:00,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 95, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.99it/s]
2022-04-13 02:44:02,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:02,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 95, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.27it/s]
2022-04-13 02:44:03,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:03,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 95, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.67it/s]
2022-04-13 02:44:05,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:05,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 105, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.15it/s]
2022-04-13 02:44:06,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:06,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 105, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.96it/s]
2022-04-13 02:44:08,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:08,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 105, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.89it/s]
2022-04-13 02:44:10,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:10,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 105, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.55it/s]
2022-04-13 02:44:11,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:11,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 115, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.77it/s]
2022-04-13 02:44:13,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:13,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 115, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.65it/s]
2022-04-13 02:44:15,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:15,068 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 115, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.21it/s]
2022-04-13 02:44:16,711 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:16,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 125, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.49it/s]
2022-04-13 02:44:18,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:18,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 125, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.59it/s]
2022-04-13 02:44:20,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:20,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 5, back st: 135, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 234.66it/s]
2022-04-13 02:44:21,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:21,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 15, back end: 25
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.62it/s]
2022-04-13 02:44:23,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:23,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 15, back end: 35
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.98it/s]
2022-04-13 02:44:25,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:25,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 15, back end: 45
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.80it/s]
2022-04-13 02:44:26,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:26,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 15, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 278.24it/s]
2022-04-13 02:44:28,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:28,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 15, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 281.18it/s]
2022-04-13 02:44:29,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:29,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 15, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.19it/s]
2022-04-13 02:44:31,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:31,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 15, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.08it/s]
2022-04-13 02:44:32,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:32,911 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 15, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.53it/s]
2022-04-13 02:44:34,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:34,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 15, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.77it/s]
2022-04-13 02:44:36,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:36,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 15, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.67it/s]
2022-04-13 02:44:37,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:37,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 15, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.65it/s]
2022-04-13 02:44:39,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:39,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 15, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.78it/s]
2022-04-13 02:44:41,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:41,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 15, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.39it/s]
2022-04-13 02:44:42,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:42,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 25, back end: 35
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.42it/s]
2022-04-13 02:44:44,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:44,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 25, back end: 45
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.73it/s]
2022-04-13 02:44:45,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:45,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 25, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 203.72it/s]
2022-04-13 02:44:47,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:47,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 25, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 192.90it/s]
2022-04-13 02:44:49,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:49,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 25, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.60it/s]
2022-04-13 02:44:51,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:51,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 25, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.21it/s]
2022-04-13 02:44:53,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:53,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 25, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.71it/s]
2022-04-13 02:44:54,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:54,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 25, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.00it/s]
2022-04-13 02:44:56,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:56,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 25, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.29it/s]
2022-04-13 02:44:57,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:57,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 25, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.48it/s]
2022-04-13 02:44:59,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:44:59,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 25, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.30it/s]
2022-04-13 02:45:01,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:01,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 25, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.87it/s]
2022-04-13 02:45:02,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:02,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 35, back end: 45
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.69it/s]
2022-04-13 02:45:04,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:04,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 35, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.32it/s]
2022-04-13 02:45:05,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:05,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 35, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.05it/s]
2022-04-13 02:45:07,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:07,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 35, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.31it/s]
2022-04-13 02:45:09,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:09,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 35, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.53it/s]
2022-04-13 02:45:10,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:10,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 35, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.56it/s]
2022-04-13 02:45:12,335 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:12,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 35, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.71it/s]
2022-04-13 02:45:13,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:14,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 35, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.25it/s]
2022-04-13 02:45:15,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:15,605 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 35, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.21it/s]
2022-04-13 02:45:17,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:17,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 35, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.25it/s]
2022-04-13 02:45:18,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:18,982 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 35, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 236.47it/s]
2022-04-13 02:45:20,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:20,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 45, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 236.46it/s]
2022-04-13 02:45:22,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:22,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 45, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.08it/s]
2022-04-13 02:45:24,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:24,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 45, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 203.87it/s]
2022-04-13 02:45:26,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:26,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 45, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 211.82it/s]
2022-04-13 02:45:27,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:28,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 45, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 205.71it/s]
2022-04-13 02:45:29,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:29,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 45, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 220.99it/s]
2022-04-13 02:45:31,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:31,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 45, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 218.25it/s]
2022-04-13 02:45:33,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:33,646 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 45, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 205.06it/s]
2022-04-13 02:45:35,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:35,597 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 45, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 220.69it/s]
2022-04-13 02:45:37,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:37,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 45, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 210.32it/s]
2022-04-13 02:45:39,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:39,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 55, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 278.89it/s]
2022-04-13 02:45:40,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:40,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 55, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.00it/s]
2022-04-13 02:45:42,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:42,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 55, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.70it/s]
2022-04-13 02:45:44,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:44,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 55, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.26it/s]
2022-04-13 02:45:45,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:45,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 55, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.28it/s]
2022-04-13 02:45:47,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:47,252 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 55, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.24it/s]
2022-04-13 02:45:48,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:48,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 55, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.25it/s]
2022-04-13 02:45:50,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:50,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 55, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.52it/s]
2022-04-13 02:45:52,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:52,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 55, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.63it/s]
2022-04-13 02:45:53,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:53,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 65, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.03it/s]
2022-04-13 02:45:55,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:55,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 65, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.18it/s]
2022-04-13 02:45:57,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:57,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 65, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.75it/s]
2022-04-13 02:45:58,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:45:58,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 65, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.14it/s]
2022-04-13 02:46:00,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:00,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 65, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.91it/s]
2022-04-13 02:46:01,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:01,892 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 65, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.13it/s]
2022-04-13 02:46:03,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:03,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 65, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.46it/s]
2022-04-13 02:46:05,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:05,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 65, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.90it/s]
2022-04-13 02:46:06,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:06,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 75, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.31it/s]
2022-04-13 02:46:08,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:08,494 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 75, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.19it/s]
2022-04-13 02:46:10,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:10,125 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 75, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.19it/s]
2022-04-13 02:46:11,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:11,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 75, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 218.48it/s]
2022-04-13 02:46:13,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:13,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 75, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 177.53it/s]
2022-04-13 02:46:15,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:15,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 75, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.20it/s]
2022-04-13 02:46:17,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:17,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 75, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.90it/s]
2022-04-13 02:46:19,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:19,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 85, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.82it/s]
2022-04-13 02:46:20,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:20,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 85, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.26it/s]
2022-04-13 02:46:22,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:22,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 85, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.16it/s]
2022-04-13 02:46:23,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:23,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 85, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.14it/s]
2022-04-13 02:46:25,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:25,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 85, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.39it/s]
2022-04-13 02:46:27,274 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:27,306 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 85, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.94it/s]
2022-04-13 02:46:28,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:29,019 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 95, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.11it/s]
2022-04-13 02:46:30,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:30,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 95, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.88it/s]
2022-04-13 02:46:32,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:32,308 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 95, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.94it/s]
2022-04-13 02:46:33,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:33,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 95, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.25it/s]
2022-04-13 02:46:35,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:35,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 95, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 231.04it/s]
2022-04-13 02:46:37,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:37,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 105, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.25it/s]
2022-04-13 02:46:38,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:38,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 105, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.94it/s]
2022-04-13 02:46:40,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:40,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 105, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.75it/s]
2022-04-13 02:46:42,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:42,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 105, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.19it/s]
2022-04-13 02:46:43,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:43,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 115, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.51it/s]
2022-04-13 02:46:45,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:45,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 115, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.33it/s]
2022-04-13 02:46:47,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:47,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 115, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.06it/s]
2022-04-13 02:46:48,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:48,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 125, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.24it/s]
2022-04-13 02:46:50,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:50,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 125, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.81it/s]
2022-04-13 02:46:52,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:52,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 15, back st: 135, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.04it/s]
2022-04-13 02:46:53,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:53,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 25, back end: 35
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.03it/s]
2022-04-13 02:46:55,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:55,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 25, back end: 45
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.00it/s]
2022-04-13 02:46:57,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:57,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 25, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 283.69it/s]
2022-04-13 02:46:58,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:46:58,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 25, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.46it/s]
2022-04-13 02:47:00,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:00,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 25, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.49it/s]
2022-04-13 02:47:01,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:01,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 25, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 204.63it/s]
2022-04-13 02:47:03,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:04,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 25, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.83it/s]
2022-04-13 02:47:05,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:05,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 25, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.50it/s]
2022-04-13 02:47:07,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:07,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 25, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.08it/s]
2022-04-13 02:47:08,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:08,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 25, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.91it/s]
2022-04-13 02:47:10,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:10,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 25, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.12it/s]
2022-04-13 02:47:12,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:12,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 25, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.58it/s]
2022-04-13 02:47:13,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:13,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 35, back end: 45
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.23it/s]
2022-04-13 02:47:15,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:15,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 35, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.26it/s]
2022-04-13 02:47:17,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:17,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 35, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 278.12it/s]
2022-04-13 02:47:18,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:18,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 35, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.01it/s]
2022-04-13 02:47:20,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:20,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 35, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.05it/s]
2022-04-13 02:47:21,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:21,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 35, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 233.85it/s]
2022-04-13 02:47:23,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:23,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 35, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 208.81it/s]
2022-04-13 02:47:25,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:25,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 35, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 200.63it/s]
2022-04-13 02:47:27,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:27,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 35, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 211.53it/s]
2022-04-13 02:47:29,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:29,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 35, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 207.08it/s]
2022-04-13 02:47:31,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:31,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 35, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 205.84it/s]
2022-04-13 02:47:33,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:33,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 45, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 216.60it/s]
2022-04-13 02:47:35,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:35,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 45, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 219.25it/s]
2022-04-13 02:47:36,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:37,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 45, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.48it/s]
2022-04-13 02:47:38,680 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:38,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 45, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 234.57it/s]
2022-04-13 02:47:40,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:40,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 45, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.56it/s]
2022-04-13 02:47:42,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:42,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 45, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.96it/s]
2022-04-13 02:47:43,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:43,736 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 45, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.80it/s]
2022-04-13 02:47:45,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:45,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 45, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.30it/s]
2022-04-13 02:47:46,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:47,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 45, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.23it/s]
2022-04-13 02:47:48,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:48,707 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 45, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.15it/s]
2022-04-13 02:47:50,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:50,365 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 55, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.05it/s]
2022-04-13 02:47:51,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:51,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 55, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.68it/s]
2022-04-13 02:47:53,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:53,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 55, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.16it/s]
2022-04-13 02:47:55,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:55,125 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 55, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.18it/s]
2022-04-13 02:47:56,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:56,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 55, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.93it/s]
2022-04-13 02:47:58,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:58,325 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 55, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.02it/s]
2022-04-13 02:47:59,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:47:59,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 55, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 192.92it/s]
2022-04-13 02:48:01,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:02,021 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 55, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 185.29it/s]
2022-04-13 02:48:04,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:04,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 55, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.34it/s]
2022-04-13 02:48:05,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:05,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 65, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.22it/s]
2022-04-13 02:48:07,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:07,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 65, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.29it/s]
2022-04-13 02:48:08,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:08,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 65, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.51it/s]
2022-04-13 02:48:10,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:10,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 65, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.12it/s]
2022-04-13 02:48:12,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:12,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 65, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.38it/s]
2022-04-13 02:48:13,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:13,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 65, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 229.53it/s]
2022-04-13 02:48:15,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:15,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 65, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.61it/s]
2022-04-13 02:48:17,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:17,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 65, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.96it/s]
2022-04-13 02:48:18,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:18,823 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 75, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.05it/s]
2022-04-13 02:48:20,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:20,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 75, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.84it/s]
2022-04-13 02:48:21,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:22,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 75, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.97it/s]
2022-04-13 02:48:23,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:23,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 75, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.14it/s]
2022-04-13 02:48:25,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:25,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 75, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.49it/s]
2022-04-13 02:48:26,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:26,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 75, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.68it/s]
2022-04-13 02:48:28,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:28,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 75, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 236.03it/s]
2022-04-13 02:48:30,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:30,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 85, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.27it/s]
2022-04-13 02:48:31,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:32,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 85, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.64it/s]
2022-04-13 02:48:33,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:33,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 85, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.98it/s]
2022-04-13 02:48:35,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:35,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 85, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.53it/s]
2022-04-13 02:48:36,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:36,775 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 85, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.52it/s]
2022-04-13 02:48:38,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:38,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 85, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.34it/s]
2022-04-13 02:48:40,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:40,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 95, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.37it/s]
2022-04-13 02:48:41,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:41,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 95, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.30it/s]
2022-04-13 02:48:43,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:43,488 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 95, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.34it/s]
2022-04-13 02:48:45,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:45,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 95, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 234.52it/s]
2022-04-13 02:48:46,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:46,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 95, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.10it/s]
2022-04-13 02:48:48,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:48,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 105, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.09it/s]
2022-04-13 02:48:50,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:50,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 105, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 175.17it/s]
2022-04-13 02:48:52,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:52,448 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 105, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.12it/s]
2022-04-13 02:48:54,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:54,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 105, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.82it/s]
2022-04-13 02:48:55,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:55,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 115, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 233.42it/s]
2022-04-13 02:48:57,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:57,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 115, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 234.05it/s]
2022-04-13 02:48:59,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:48:59,196 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 115, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.37it/s]
2022-04-13 02:49:00,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:00,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 125, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.53it/s]
2022-04-13 02:49:02,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:02,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 125, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.25it/s]
2022-04-13 02:49:04,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:04,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 25, back st: 135, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.76it/s]
2022-04-13 02:49:05,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:05,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 35, back end: 45
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.02it/s]
2022-04-13 02:49:07,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:07,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 35, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.29it/s]
2022-04-13 02:49:09,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:09,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 35, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.39it/s]
2022-04-13 02:49:10,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:10,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 35, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.29it/s]
2022-04-13 02:49:12,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:12,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 35, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.59it/s]
2022-04-13 02:49:13,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:13,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 35, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.59it/s]
2022-04-13 02:49:15,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:15,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 35, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.43it/s]
2022-04-13 02:49:17,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:17,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 35, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.83it/s]
2022-04-13 02:49:18,718 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:18,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 35, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.95it/s]
2022-04-13 02:49:20,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:20,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 35, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.77it/s]
2022-04-13 02:49:22,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:22,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 35, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.54it/s]
2022-04-13 02:49:23,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:23,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 45, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.07it/s]
2022-04-13 02:49:25,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:25,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 45, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.36it/s]
2022-04-13 02:49:26,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:26,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 45, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.02it/s]
2022-04-13 02:49:28,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:28,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 45, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.03it/s]
2022-04-13 02:49:30,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:30,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 45, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.94it/s]
2022-04-13 02:49:31,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:31,823 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 45, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.42it/s]
2022-04-13 02:49:33,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:33,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 45, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.37it/s]
2022-04-13 02:49:34,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:35,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 45, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.03it/s]
2022-04-13 02:49:36,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:36,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 45, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.16it/s]
2022-04-13 02:49:38,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:38,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 45, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.97it/s]
2022-04-13 02:49:39,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:39,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 55, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.92it/s]
2022-04-13 02:49:41,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:41,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 55, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.51it/s]
2022-04-13 02:49:43,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:43,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 55, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.50it/s]
2022-04-13 02:49:44,697 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:44,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 55, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.53it/s]
2022-04-13 02:49:46,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:46,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 55, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.21it/s]
2022-04-13 02:49:47,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:48,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 55, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.14it/s]
2022-04-13 02:49:49,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:49,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 55, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.57it/s]
2022-04-13 02:49:51,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:51,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 55, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.73it/s]
2022-04-13 02:49:53,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:53,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 55, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.12it/s]
2022-04-13 02:49:54,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:54,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 65, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.93it/s]
2022-04-13 02:49:56,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:56,464 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 65, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.96it/s]
2022-04-13 02:49:58,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:58,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 65, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.45it/s]
2022-04-13 02:49:59,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:49:59,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 65, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.48it/s]
2022-04-13 02:50:01,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:01,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 65, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.95it/s]
2022-04-13 02:50:02,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:03,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 65, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.00it/s]
2022-04-13 02:50:04,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:04,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 65, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.35it/s]
2022-04-13 02:50:06,328 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:06,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 65, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 232.43it/s]
2022-04-13 02:50:08,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:08,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 75, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.93it/s]
2022-04-13 02:50:09,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:09,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 75, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.77it/s]
2022-04-13 02:50:11,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:11,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 75, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.87it/s]
2022-04-13 02:50:12,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:13,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 75, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 195.01it/s]
2022-04-13 02:50:15,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:15,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 75, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 219.74it/s]
2022-04-13 02:50:16,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:16,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 75, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 176.92it/s]
2022-04-13 02:50:19,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:19,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 75, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 231.23it/s]
2022-04-13 02:50:20,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:20,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 85, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.50it/s]
2022-04-13 02:50:22,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:22,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 85, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.40it/s]
2022-04-13 02:50:23,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:24,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 85, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.97it/s]
2022-04-13 02:50:25,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:25,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 85, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.51it/s]
2022-04-13 02:50:27,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:27,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 85, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.59it/s]
2022-04-13 02:50:29,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:29,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 85, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.00it/s]
2022-04-13 02:50:30,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:30,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 95, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.97it/s]
2022-04-13 02:50:32,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:32,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 95, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 228.55it/s]
2022-04-13 02:50:34,053 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:34,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 95, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 235.70it/s]
2022-04-13 02:50:35,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:35,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 95, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.65it/s]
2022-04-13 02:50:37,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:37,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 95, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.47it/s]
2022-04-13 02:50:38,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:39,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 105, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.54it/s]
2022-04-13 02:50:40,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:40,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 105, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.58it/s]
2022-04-13 02:50:42,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:42,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 105, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.84it/s]
2022-04-13 02:50:43,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:43,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 105, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.04it/s]
2022-04-13 02:50:45,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:45,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 115, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.98it/s]
2022-04-13 02:50:47,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:47,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 115, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.79it/s]
2022-04-13 02:50:48,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:48,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 115, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 235.26it/s]
2022-04-13 02:50:50,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:50,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 125, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.25it/s]
2022-04-13 02:50:52,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:52,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 125, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.89it/s]
2022-04-13 02:50:53,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:53,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 35, back st: 135, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.65it/s]
2022-04-13 02:50:55,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:55,708 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 45, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.23it/s]
2022-04-13 02:50:57,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:57,324 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 45, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.76it/s]
2022-04-13 02:50:58,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:50:58,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 45, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.31it/s]
2022-04-13 02:51:00,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:00,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 45, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.83it/s]
2022-04-13 02:51:02,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:02,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 45, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.01it/s]
2022-04-13 02:51:03,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:03,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 45, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.18it/s]
2022-04-13 02:51:05,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:05,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 45, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.44it/s]
2022-04-13 02:51:07,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:07,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 45, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.38it/s]
2022-04-13 02:51:08,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:08,696 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 45, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.18it/s]
2022-04-13 02:51:10,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:10,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 45, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.64it/s]
2022-04-13 02:51:11,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:12,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 55, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.05it/s]
2022-04-13 02:51:13,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:13,624 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 55, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.01it/s]
2022-04-13 02:51:15,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:15,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 55, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.43it/s]
2022-04-13 02:51:16,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:16,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 55, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.01it/s]
2022-04-13 02:51:18,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:18,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 55, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.25it/s]
2022-04-13 02:51:19,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:20,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 55, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.91it/s]
2022-04-13 02:51:21,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:21,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 55, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.09it/s]
2022-04-13 02:51:23,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:23,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 55, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.27it/s]
2022-04-13 02:51:24,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:24,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 55, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.95it/s]
2022-04-13 02:51:26,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:26,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 65, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.68it/s]
2022-04-13 02:51:28,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:28,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 65, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.76it/s]
2022-04-13 02:51:29,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:29,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 65, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.53it/s]
2022-04-13 02:51:31,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:31,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 65, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.23it/s]
2022-04-13 02:51:33,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:33,096 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 65, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.42it/s]
2022-04-13 02:51:34,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:34,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 65, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.90it/s]
2022-04-13 02:51:36,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:36,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 65, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.78it/s]
2022-04-13 02:51:38,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:38,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 65, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 234.94it/s]
2022-04-13 02:51:39,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:39,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 75, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.56it/s]
2022-04-13 02:51:41,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:41,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 75, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.74it/s]
2022-04-13 02:51:43,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:43,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 75, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 176.66it/s]
2022-04-13 02:51:45,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:45,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 75, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.03it/s]
2022-04-13 02:51:46,939 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:46,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 75, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 180.08it/s]
2022-04-13 02:51:49,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:49,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 75, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.28it/s]
2022-04-13 02:51:50,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:50,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 75, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 232.88it/s]
2022-04-13 02:51:52,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:52,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 85, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.98it/s]
2022-04-13 02:51:54,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:54,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 85, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.27it/s]
2022-04-13 02:51:55,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:55,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 85, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.54it/s]
2022-04-13 02:51:57,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:57,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 85, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.40it/s]
2022-04-13 02:51:59,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:51:59,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 85, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.28it/s]
2022-04-13 02:52:00,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:00,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 85, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 234.39it/s]
2022-04-13 02:52:02,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:02,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 95, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.22it/s]
2022-04-13 02:52:04,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:04,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 95, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.10it/s]
2022-04-13 02:52:06,036 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:06,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 95, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.15it/s]
2022-04-13 02:52:07,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:07,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 95, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.84it/s]
2022-04-13 02:52:09,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:09,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 95, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.08it/s]
2022-04-13 02:52:11,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:11,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 105, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.99it/s]
2022-04-13 02:52:12,793 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:12,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 105, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.37it/s]
2022-04-13 02:52:14,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:14,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 105, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.42it/s]
2022-04-13 02:52:16,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:16,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 105, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.47it/s]
2022-04-13 02:52:17,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:17,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 115, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.49it/s]
2022-04-13 02:52:19,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:19,456 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 115, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.23it/s]
2022-04-13 02:52:21,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:21,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 115, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 234.62it/s]
2022-04-13 02:52:22,787 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:22,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 125, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.00it/s]
2022-04-13 02:52:24,541 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:24,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 125, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.47it/s]
2022-04-13 02:52:26,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:26,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 45, back st: 135, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 229.40it/s]
2022-04-13 02:52:28,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:28,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.68it/s]
2022-04-13 02:52:29,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:29,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.98it/s]
2022-04-13 02:52:31,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:31,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.90it/s]
2022-04-13 02:52:32,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:32,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.95it/s]
2022-04-13 02:52:34,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:34,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.94it/s]
2022-04-13 02:52:36,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:36,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.09it/s]
2022-04-13 02:52:37,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:37,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 235.10it/s]
2022-04-13 02:52:39,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:39,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.53it/s]
2022-04-13 02:52:41,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:41,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 232.37it/s]
2022-04-13 02:52:43,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:43,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.62it/s]
2022-04-13 02:52:44,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:44,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.46it/s]
2022-04-13 02:52:46,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:46,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.16it/s]
2022-04-13 02:52:47,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:48,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.74it/s]
2022-04-13 02:52:49,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:49,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.45it/s]
2022-04-13 02:52:51,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:51,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.16it/s]
2022-04-13 02:52:53,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:53,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.70it/s]
2022-04-13 02:52:54,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:54,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 232.81it/s]
2022-04-13 02:52:56,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:56,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.03it/s]
2022-04-13 02:52:58,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:58,119 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.48it/s]
2022-04-13 02:52:59,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:52:59,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.15it/s]
2022-04-13 02:53:01,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:01,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.15it/s]
2022-04-13 02:53:02,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:02,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.68it/s]
2022-04-13 02:53:04,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:04,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.91it/s]
2022-04-13 02:53:06,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:06,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.58it/s]
2022-04-13 02:53:07,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:07,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.58it/s]
2022-04-13 02:53:09,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:09,582 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.89it/s]
2022-04-13 02:53:11,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:11,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.57it/s]
2022-04-13 02:53:12,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:12,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.49it/s]
2022-04-13 02:53:14,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:14,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 198.80it/s]
2022-04-13 02:53:16,460 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:16,500 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 212.43it/s]
2022-04-13 02:53:18,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:18,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 179.84it/s]
2022-04-13 02:53:20,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:20,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.06it/s]
2022-04-13 02:53:22,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:22,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.63it/s]
2022-04-13 02:53:23,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:23,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.70it/s]
2022-04-13 02:53:25,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:25,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 236.14it/s]
2022-04-13 02:53:27,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:27,226 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 105, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.74it/s]
2022-04-13 02:53:28,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:28,899 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 105, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.62it/s]
2022-04-13 02:53:30,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:30,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 105, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.22it/s]
2022-04-13 02:53:32,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:32,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 105, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.68it/s]
2022-04-13 02:53:33,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:33,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 115, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.84it/s]
2022-04-13 02:53:35,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:35,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 115, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.47it/s]
2022-04-13 02:53:37,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:37,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 115, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 220.88it/s]
2022-04-13 02:53:39,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:39,122 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 125, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.20it/s]
2022-04-13 02:53:40,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:40,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 125, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.67it/s]
2022-04-13 02:53:42,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:42,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 135, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 235.35it/s]
2022-04-13 02:53:44,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:44,169 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 65, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.27it/s]
2022-04-13 02:53:45,848 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:45,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 65, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.44it/s]
2022-04-13 02:53:47,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:47,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 65, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.00it/s]
2022-04-13 02:53:49,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:49,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 65, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.23it/s]
2022-04-13 02:53:50,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:50,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 65, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.68it/s]
2022-04-13 02:53:52,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:52,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 65, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 236.36it/s]
2022-04-13 02:53:54,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:54,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 65, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.90it/s]
2022-04-13 02:53:55,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:55,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 65, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.31it/s]
2022-04-13 02:53:57,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:57,421 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 75, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.83it/s]
2022-04-13 02:53:58,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:53:59,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 75, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.87it/s]
2022-04-13 02:54:00,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:00,687 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 75, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.80it/s]
2022-04-13 02:54:02,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:02,324 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 75, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.03it/s]
2022-04-13 02:54:03,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:04,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 75, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.78it/s]
2022-04-13 02:54:05,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:05,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 75, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.44it/s]
2022-04-13 02:54:07,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:07,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 75, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 225.15it/s]
2022-04-13 02:54:09,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:09,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 85, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.42it/s]
2022-04-13 02:54:10,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:10,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 85, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.79it/s]
2022-04-13 02:54:12,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:12,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 85, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.33it/s]
2022-04-13 02:54:14,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:14,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 85, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.68it/s]
2022-04-13 02:54:15,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:15,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 85, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.26it/s]
2022-04-13 02:54:17,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:17,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 85, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.43it/s]
2022-04-13 02:54:19,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:19,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 95, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.39it/s]
2022-04-13 02:54:20,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:20,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 95, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.02it/s]
2022-04-13 02:54:22,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:22,421 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 95, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 235.40it/s]
2022-04-13 02:54:24,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:24,161 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 95, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.70it/s]
2022-04-13 02:54:25,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:25,862 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 95, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 226.86it/s]
2022-04-13 02:54:27,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:27,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 105, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.92it/s]
2022-04-13 02:54:29,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:29,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 105, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 236.15it/s]
2022-04-13 02:54:31,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:31,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 105, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 235.01it/s]
2022-04-13 02:54:32,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:32,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 105, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.83it/s]
2022-04-13 02:54:34,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:34,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 115, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.61it/s]
2022-04-13 02:54:36,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:36,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 115, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 232.58it/s]
2022-04-13 02:54:37,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:37,850 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 115, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.13it/s]
2022-04-13 02:54:39,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:39,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 125, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.07it/s]
2022-04-13 02:54:41,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:41,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 125, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.16it/s]
2022-04-13 02:54:42,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:42,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 65, back st: 135, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 233.19it/s]
2022-04-13 02:54:44,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:44,591 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 75, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.38it/s]
2022-04-13 02:54:46,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:46,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 75, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 193.95it/s]
2022-04-13 02:54:48,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:48,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 75, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 185.35it/s]
2022-04-13 02:54:50,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:50,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 75, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 233.84it/s]
2022-04-13 02:54:52,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:52,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 75, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.21it/s]
2022-04-13 02:54:53,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:53,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 75, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.97it/s]
2022-04-13 02:54:55,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:55,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 75, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.54it/s]
2022-04-13 02:54:57,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:57,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 85, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.58it/s]
2022-04-13 02:54:58,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:54:58,874 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 85, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.42it/s]
2022-04-13 02:55:00,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:00,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 85, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.64it/s]
2022-04-13 02:55:02,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:02,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 85, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.62it/s]
2022-04-13 02:55:03,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:03,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 85, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.81it/s]
2022-04-13 02:55:05,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:05,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 85, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.44it/s]
2022-04-13 02:55:07,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:07,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 95, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.36it/s]
2022-04-13 02:55:08,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:08,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 95, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.72it/s]
2022-04-13 02:55:10,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:10,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 95, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.66it/s]
2022-04-13 02:55:12,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:12,312 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 95, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.89it/s]
2022-04-13 02:55:13,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:13,997 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 95, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.79it/s]
2022-04-13 02:55:15,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:15,707 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 105, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.03it/s]
2022-04-13 02:55:17,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:17,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 105, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.55it/s]
2022-04-13 02:55:19,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:19,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 105, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 225.87it/s]
2022-04-13 02:55:20,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:20,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 105, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.74it/s]
2022-04-13 02:55:22,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:22,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 115, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.65it/s]
2022-04-13 02:55:24,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:24,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 115, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 230.54it/s]
2022-04-13 02:55:26,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:26,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 115, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.66it/s]
2022-04-13 02:55:27,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:27,884 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 125, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.54it/s]
2022-04-13 02:55:29,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:29,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 125, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 232.99it/s]
2022-04-13 02:55:31,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:31,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 75, back st: 135, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.07it/s]
2022-04-13 02:55:32,979 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:33,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 85, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.16it/s]
2022-04-13 02:55:34,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:34,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 85, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.32it/s]
2022-04-13 02:55:36,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:36,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 85, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.77it/s]
2022-04-13 02:55:38,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:38,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 85, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 189.75it/s]
2022-04-13 02:55:40,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:40,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 85, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 184.54it/s]
2022-04-13 02:55:42,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:42,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 85, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 229.10it/s]
2022-04-13 02:55:44,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:44,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 95, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.92it/s]
2022-04-13 02:55:45,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:45,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 95, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.93it/s]
2022-04-13 02:55:47,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:47,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 95, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.32it/s]
2022-04-13 02:55:48,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:49,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 95, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.04it/s]
2022-04-13 02:55:50,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:50,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 95, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.86it/s]
2022-04-13 02:55:52,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:52,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 105, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.20it/s]
2022-04-13 02:55:54,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:54,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 105, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.67it/s]
2022-04-13 02:55:55,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:55,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 105, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 216.94it/s]
2022-04-13 02:55:57,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:57,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 105, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 222.56it/s]
2022-04-13 02:55:59,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:55:59,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 115, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 236.41it/s]
2022-04-13 02:56:01,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:01,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 115, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 219.85it/s]
2022-04-13 02:56:03,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:03,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 115, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 201.59it/s]
2022-04-13 02:56:05,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:05,051 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 125, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 223.63it/s]
2022-04-13 02:56:06,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:06,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 125, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 207.23it/s]
2022-04-13 02:56:08,745 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:08,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 85, back st: 135, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 226.03it/s]
2022-04-13 02:56:10,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:10,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 95, back st: 95, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.52it/s]
2022-04-13 02:56:12,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:12,320 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 95, back st: 95, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 236.14it/s]
2022-04-13 02:56:14,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:14,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 95, back st: 95, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 231.80it/s]
2022-04-13 02:56:15,771 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:15,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 95, back st: 95, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 234.59it/s]
2022-04-13 02:56:17,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:17,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 95, back st: 95, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 213.80it/s]
2022-04-13 02:56:19,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:19,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 95, back st: 105, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 230.78it/s]
2022-04-13 02:56:21,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:21,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 95, back st: 105, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 232.51it/s]
2022-04-13 02:56:23,051 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:23,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 95, back st: 105, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 225.03it/s]
2022-04-13 02:56:24,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:24,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 95, back st: 105, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 212.28it/s]
2022-04-13 02:56:26,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:26,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 95, back st: 115, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 228.10it/s]
2022-04-13 02:56:28,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:28,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 95, back st: 115, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 223.45it/s]
2022-04-13 02:56:30,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:30,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 95, back st: 115, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 208.67it/s]
2022-04-13 02:56:32,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:32,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 95, back st: 125, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 168.97it/s]
2022-04-13 02:56:34,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:34,697 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 95, back st: 125, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 167.82it/s]
2022-04-13 02:56:36,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:36,984 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 95, back st: 135, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 224.02it/s]
2022-04-13 02:56:38,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:38,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 105, back st: 105, back end: 115
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 231.00it/s]
2022-04-13 02:56:40,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:40,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 105, back st: 105, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 220.09it/s]
2022-04-13 02:56:42,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:42,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 105, back st: 105, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 202.03it/s]
2022-04-13 02:56:44,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:44,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 105, back st: 105, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 222.43it/s]
2022-04-13 02:56:46,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:46,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 105, back st: 115, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 235.18it/s]
2022-04-13 02:56:47,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:47,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 105, back st: 115, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 206.92it/s]
2022-04-13 02:56:49,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:49,853 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 105, back st: 115, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 235.47it/s]
2022-04-13 02:56:51,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:51,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 105, back st: 125, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 215.74it/s]
2022-04-13 02:56:53,455 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:53,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 105, back st: 125, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 219.83it/s]
2022-04-13 02:56:55,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:55,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 105, back st: 135, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 217.00it/s]
2022-04-13 02:56:57,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:57,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 115, back st: 115, back end: 125
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 222.35it/s]
2022-04-13 02:56:58,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:56:58,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 115, back st: 115, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 218.33it/s]
2022-04-13 02:57:00,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:57:00,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 115, back st: 115, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 220.52it/s]
2022-04-13 02:57:02,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:57:02,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 115, back st: 125, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 229.61it/s]
2022-04-13 02:57:04,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:57:04,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 115, back st: 125, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 198.10it/s]
2022-04-13 02:57:06,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:57:06,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 115, back st: 135, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 232.65it/s]
2022-04-13 02:57:08,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:57:08,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 125, back st: 125, back end: 135
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 224.18it/s]
2022-04-13 02:57:10,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:57:10,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 125, back st: 125, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 222.14it/s]
2022-04-13 02:57:11,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:57:11,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 125, back st: 135, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 221.13it/s]
2022-04-13 02:57:13,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:57:13,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 135, back st: 135, back end: 145
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 225.43it/s]
2022-04-13 02:57:15,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-13 02:57:15,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

Writing table to /home/kglidic/tshirt_data/tser_data/phot_aperture_optimization/aperture_opt_GJ3470b_sweep_aperture_sizing_NRCA3_GJ3470b_2022_11_23_src_5_150_step_10_back_5_150_step_10.csv
Min Stdev results:
src  back_st back_end  stdev  theo_err mad_arr
---- ------- -------- ------- -------- -------
15.0    25.0     95.0 -7.4436   -1.593 -1.2655
In [14]:
analysis.plot_apsizes('/home/kglidic/tshirt_data/tser_data/phot_aperture_optimization/aperture_opt_GJ3470b_sweep_aperture_sizing_NRCA3_GJ3470b_2022_11_23_src_5_150_step_10_back_5_150_step_10.csv')
In [9]:
sweep_coarse_results = pd.read_csv('/home/kglidic/tshirt_data/tser_data/phot_aperture_optimization/aperture_opt_GJ3470b_sweep_aperture_sizing_NRCA3_GJ3470b_2022_11_23_src_5_150_step_10_back_5_150_step_10.csv')

MAD_min_idx = abs(sweep_coarse_results[['mad_arr']]).idxmin()
print("Min MAD Results " + str(sweep_coarse_results[['mad_arr']].idxmin()))
print(sweep_coarse_results.iloc[MAD_min_idx])

print("THEO_ERR = "+str((0.0135/100)*10**6))
print("STDEV = "+str((0.026/100)*10**6))
print("MAD*1.48 = "+str((0.0122/100)*1.48*10**6))
Min MAD Results mad_arr    31
dtype: int64
      src  back_st  back_end  stdev  theo_err  mad_arr
399  55.0     55.0     105.0  0.026    0.0135   0.0122
THEO_ERR = 135.0
STDEV = 260.0
MAD*1.48 = 180.56000000000003
In [17]:
phot = phot_pipeline.phot(paramFile="/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/GJ3470b_WLP8_NRCA3_ROEBA_phot_pipeline.yaml") #create a photometric object
alteredParam = deepcopy(phot.param)
alteredParam['srcGeometry']='Circular'
alteredParam['bkgGeometry'] = 'CircularAnnulus'
alteredParam['apRadius'] = 55 #Changing the source radius
alteredParam['backStart'] = 55 #Changing the inner radius
alteredParam['backEnd'] = 105 #Changing the outer radius
alteredParam['bkgMethod'] = 'mean' #Due to the odd aperture configuration, we need to do mean background subtraction

alteredParam['doCentering'] = True
alteredParam['srcNameShort'] = 'GJ3470b_coarse_best' #provide a new name for centroid realignment

#Assignimg a object new phot3
phot_coarse_best = phot_pipeline.phot(directParam=alteredParam) #create new photometric object
phot_coarse_best.showStarChoices(showAps=True,showPlot=True,apColor='red',backColor='pink', figSize=(30,20),xLim=[900,1200]) #Plot the source and background subtraction area
In [18]:
phot_coarse_best.get_allimg_cen(recenter=True,useMultiprocessing=True) #recenter the centroids each time. 
phot_coarse_best.do_phot(useMultiprocessing=True) #extract the photometric data
  1%|▎                                        | 14/1681 [00:01<01:51, 14.92it/s]2022-04-13 03:01:14,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:01:14,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 19/1681 [00:01<01:25, 19.50it/s]2022-04-13 03:01:14,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:01:14,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                        | 31/1681 [00:01<01:05, 25.07it/s]2022-04-13 03:01:14,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                        | 35/1681 [00:02<01:13, 22.47it/s]2022-04-13 03:01:15,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                       | 69/1681 [00:03<00:53, 29.95it/s]2022-04-13 03:01:16,287 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▊                                       | 73/1681 [00:03<00:52, 30.90it/s]2022-04-13 03:01:16,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 141/1681 [00:06<01:09, 22.08it/s]2022-04-13 03:01:19,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 147/1681 [00:06<00:52, 29.30it/s]2022-04-13 03:01:19,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                 | 267/1681 [00:10<00:50, 27.88it/s]2022-04-13 03:01:24,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▌                                 | 276/1681 [00:11<00:56, 24.83it/s]2022-04-13 03:01:24,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                                | 329/1681 [00:13<01:00, 22.52it/s]2022-04-13 03:01:26,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                                | 336/1681 [00:13<00:46, 28.81it/s]2022-04-13 03:01:26,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▍                               | 354/1681 [00:14<00:47, 28.23it/s]2022-04-13 03:01:27,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▌                               | 361/1681 [00:14<00:55, 23.73it/s]2022-04-13 03:01:27,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▎                              | 391/1681 [00:15<00:58, 22.05it/s]2022-04-13 03:01:28,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                              | 399/1681 [00:15<00:45, 28.46it/s]2022-04-13 03:01:29,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                             | 449/1681 [00:17<00:43, 28.15it/s]2022-04-13 03:01:30,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▊                             | 453/1681 [00:17<00:43, 28.24it/s]2022-04-13 03:01:31,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▊                             | 457/1681 [00:18<00:44, 27.38it/s]2022-04-13 03:01:31,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▉                             | 462/1681 [00:18<00:50, 24.34it/s]2022-04-13 03:01:31,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                             | 466/1681 [00:18<00:55, 21.85it/s]2022-04-13 03:01:31,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:01:31,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:01:31,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████▎                            | 476/1681 [00:18<00:43, 27.98it/s]2022-04-13 03:01:32,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                           | 515/1681 [00:20<00:42, 27.48it/s]2022-04-13 03:01:33,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                           | 519/1681 [00:20<00:40, 29.02it/s]2022-04-13 03:01:33,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▌                           | 529/1681 [00:20<00:36, 31.29it/s]2022-04-13 03:01:33,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                           | 533/1681 [00:20<00:41, 27.95it/s]2022-04-13 03:01:34,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                          | 565/1681 [00:22<00:40, 27.32it/s]2022-04-13 03:01:35,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▌                          | 568/1681 [00:22<00:40, 27.19it/s]2022-04-13 03:01:35,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|██████████████▏                         | 596/1681 [00:23<00:35, 30.94it/s]2022-04-13 03:01:36,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:01:36,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:01:36,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▎                         | 600/1681 [00:23<00:40, 26.69it/s]2022-04-13 03:01:36,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▍                         | 607/1681 [00:23<00:52, 20.44it/s]2022-04-13 03:01:36,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▋                         | 615/1681 [00:23<00:34, 31.02it/s]2022-04-13 03:01:37,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|██████████████████                      | 757/1681 [00:29<00:36, 25.22it/s]2022-04-13 03:01:42,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|██████████████████                      | 760/1681 [00:29<00:37, 24.51it/s]2022-04-13 03:01:42,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▊                   | 876/1681 [00:33<00:44, 18.04it/s]2022-04-13 03:01:46,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|█████████████████████                   | 885/1681 [00:33<00:30, 26.08it/s]2022-04-13 03:01:47,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▊                  | 918/1681 [00:35<00:25, 29.66it/s]2022-04-13 03:01:48,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:01:48,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▌                 | 946/1681 [00:36<00:25, 28.43it/s]2022-04-13 03:01:49,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:01:49,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▋                 | 951/1681 [00:36<00:27, 26.77it/s]2022-04-13 03:01:49,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:01:49,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:01:49,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▋                 | 954/1681 [00:36<00:28, 25.49it/s]2022-04-13 03:01:49,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:01:49,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▊                 | 957/1681 [00:36<00:30, 23.72it/s]2022-04-13 03:01:49,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▊                 | 961/1681 [00:36<00:27, 26.21it/s]2022-04-13 03:01:49,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▉                 | 965/1681 [00:36<00:24, 28.85it/s]2022-04-13 03:01:50,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████▍                | 983/1681 [00:37<00:23, 29.38it/s]2022-04-13 03:01:50,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▍                | 987/1681 [00:37<00:25, 27.68it/s]2022-04-13 03:01:50,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:01:50,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▌                | 991/1681 [00:37<00:29, 23.30it/s]2022-04-13 03:01:51,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 1012/1681 [00:38<00:27, 24.35it/s]2022-04-13 03:01:51,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:01:51,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 1019/1681 [00:38<00:24, 27.22it/s]2022-04-13 03:01:51,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:01:52,044 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 1085/1681 [00:41<00:19, 30.37it/s]2022-04-13 03:01:54,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 1089/1681 [00:41<00:20, 28.88it/s]2022-04-13 03:01:54,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 1108/1681 [00:42<00:19, 28.79it/s]2022-04-13 03:01:55,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 1113/1681 [00:42<00:20, 27.31it/s]2022-04-13 03:01:55,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 1127/1681 [00:42<00:18, 30.24it/s]2022-04-13 03:01:55,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 1131/1681 [00:42<00:20, 27.28it/s]2022-04-13 03:01:56,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 1141/1681 [00:43<00:16, 32.65it/s]2022-04-13 03:01:56,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 1145/1681 [00:43<00:17, 29.98it/s]2022-04-13 03:01:56,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 1161/1681 [00:44<00:22, 22.77it/s]2022-04-13 03:01:57,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████▏           | 1170/1681 [00:44<00:16, 31.19it/s]2022-04-13 03:01:57,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 1204/1681 [00:45<00:18, 25.98it/s]2022-04-13 03:01:58,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 1208/1681 [00:45<00:17, 26.75it/s]2022-04-13 03:01:59,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 1376/1681 [00:52<00:11, 26.99it/s]2022-04-13 03:02:05,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:02:05,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 1379/1681 [00:52<00:12, 24.43it/s]2022-04-13 03:02:05,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 1383/1681 [00:52<00:10, 27.63it/s]2022-04-13 03:02:05,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 1487/1681 [00:56<00:08, 24.00it/s]2022-04-13 03:02:09,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 1493/1681 [00:56<00:06, 30.54it/s]2022-04-13 03:02:09,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 1497/1681 [00:56<00:06, 26.72it/s]2022-04-13 03:02:09,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 1502/1681 [00:56<00:06, 28.02it/s]2022-04-13 03:02:09,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 1506/1681 [00:56<00:07, 24.80it/s]2022-04-13 03:02:10,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 1514/1681 [00:57<00:06, 24.15it/s]2022-04-13 03:02:10,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 1537/1681 [00:58<00:05, 24.94it/s]2022-04-13 03:02:11,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▋   | 1540/1681 [00:58<00:05, 23.67it/s]2022-04-13 03:02:11,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████   | 1555/1681 [00:58<00:04, 29.29it/s]2022-04-13 03:02:11,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:02:12,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-13 03:02:12,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 1559/1681 [00:59<00:05, 21.41it/s]2022-04-13 03:02:12,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|███████████████████████████████████████| 1681/1681 [01:03<00:00, 26.50it/s]
2022-04-13 03:02:16,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

100%|██████████████████████████████████████| 1681/1681 [00:10<00:00, 166.08it/s]
In [19]:
#Tshirt: net aperture
Flux_best, Flux_error_best = phot_coarse_best.get_tSeries() #The flux data and flux data errors
normalized_flux_tshirt_best = Flux_best['Flux 0']/Flux_best['Flux 0'][0] #normalized net aperture sum
std_tshirt_best = np.std(normalized_flux_tshirt_best[0:20]) #calculated standard deviation
relative_error_tshirt_best = (Flux_error_best['Error 0']/Flux_best['Flux 0'])

#MAD: 
deviation = normalized_flux_tshirt_best[0:seg01_len] - np.median(normalized_flux_tshirt_best[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Tshirt Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Tshirt Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_tshirt_best*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_tshirt_best)*10**6))

plt.errorbar(Flux_best['Time (JD)'],normalized_flux_tshirt_best,yerr=relative_error_tshirt_best,fmt='b.',markersize=4,elinewidth=1,ecolor='silver')
Tshirt Calculated Net Aperture Sum MAD (ppm): 181.1181314548005
Tshirt Calculated Net Aperture Sum std (ppm): 123.08741471559793
Median Relative Errors Net Aperture Sum (ppm): 135.46352044334589
Out[19]:
<ErrorbarContainer object of 3 artists>

Mid Sweep¶

It seems that the fine sweep crashes with the parameters: stepSize=1,srcRange=[50,60],backRange=[50,110],minBackground=2

In [10]:
sweep_analysis_mid = analysis.aperture_size_sweep(phot_sweep,stepSize=1,srcRange=[50,60],backRange=[50,110],stepSizeBack=10,minBackground=2)
2022-04-26 15:39:16,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:528: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  yStamp_proposed = np.array(onePos[1] + np.array([-1,1]) * boxsize,dtype=np.int)

2022-04-26 15:39:16,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:529: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  xStamp_proposed = np.array(onePos[0] + np.array([-1,1]) * boxsize,dtype=np.int)

2022-04-26 15:39:16,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:528: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  yStamp_proposed = np.array(onePos[1] + np.array([-1,1]) * boxsize,dtype=np.int)

2022-04-26 15:39:16,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:529: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  xStamp_proposed = np.array(onePos[0] + np.array([-1,1]) * boxsize,dtype=np.int)

src: 50, back st: 50, back end: 52
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 207.76it/s]
2022-04-26 15:39:19,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:20,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 53
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 282.96it/s]
2022-04-26 15:39:21,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:21,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 54
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.11it/s]
2022-04-26 15:39:23,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:23,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.91it/s]
2022-04-26 15:39:24,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:24,589 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 56
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.66it/s]
2022-04-26 15:39:26,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:26,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 57
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.91it/s]
2022-04-26 15:39:27,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:27,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 58
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.18it/s]
2022-04-26 15:39:29,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:29,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 59
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 283.58it/s]
2022-04-26 15:39:30,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:30,746 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 60
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.94it/s]
2022-04-26 15:39:32,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:32,291 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 61
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.34it/s]
2022-04-26 15:39:33,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:33,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 62
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.46it/s]
2022-04-26 15:39:35,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:35,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 63
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.41it/s]
2022-04-26 15:39:36,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:36,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 64
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.87it/s]
2022-04-26 15:39:38,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:38,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.32it/s]
2022-04-26 15:39:40,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:40,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 66
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 281.72it/s]
2022-04-26 15:39:41,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:41,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 278.16it/s]
2022-04-26 15:39:42,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:42,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.47it/s]
2022-04-26 15:39:44,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:44,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 201.19it/s]
2022-04-26 15:39:46,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:46,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.19it/s]
2022-04-26 15:39:48,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:48,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.50it/s]
2022-04-26 15:39:49,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:49,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.38it/s]
2022-04-26 15:39:51,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:51,240 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.49it/s]
2022-04-26 15:39:52,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:52,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.17it/s]
2022-04-26 15:39:54,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:54,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.58it/s]
2022-04-26 15:39:55,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:55,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.09it/s]
2022-04-26 15:39:57,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:57,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.56it/s]
2022-04-26 15:39:59,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:39:59,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.44it/s]
2022-04-26 15:40:00,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:00,746 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.14it/s]
2022-04-26 15:40:02,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:02,288 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.88it/s]
2022-04-26 15:40:03,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:03,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.98it/s]
2022-04-26 15:40:05,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:05,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.55it/s]
2022-04-26 15:40:06,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:06,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.75it/s]
2022-04-26 15:40:08,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:08,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.34it/s]
2022-04-26 15:40:10,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:10,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.19it/s]
2022-04-26 15:40:11,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:11,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.24it/s]
2022-04-26 15:40:13,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:13,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.18it/s]
2022-04-26 15:40:14,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:14,807 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.21it/s]
2022-04-26 15:40:16,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:16,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.52it/s]
2022-04-26 15:40:17,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:17,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.88it/s]
2022-04-26 15:40:19,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:19,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.35it/s]
2022-04-26 15:40:21,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:21,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.12it/s]
2022-04-26 15:40:22,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:22,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.54it/s]
2022-04-26 15:40:24,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:24,338 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.50it/s]
2022-04-26 15:40:25,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:25,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.74it/s]
2022-04-26 15:40:27,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:27,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.67it/s]
2022-04-26 15:40:29,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:29,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.05it/s]
2022-04-26 15:40:30,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:30,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.49it/s]
2022-04-26 15:40:32,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:32,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.57it/s]
2022-04-26 15:40:33,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:33,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.57it/s]
2022-04-26 15:40:35,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:35,457 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.49it/s]
2022-04-26 15:40:37,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:37,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.96it/s]
2022-04-26 15:40:38,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:38,689 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.55it/s]
2022-04-26 15:40:40,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:40,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.28it/s]
2022-04-26 15:40:41,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:41,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.86it/s]
2022-04-26 15:40:43,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:43,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.85it/s]
2022-04-26 15:40:45,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:45,258 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.93it/s]
2022-04-26 15:40:46,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:46,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.35it/s]
2022-04-26 15:40:48,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:48,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 50, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.53it/s]
2022-04-26 15:40:50,005 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:50,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 62
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.42it/s]
2022-04-26 15:40:51,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:51,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 63
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.35it/s]
2022-04-26 15:40:53,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:53,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 64
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.39it/s]
2022-04-26 15:40:54,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:54,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.88it/s]
2022-04-26 15:40:56,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:56,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 66
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.92it/s]
2022-04-26 15:40:57,731 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:57,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.99it/s]
2022-04-26 15:40:59,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:40:59,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.78it/s]
2022-04-26 15:41:00,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:00,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.48it/s]
2022-04-26 15:41:02,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:02,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.98it/s]
2022-04-26 15:41:04,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:04,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.88it/s]
2022-04-26 15:41:05,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:05,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.71it/s]
2022-04-26 15:41:07,312 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:07,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.97it/s]
2022-04-26 15:41:08,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:08,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.24it/s]
2022-04-26 15:41:10,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:10,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.28it/s]
2022-04-26 15:41:11,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:12,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.43it/s]
2022-04-26 15:41:13,563 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:13,594 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.15it/s]
2022-04-26 15:41:15,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:15,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.44it/s]
2022-04-26 15:41:16,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:16,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.88it/s]
2022-04-26 15:41:18,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:18,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.11it/s]
2022-04-26 15:41:19,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:19,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.17it/s]
2022-04-26 15:41:21,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:21,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.82it/s]
2022-04-26 15:41:22,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:22,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 283.97it/s]
2022-04-26 15:41:24,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:24,450 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.77it/s]
2022-04-26 15:41:25,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:26,030 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.03it/s]
2022-04-26 15:41:27,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:27,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.52it/s]
2022-04-26 15:41:29,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:29,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.99it/s]
2022-04-26 15:41:30,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:30,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.73it/s]
2022-04-26 15:41:32,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:32,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.40it/s]
2022-04-26 15:41:33,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:33,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.54it/s]
2022-04-26 15:41:35,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:35,443 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.93it/s]
2022-04-26 15:41:36,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:36,959 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.34it/s]
2022-04-26 15:41:38,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:38,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.50it/s]
2022-04-26 15:41:40,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:40,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.64it/s]
2022-04-26 15:41:41,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:41,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.66it/s]
2022-04-26 15:41:43,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:43,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.83it/s]
2022-04-26 15:41:44,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:44,986 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.76it/s]
2022-04-26 15:41:46,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:46,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.66it/s]
2022-04-26 15:41:48,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:48,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.60it/s]
2022-04-26 15:41:49,768 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:49,800 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.86it/s]
2022-04-26 15:41:51,325 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:51,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.29it/s]
2022-04-26 15:41:52,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:53,030 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.88it/s]
2022-04-26 15:41:54,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:54,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.56it/s]
2022-04-26 15:41:56,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:56,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.39it/s]
2022-04-26 15:41:57,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:57,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.13it/s]
2022-04-26 15:41:59,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:41:59,231 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.68it/s]
2022-04-26 15:42:00,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:00,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.90it/s]
2022-04-26 15:42:02,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:02,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.84it/s]
2022-04-26 15:42:04,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:04,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 60, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.27it/s]
2022-04-26 15:42:05,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:05,787 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.57it/s]
2022-04-26 15:42:07,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:07,401 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.56it/s]
2022-04-26 15:42:08,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:08,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.29it/s]
2022-04-26 15:42:10,465 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:10,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.55it/s]
2022-04-26 15:42:11,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:12,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.88it/s]
2022-04-26 15:42:13,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:13,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 277.47it/s]
2022-04-26 15:42:14,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:15,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.25it/s]
2022-04-26 15:42:16,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:16,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.47it/s]
2022-04-26 15:42:18,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:18,124 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.23it/s]
2022-04-26 15:42:19,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:19,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.90it/s]
2022-04-26 15:42:21,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:21,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.98it/s]
2022-04-26 15:42:22,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:22,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.66it/s]
2022-04-26 15:42:24,284 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:24,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.66it/s]
2022-04-26 15:42:25,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:25,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.09it/s]
2022-04-26 15:42:27,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:27,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.52it/s]
2022-04-26 15:42:29,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:29,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.77it/s]
2022-04-26 15:42:30,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:30,598 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.31it/s]
2022-04-26 15:42:32,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:32,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.05it/s]
2022-04-26 15:42:33,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:33,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.68it/s]
2022-04-26 15:42:35,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:35,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.79it/s]
2022-04-26 15:42:36,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:36,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.18it/s]
2022-04-26 15:42:38,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:38,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.81it/s]
2022-04-26 15:42:40,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:40,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.36it/s]
2022-04-26 15:42:41,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:41,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.43it/s]
2022-04-26 15:42:43,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:43,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.48it/s]
2022-04-26 15:42:44,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:44,872 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.11it/s]
2022-04-26 15:42:46,495 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:46,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.47it/s]
2022-04-26 15:42:48,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:48,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.78it/s]
2022-04-26 15:42:49,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:49,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.15it/s]
2022-04-26 15:42:51,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:51,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.73it/s]
2022-04-26 15:42:52,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:53,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.01it/s]
2022-04-26 15:42:54,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:54,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 222.80it/s]
2022-04-26 15:42:56,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:56,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 230.27it/s]
2022-04-26 15:42:58,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:58,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.67it/s]
2022-04-26 15:42:59,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:42:59,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.46it/s]
2022-04-26 15:43:01,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:01,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.79it/s]
2022-04-26 15:43:02,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:03,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.54it/s]
2022-04-26 15:43:04,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:04,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.34it/s]
2022-04-26 15:43:06,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:06,241 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.85it/s]
2022-04-26 15:43:07,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:07,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.56it/s]
2022-04-26 15:43:09,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:09,448 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.45it/s]
2022-04-26 15:43:10,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:11,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.99it/s]
2022-04-26 15:43:12,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:12,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.71it/s]
2022-04-26 15:43:14,077 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:14,108 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.29it/s]
2022-04-26 15:43:15,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:15,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.28it/s]
2022-04-26 15:43:17,279 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:17,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.59it/s]
2022-04-26 15:43:18,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:18,865 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.78it/s]
2022-04-26 15:43:20,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:20,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.87it/s]
2022-04-26 15:43:22,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:22,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.13it/s]
2022-04-26 15:43:23,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:23,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.80it/s]
2022-04-26 15:43:25,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:25,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.39it/s]
2022-04-26 15:43:26,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:26,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.52it/s]
2022-04-26 15:43:28,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:28,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.24it/s]
2022-04-26 15:43:29,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:30,030 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.43it/s]
2022-04-26 15:43:31,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:31,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.88it/s]
2022-04-26 15:43:33,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:33,314 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.09it/s]
2022-04-26 15:43:34,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:34,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.24it/s]
2022-04-26 15:43:36,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:36,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.98it/s]
2022-04-26 15:43:38,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:38,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.16it/s]
2022-04-26 15:43:39,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:39,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.97it/s]
2022-04-26 15:43:41,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:41,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.88it/s]
2022-04-26 15:43:42,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:42,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.53it/s]
2022-04-26 15:43:44,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:44,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.79it/s]
2022-04-26 15:43:46,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:46,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.59it/s]
2022-04-26 15:43:47,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:47,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.13it/s]
2022-04-26 15:43:49,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:49,380 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.78it/s]
2022-04-26 15:43:50,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:50,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.38it/s]
2022-04-26 15:43:52,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:52,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.64it/s]
2022-04-26 15:43:54,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:54,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.50it/s]
2022-04-26 15:43:55,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:56,011 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.67it/s]
2022-04-26 15:43:57,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:57,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.95it/s]
2022-04-26 15:43:59,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:43:59,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.08it/s]
2022-04-26 15:44:00,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:00,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.02it/s]
2022-04-26 15:44:02,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:02,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.94it/s]
2022-04-26 15:44:03,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:03,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.17it/s]
2022-04-26 15:44:05,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:05,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.40it/s]
2022-04-26 15:44:07,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:07,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.16it/s]
2022-04-26 15:44:08,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:08,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.07it/s]
2022-04-26 15:44:10,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:10,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.35it/s]
2022-04-26 15:44:11,966 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:11,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.07it/s]
2022-04-26 15:44:13,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:13,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.25it/s]
2022-04-26 15:44:15,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:15,193 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.38it/s]
2022-04-26 15:44:16,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:16,749 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.12it/s]
2022-04-26 15:44:18,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:18,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 90, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.47it/s]
2022-04-26 15:44:19,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:19,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 100, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.71it/s]
2022-04-26 15:44:21,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:21,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 100, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.27it/s]
2022-04-26 15:44:23,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:23,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 100, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.85it/s]
2022-04-26 15:44:24,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:24,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 100, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.77it/s]
2022-04-26 15:44:26,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:26,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 100, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.69it/s]
2022-04-26 15:44:27,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:28,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 100, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.61it/s]
2022-04-26 15:44:29,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:29,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 100, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.06it/s]
2022-04-26 15:44:31,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:31,174 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 100, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.00it/s]
2022-04-26 15:44:32,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:32,810 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 53
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.67it/s]
2022-04-26 15:44:34,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:34,324 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 54
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.12it/s]
2022-04-26 15:44:35,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:35,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.15it/s]
2022-04-26 15:44:37,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:37,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 56
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.54it/s]
2022-04-26 15:44:38,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:38,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 57
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.90it/s]
2022-04-26 15:44:40,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:40,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 58
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.34it/s]
2022-04-26 15:44:42,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:42,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 59
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.01it/s]
2022-04-26 15:44:43,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:43,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 60
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.87it/s]
2022-04-26 15:44:45,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:45,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 61
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.33it/s]
2022-04-26 15:44:46,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:46,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 62
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.20it/s]
2022-04-26 15:44:48,365 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:48,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 63
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.00it/s]
2022-04-26 15:44:50,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:50,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 64
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.98it/s]
2022-04-26 15:44:51,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:51,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 281.82it/s]
2022-04-26 15:44:53,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:53,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 66
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.66it/s]
2022-04-26 15:44:54,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:54,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.62it/s]
2022-04-26 15:44:56,379 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:56,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.54it/s]
2022-04-26 15:44:57,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:57,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.39it/s]
2022-04-26 15:44:59,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:44:59,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.14it/s]
2022-04-26 15:45:01,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:01,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.88it/s]
2022-04-26 15:45:02,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:02,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.30it/s]
2022-04-26 15:45:04,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:04,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.99it/s]
2022-04-26 15:45:05,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:05,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.83it/s]
2022-04-26 15:45:07,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:07,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.89it/s]
2022-04-26 15:45:09,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:09,080 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.72it/s]
2022-04-26 15:45:10,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:10,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.75it/s]
2022-04-26 15:45:12,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:12,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.05it/s]
2022-04-26 15:45:13,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:13,821 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.37it/s]
2022-04-26 15:45:15,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:15,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.36it/s]
2022-04-26 15:45:16,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:16,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.58it/s]
2022-04-26 15:45:18,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:18,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.78it/s]
2022-04-26 15:45:20,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:20,126 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.39it/s]
2022-04-26 15:45:21,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:21,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.33it/s]
2022-04-26 15:45:23,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:23,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.30it/s]
2022-04-26 15:45:24,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:24,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.24it/s]
2022-04-26 15:45:26,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:26,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.77it/s]
2022-04-26 15:45:27,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:28,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.27it/s]
2022-04-26 15:45:29,527 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:29,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.42it/s]
2022-04-26 15:45:31,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:31,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.38it/s]
2022-04-26 15:45:32,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:32,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.11it/s]
2022-04-26 15:45:34,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:34,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.69it/s]
2022-04-26 15:45:36,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:36,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.61it/s]
2022-04-26 15:45:37,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:37,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.25it/s]
2022-04-26 15:45:39,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:39,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.62it/s]
2022-04-26 15:45:40,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:40,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.30it/s]
2022-04-26 15:45:42,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:42,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.63it/s]
2022-04-26 15:45:43,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:43,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.07it/s]
2022-04-26 15:45:45,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:45,546 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.89it/s]
2022-04-26 15:45:47,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:47,060 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.60it/s]
2022-04-26 15:45:48,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:48,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.21it/s]
2022-04-26 15:45:50,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:50,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.46it/s]
2022-04-26 15:45:51,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:51,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.42it/s]
2022-04-26 15:45:53,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:53,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.82it/s]
2022-04-26 15:45:54,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:54,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.32it/s]
2022-04-26 15:45:56,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:56,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.62it/s]
2022-04-26 15:45:58,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:58,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.20it/s]
2022-04-26 15:45:59,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:45:59,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.21it/s]
2022-04-26 15:46:01,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:01,309 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 51, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.65it/s]
2022-04-26 15:46:02,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:02,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 63
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.97it/s]
2022-04-26 15:46:04,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:04,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 64
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.07it/s]
2022-04-26 15:46:06,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:06,099 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 221.44it/s]
2022-04-26 15:46:07,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:07,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 66
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.72it/s]
2022-04-26 15:46:09,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:09,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.52it/s]
2022-04-26 15:46:10,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:11,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.56it/s]
2022-04-26 15:46:12,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:12,589 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.29it/s]
2022-04-26 15:46:14,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:14,099 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.95it/s]
2022-04-26 15:46:15,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:15,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.09it/s]
2022-04-26 15:46:17,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:17,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.82it/s]
2022-04-26 15:46:18,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:18,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 278.69it/s]
2022-04-26 15:46:20,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:20,252 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.65it/s]
2022-04-26 15:46:21,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:21,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.38it/s]
2022-04-26 15:46:23,400 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:23,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.14it/s]
2022-04-26 15:46:24,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:24,956 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.73it/s]
2022-04-26 15:46:26,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:26,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.45it/s]
2022-04-26 15:46:28,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:28,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.42it/s]
2022-04-26 15:46:29,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:29,624 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.80it/s]
2022-04-26 15:46:31,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:31,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.74it/s]
2022-04-26 15:46:32,796 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:32,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.88it/s]
2022-04-26 15:46:34,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:34,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.39it/s]
2022-04-26 15:46:35,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:35,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.26it/s]
2022-04-26 15:46:37,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:37,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.20it/s]
2022-04-26 15:46:39,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:39,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.50it/s]
2022-04-26 15:46:40,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:40,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.89it/s]
2022-04-26 15:46:42,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:42,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.63it/s]
2022-04-26 15:46:43,943 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:43,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.10it/s]
2022-04-26 15:46:45,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:45,599 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.36it/s]
2022-04-26 15:46:47,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:47,200 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.64it/s]
2022-04-26 15:46:48,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:48,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.93it/s]
2022-04-26 15:46:50,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:50,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.33it/s]
2022-04-26 15:46:51,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:51,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.38it/s]
2022-04-26 15:46:53,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:53,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.41it/s]
2022-04-26 15:46:54,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:54,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.26it/s]
2022-04-26 15:46:56,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:56,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.33it/s]
2022-04-26 15:46:58,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:58,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.72it/s]
2022-04-26 15:46:59,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:46:59,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.36it/s]
2022-04-26 15:47:01,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:01,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.77it/s]
2022-04-26 15:47:02,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:02,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.95it/s]
2022-04-26 15:47:04,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:04,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.28it/s]
2022-04-26 15:47:05,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:05,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.61it/s]
2022-04-26 15:47:07,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:07,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.55it/s]
2022-04-26 15:47:09,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:09,119 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.24it/s]
2022-04-26 15:47:10,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:10,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.76it/s]
2022-04-26 15:47:12,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:12,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.60it/s]
2022-04-26 15:47:13,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:13,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.61it/s]
2022-04-26 15:47:15,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:15,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 61, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.26it/s]
2022-04-26 15:47:17,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:17,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.84it/s]
2022-04-26 15:47:18,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:18,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.67it/s]
2022-04-26 15:47:20,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:20,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.04it/s]
2022-04-26 15:47:21,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:21,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 194.79it/s]
2022-04-26 15:47:23,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:23,967 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.41it/s]
2022-04-26 15:47:25,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:25,485 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.05it/s]
2022-04-26 15:47:27,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:27,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.27it/s]
2022-04-26 15:47:28,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:28,641 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.63it/s]
2022-04-26 15:47:30,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:30,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.05it/s]
2022-04-26 15:47:31,750 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:31,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.50it/s]
2022-04-26 15:47:33,319 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:33,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.09it/s]
2022-04-26 15:47:34,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:34,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.76it/s]
2022-04-26 15:47:36,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:36,522 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.75it/s]
2022-04-26 15:47:38,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:38,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.43it/s]
2022-04-26 15:47:39,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:39,629 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.29it/s]
2022-04-26 15:47:41,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:41,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.57it/s]
2022-04-26 15:47:42,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:42,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.60it/s]
2022-04-26 15:47:44,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:44,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.46it/s]
2022-04-26 15:47:45,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:45,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.83it/s]
2022-04-26 15:47:47,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:47,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.65it/s]
2022-04-26 15:47:48,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:48,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.95it/s]
2022-04-26 15:47:50,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:50,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.41it/s]
2022-04-26 15:47:52,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:52,081 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.04it/s]
2022-04-26 15:47:53,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:53,698 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.02it/s]
2022-04-26 15:47:55,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:55,312 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.83it/s]
2022-04-26 15:47:56,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:56,984 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.49it/s]
2022-04-26 15:47:58,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:47:58,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.03it/s]
2022-04-26 15:48:00,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:00,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.10it/s]
2022-04-26 15:48:01,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:01,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.99it/s]
2022-04-26 15:48:03,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:03,303 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.62it/s]
2022-04-26 15:48:04,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:04,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.79it/s]
2022-04-26 15:48:06,448 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:06,480 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.92it/s]
2022-04-26 15:48:08,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:08,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.67it/s]
2022-04-26 15:48:09,729 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:09,762 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.92it/s]
2022-04-26 15:48:11,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:11,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.92it/s]
2022-04-26 15:48:12,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:13,001 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.64it/s]
2022-04-26 15:48:14,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:14,601 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.14it/s]
2022-04-26 15:48:16,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:16,198 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.96it/s]
2022-04-26 15:48:17,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:17,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.76it/s]
2022-04-26 15:48:19,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:19,388 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.08it/s]
2022-04-26 15:48:20,980 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:21,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.80it/s]
2022-04-26 15:48:22,567 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:22,604 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.69it/s]
2022-04-26 15:48:24,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:24,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.59it/s]
2022-04-26 15:48:25,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:25,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.27it/s]
2022-04-26 15:48:27,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:27,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.57it/s]
2022-04-26 15:48:28,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:28,856 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.19it/s]
2022-04-26 15:48:30,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:30,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.29it/s]
2022-04-26 15:48:32,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:32,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.00it/s]
2022-04-26 15:48:33,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:33,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.85it/s]
2022-04-26 15:48:35,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:35,235 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.20it/s]
2022-04-26 15:48:36,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:36,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.81it/s]
2022-04-26 15:48:38,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:38,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 203.54it/s]
2022-04-26 15:48:40,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:40,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.90it/s]
2022-04-26 15:48:41,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:41,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.46it/s]
2022-04-26 15:48:43,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:43,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.00it/s]
2022-04-26 15:48:45,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:45,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.52it/s]
2022-04-26 15:48:46,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:46,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.28it/s]
2022-04-26 15:48:48,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:48,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.19it/s]
2022-04-26 15:48:49,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:49,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.71it/s]
2022-04-26 15:48:51,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:51,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.89it/s]
2022-04-26 15:48:53,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:53,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.15it/s]
2022-04-26 15:48:54,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:54,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.88it/s]
2022-04-26 15:48:56,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:56,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.48it/s]
2022-04-26 15:48:58,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:58,114 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.37it/s]
2022-04-26 15:48:59,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:48:59,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.52it/s]
2022-04-26 15:49:01,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:01,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.93it/s]
2022-04-26 15:49:02,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:02,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.31it/s]
2022-04-26 15:49:04,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:04,516 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.06it/s]
2022-04-26 15:49:05,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:06,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.96it/s]
2022-04-26 15:49:07,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:07,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.72it/s]
2022-04-26 15:49:09,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:09,324 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.47it/s]
2022-04-26 15:49:10,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:10,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.76it/s]
2022-04-26 15:49:12,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:12,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.68it/s]
2022-04-26 15:49:14,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:14,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.15it/s]
2022-04-26 15:49:15,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:15,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.96it/s]
2022-04-26 15:49:17,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:17,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.60it/s]
2022-04-26 15:49:19,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:19,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.39it/s]
2022-04-26 15:49:20,657 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:20,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.75it/s]
2022-04-26 15:49:22,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:22,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.02it/s]
2022-04-26 15:49:23,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:23,787 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.83it/s]
2022-04-26 15:49:25,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:25,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 91, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.74it/s]
2022-04-26 15:49:27,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:27,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 101, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.34it/s]
2022-04-26 15:49:28,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:28,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 101, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.05it/s]
2022-04-26 15:49:30,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:30,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 101, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.35it/s]
2022-04-26 15:49:31,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:31,913 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 101, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.41it/s]
2022-04-26 15:49:33,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:33,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 101, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.42it/s]
2022-04-26 15:49:35,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:35,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 101, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.21it/s]
2022-04-26 15:49:36,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:36,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 101, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.39it/s]
2022-04-26 15:49:38,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:38,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 54
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.18it/s]
2022-04-26 15:49:40,067 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:40,120 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.97it/s]
2022-04-26 15:49:41,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:41,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 56
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.20it/s]
2022-04-26 15:49:43,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:43,252 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 57
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.48it/s]
2022-04-26 15:49:44,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:44,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 58
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.02it/s]
2022-04-26 15:49:46,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:46,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 59
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.90it/s]
2022-04-26 15:49:47,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:48,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 60
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.94it/s]
2022-04-26 15:49:49,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:49,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 61
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.10it/s]
2022-04-26 15:49:51,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:51,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 62
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.70it/s]
2022-04-26 15:49:52,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:52,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 63
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.75it/s]
2022-04-26 15:49:54,427 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:54,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 64
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.55it/s]
2022-04-26 15:49:56,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:56,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.23it/s]
2022-04-26 15:49:57,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:57,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 66
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.41it/s]
2022-04-26 15:49:59,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:49:59,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.64it/s]
2022-04-26 15:50:00,653 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:00,707 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.93it/s]
2022-04-26 15:50:02,190 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:02,239 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.23it/s]
2022-04-26 15:50:03,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:03,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.36it/s]
2022-04-26 15:50:05,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:05,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.80it/s]
2022-04-26 15:50:06,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:06,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.25it/s]
2022-04-26 15:50:08,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:08,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.02it/s]
2022-04-26 15:50:10,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:10,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.84it/s]
2022-04-26 15:50:11,517 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:11,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.29it/s]
2022-04-26 15:50:12,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:13,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.77it/s]
2022-04-26 15:50:14,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:14,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.44it/s]
2022-04-26 15:50:16,262 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:16,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.36it/s]
2022-04-26 15:50:17,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:17,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.78it/s]
2022-04-26 15:50:19,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:19,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.06it/s]
2022-04-26 15:50:20,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:20,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.38it/s]
2022-04-26 15:50:22,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:22,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.31it/s]
2022-04-26 15:50:24,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:24,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.26it/s]
2022-04-26 15:50:25,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:25,894 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.95it/s]
2022-04-26 15:50:27,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:27,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.29it/s]
2022-04-26 15:50:29,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:29,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.34it/s]
2022-04-26 15:50:30,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:30,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.28it/s]
2022-04-26 15:50:32,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:32,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.79it/s]
2022-04-26 15:50:33,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:33,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.56it/s]
2022-04-26 15:50:35,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:35,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.79it/s]
2022-04-26 15:50:37,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:37,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.05it/s]
2022-04-26 15:50:38,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:38,732 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.10it/s]
2022-04-26 15:50:40,252 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:40,307 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.86it/s]
2022-04-26 15:50:41,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:41,905 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.55it/s]
2022-04-26 15:50:43,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:43,456 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.01it/s]
2022-04-26 15:50:45,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:45,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.78it/s]
2022-04-26 15:50:46,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:46,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.44it/s]
2022-04-26 15:50:48,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:48,291 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.11it/s]
2022-04-26 15:50:49,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:49,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.65it/s]
2022-04-26 15:50:51,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:51,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.80it/s]
2022-04-26 15:50:53,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:53,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 192.21it/s]
2022-04-26 15:50:55,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:55,076 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.55it/s]
2022-04-26 15:50:56,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:56,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.31it/s]
2022-04-26 15:50:58,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:58,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.81it/s]
2022-04-26 15:50:59,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:50:59,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.16it/s]
2022-04-26 15:51:01,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:01,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.81it/s]
2022-04-26 15:51:02,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:03,012 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.16it/s]
2022-04-26 15:51:04,642 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:04,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.64it/s]
2022-04-26 15:51:06,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:06,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 52, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.65it/s]
2022-04-26 15:51:07,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:07,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 64
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.87it/s]
2022-04-26 15:51:09,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:09,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.29it/s]
2022-04-26 15:51:10,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:11,018 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 66
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.61it/s]
2022-04-26 15:51:12,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:12,511 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.05it/s]
2022-04-26 15:51:14,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:14,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.99it/s]
2022-04-26 15:51:15,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:15,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.60it/s]
2022-04-26 15:51:17,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:17,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.17it/s]
2022-04-26 15:51:18,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:18,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.15it/s]
2022-04-26 15:51:20,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:20,414 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.60it/s]
2022-04-26 15:51:21,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:22,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.90it/s]
2022-04-26 15:51:23,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:23,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.14it/s]
2022-04-26 15:51:25,125 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:25,174 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.91it/s]
2022-04-26 15:51:26,762 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:26,798 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.62it/s]
2022-04-26 15:51:28,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:28,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.98it/s]
2022-04-26 15:51:29,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:29,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.60it/s]
2022-04-26 15:51:31,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:31,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.10it/s]
2022-04-26 15:51:33,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:33,187 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.20it/s]
2022-04-26 15:51:34,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:34,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.99it/s]
2022-04-26 15:51:36,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:36,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.97it/s]
2022-04-26 15:51:37,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:37,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.53it/s]
2022-04-26 15:51:39,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:39,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.71it/s]
2022-04-26 15:51:41,027 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:41,060 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.01it/s]
2022-04-26 15:51:42,544 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:42,576 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.26it/s]
2022-04-26 15:51:44,178 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:44,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.95it/s]
2022-04-26 15:51:45,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:45,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.79it/s]
2022-04-26 15:51:47,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:47,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.96it/s]
2022-04-26 15:51:48,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:48,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.18it/s]
2022-04-26 15:51:50,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:50,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.57it/s]
2022-04-26 15:51:52,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:52,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.31it/s]
2022-04-26 15:51:53,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:53,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.32it/s]
2022-04-26 15:51:55,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:55,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.08it/s]
2022-04-26 15:51:57,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:57,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 221.42it/s]
2022-04-26 15:51:58,826 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:51:58,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 183.63it/s]
2022-04-26 15:52:00,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:00,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.53it/s]
2022-04-26 15:52:02,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:02,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.55it/s]
2022-04-26 15:52:04,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:04,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.35it/s]
2022-04-26 15:52:05,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:05,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.09it/s]
2022-04-26 15:52:07,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:07,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.82it/s]
2022-04-26 15:52:08,981 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:09,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.01it/s]
2022-04-26 15:52:10,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:10,596 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.02it/s]
2022-04-26 15:52:12,081 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:12,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.16it/s]
2022-04-26 15:52:13,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:13,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.69it/s]
2022-04-26 15:52:15,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:15,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 235.29it/s]
2022-04-26 15:52:17,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:17,086 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.39it/s]
2022-04-26 15:52:18,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:18,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.04it/s]
2022-04-26 15:52:20,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:20,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 62, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.99it/s]
2022-04-26 15:52:21,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:21,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.69it/s]
2022-04-26 15:52:23,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:23,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.73it/s]
2022-04-26 15:52:25,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:25,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.67it/s]
2022-04-26 15:52:26,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:26,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.06it/s]
2022-04-26 15:52:28,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:28,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.62it/s]
2022-04-26 15:52:29,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:29,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.82it/s]
2022-04-26 15:52:31,369 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:31,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.24it/s]
2022-04-26 15:52:32,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:32,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.26it/s]
2022-04-26 15:52:34,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:34,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.95it/s]
2022-04-26 15:52:36,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:36,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.43it/s]
2022-04-26 15:52:37,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:37,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.67it/s]
2022-04-26 15:52:39,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:39,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 282.19it/s]
2022-04-26 15:52:40,685 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:40,718 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.33it/s]
2022-04-26 15:52:42,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:42,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.79it/s]
2022-04-26 15:52:43,802 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:43,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.80it/s]
2022-04-26 15:52:45,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:45,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.92it/s]
2022-04-26 15:52:46,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:46,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.17it/s]
2022-04-26 15:52:48,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:48,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.57it/s]
2022-04-26 15:52:50,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:50,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.31it/s]
2022-04-26 15:52:51,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:51,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.59it/s]
2022-04-26 15:52:53,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:53,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.66it/s]
2022-04-26 15:52:55,032 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:55,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.89it/s]
2022-04-26 15:52:56,585 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:56,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.64it/s]
2022-04-26 15:52:58,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:58,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.18it/s]
2022-04-26 15:52:59,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:52:59,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.38it/s]
2022-04-26 15:53:01,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:01,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.43it/s]
2022-04-26 15:53:03,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:03,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.94it/s]
2022-04-26 15:53:04,607 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:04,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.23it/s]
2022-04-26 15:53:06,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:06,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.56it/s]
2022-04-26 15:53:07,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:07,859 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.92it/s]
2022-04-26 15:53:09,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:09,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.29it/s]
2022-04-26 15:53:11,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:11,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.58it/s]
2022-04-26 15:53:12,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:12,657 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 202.71it/s]
2022-04-26 15:53:14,559 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:14,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.49it/s]
2022-04-26 15:53:16,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:16,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.81it/s]
2022-04-26 15:53:17,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:17,854 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.58it/s]
2022-04-26 15:53:19,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:19,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.05it/s]
2022-04-26 15:53:20,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:21,005 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.73it/s]
2022-04-26 15:53:22,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:22,561 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.46it/s]
2022-04-26 15:53:24,064 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:24,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.38it/s]
2022-04-26 15:53:25,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:25,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.44it/s]
2022-04-26 15:53:27,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:27,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 296.76it/s]
2022-04-26 15:53:28,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:28,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.85it/s]
2022-04-26 15:53:30,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:30,276 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.42it/s]
2022-04-26 15:53:31,770 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:31,802 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.01it/s]
2022-04-26 15:53:33,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:33,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 284.73it/s]
2022-04-26 15:53:34,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:34,884 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.19it/s]
2022-04-26 15:53:36,430 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:36,462 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.38it/s]
2022-04-26 15:53:37,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:38,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.86it/s]
2022-04-26 15:53:39,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:39,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.50it/s]
2022-04-26 15:53:41,208 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:41,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.17it/s]
2022-04-26 15:53:42,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:42,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.42it/s]
2022-04-26 15:53:44,439 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:44,472 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.49it/s]
2022-04-26 15:53:45,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:46,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.40it/s]
2022-04-26 15:53:47,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:47,698 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.38it/s]
2022-04-26 15:53:49,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:49,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.14it/s]
2022-04-26 15:53:50,913 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:50,945 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.93it/s]
2022-04-26 15:53:52,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:52,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.31it/s]
2022-04-26 15:53:54,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:54,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.42it/s]
2022-04-26 15:53:55,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:55,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.80it/s]
2022-04-26 15:53:57,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:57,360 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.74it/s]
2022-04-26 15:53:59,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:53:59,054 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 82, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.26it/s]
2022-04-26 15:54:00,624 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:00,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.55it/s]
2022-04-26 15:54:02,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:02,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.92it/s]
2022-04-26 15:54:03,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:03,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.19it/s]
2022-04-26 15:54:05,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:05,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.27it/s]
2022-04-26 15:54:07,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:07,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.80it/s]
2022-04-26 15:54:08,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:08,683 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.96it/s]
2022-04-26 15:54:10,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:10,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.14it/s]
2022-04-26 15:54:11,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:11,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.48it/s]
2022-04-26 15:54:13,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:13,440 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 235.94it/s]
2022-04-26 15:54:15,093 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:15,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.00it/s]
2022-04-26 15:54:16,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:16,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.60it/s]
2022-04-26 15:54:18,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:18,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.07it/s]
2022-04-26 15:54:19,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:19,990 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.98it/s]
2022-04-26 15:54:21,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:21,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.02it/s]
2022-04-26 15:54:23,168 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:23,208 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.67it/s]
2022-04-26 15:54:24,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:24,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 92, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.25it/s]
2022-04-26 15:54:26,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:26,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 102, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.19it/s]
2022-04-26 15:54:27,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:27,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 102, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.48it/s]
2022-04-26 15:54:29,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:29,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 102, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 195.01it/s]
2022-04-26 15:54:31,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:31,538 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 102, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.00it/s]
2022-04-26 15:54:33,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:33,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 102, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.57it/s]
2022-04-26 15:54:34,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:34,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 102, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.44it/s]
2022-04-26 15:54:36,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:36,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 55
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.16it/s]
2022-04-26 15:54:37,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:37,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 56
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.28it/s]
2022-04-26 15:54:39,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:39,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 57
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.28it/s]
2022-04-26 15:54:41,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:41,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 58
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.99it/s]
2022-04-26 15:54:42,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:42,709 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 59
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.95it/s]
2022-04-26 15:54:44,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:44,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 60
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.73it/s]
2022-04-26 15:54:45,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:45,741 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 61
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.48it/s]
2022-04-26 15:54:47,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:47,326 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 62
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.51it/s]
2022-04-26 15:54:48,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:48,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 63
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.94it/s]
2022-04-26 15:54:50,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:50,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 64
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.69it/s]
2022-04-26 15:54:52,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:52,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.32it/s]
2022-04-26 15:54:53,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:53,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 66
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.27it/s]
2022-04-26 15:54:55,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:55,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.67it/s]
2022-04-26 15:54:56,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:56,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.81it/s]
2022-04-26 15:54:58,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:54:58,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.00it/s]
2022-04-26 15:54:59,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:00,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.08it/s]
2022-04-26 15:55:01,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:01,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.14it/s]
2022-04-26 15:55:03,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:03,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.59it/s]
2022-04-26 15:55:04,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:04,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.50it/s]
2022-04-26 15:55:06,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:06,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.87it/s]
2022-04-26 15:55:08,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:08,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.41it/s]
2022-04-26 15:55:09,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:09,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.62it/s]
2022-04-26 15:55:11,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:11,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.25it/s]
2022-04-26 15:55:12,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:12,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.50it/s]
2022-04-26 15:55:14,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:14,450 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.27it/s]
2022-04-26 15:55:15,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:16,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.51it/s]
2022-04-26 15:55:17,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:17,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.42it/s]
2022-04-26 15:55:19,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:19,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.04it/s]
2022-04-26 15:55:20,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:20,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.53it/s]
2022-04-26 15:55:22,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:22,456 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.47it/s]
2022-04-26 15:55:24,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:24,044 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.41it/s]
2022-04-26 15:55:25,514 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:25,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.36it/s]
2022-04-26 15:55:27,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:27,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.24it/s]
2022-04-26 15:55:28,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:28,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.20it/s]
2022-04-26 15:55:30,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:30,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.73it/s]
2022-04-26 15:55:31,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:31,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.51it/s]
2022-04-26 15:55:33,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:33,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.59it/s]
2022-04-26 15:55:35,049 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:35,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.65it/s]
2022-04-26 15:55:36,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:36,756 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.69it/s]
2022-04-26 15:55:38,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:38,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.52it/s]
2022-04-26 15:55:39,883 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:39,923 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.34it/s]
2022-04-26 15:55:41,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:41,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.48it/s]
2022-04-26 15:55:43,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:43,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.07it/s]
2022-04-26 15:55:44,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:44,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.04it/s]
2022-04-26 15:55:46,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:46,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 205.92it/s]
2022-04-26 15:55:48,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:48,156 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.29it/s]
2022-04-26 15:55:49,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:49,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.84it/s]
2022-04-26 15:55:51,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:51,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.70it/s]
2022-04-26 15:55:52,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:52,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.03it/s]
2022-04-26 15:55:54,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:54,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.07it/s]
2022-04-26 15:55:56,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:56,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.04it/s]
2022-04-26 15:55:57,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:57,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.89it/s]
2022-04-26 15:55:59,363 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:55:59,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.34it/s]
2022-04-26 15:56:00,973 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:01,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.71it/s]
2022-04-26 15:56:02,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:02,599 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 53, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.82it/s]
2022-04-26 15:56:04,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:04,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.93it/s]
2022-04-26 15:56:05,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:05,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 66
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.59it/s]
2022-04-26 15:56:07,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:07,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.35it/s]
2022-04-26 15:56:08,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:09,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.53it/s]
2022-04-26 15:56:10,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:10,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.94it/s]
2022-04-26 15:56:12,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:12,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.77it/s]
2022-04-26 15:56:13,767 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:13,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.77it/s]
2022-04-26 15:56:15,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:15,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.43it/s]
2022-04-26 15:56:16,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:16,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.65it/s]
2022-04-26 15:56:18,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:18,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.07it/s]
2022-04-26 15:56:20,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:20,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.59it/s]
2022-04-26 15:56:21,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:21,671 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.37it/s]
2022-04-26 15:56:23,196 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:23,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.39it/s]
2022-04-26 15:56:24,772 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:24,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.20it/s]
2022-04-26 15:56:26,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:26,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.71it/s]
2022-04-26 15:56:27,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:27,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.85it/s]
2022-04-26 15:56:29,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:29,527 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.10it/s]
2022-04-26 15:56:31,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:31,101 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.19it/s]
2022-04-26 15:56:32,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:32,730 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.34it/s]
2022-04-26 15:56:34,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:34,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.49it/s]
2022-04-26 15:56:35,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:35,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.87it/s]
2022-04-26 15:56:37,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:37,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.15it/s]
2022-04-26 15:56:39,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:39,105 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.36it/s]
2022-04-26 15:56:40,610 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:40,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.59it/s]
2022-04-26 15:56:42,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:42,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.89it/s]
2022-04-26 15:56:43,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:43,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.48it/s]
2022-04-26 15:56:45,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:45,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.45it/s]
2022-04-26 15:56:47,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:47,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.77it/s]
2022-04-26 15:56:48,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:48,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.48it/s]
2022-04-26 15:56:50,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:50,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.76it/s]
2022-04-26 15:56:52,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:52,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.22it/s]
2022-04-26 15:56:53,723 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:53,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.93it/s]
2022-04-26 15:56:55,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:55,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.89it/s]
2022-04-26 15:56:56,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:56,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.64it/s]
2022-04-26 15:56:58,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:56:58,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.02it/s]
2022-04-26 15:56:59,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:00,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.71it/s]
2022-04-26 15:57:01,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:01,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.91it/s]
2022-04-26 15:57:03,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:03,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 204.66it/s]
2022-04-26 15:57:05,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:05,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.99it/s]
2022-04-26 15:57:06,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:06,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.88it/s]
2022-04-26 15:57:08,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:08,357 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.59it/s]
2022-04-26 15:57:09,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:09,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.99it/s]
2022-04-26 15:57:11,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:11,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.34it/s]
2022-04-26 15:57:13,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:13,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.42it/s]
2022-04-26 15:57:14,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:14,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 63, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.35it/s]
2022-04-26 15:57:16,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:16,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.08it/s]
2022-04-26 15:57:17,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:18,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.06it/s]
2022-04-26 15:57:19,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:19,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.78it/s]
2022-04-26 15:57:21,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:21,266 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.66it/s]
2022-04-26 15:57:22,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:22,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.76it/s]
2022-04-26 15:57:24,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:24,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.32it/s]
2022-04-26 15:57:25,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:26,041 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.28it/s]
2022-04-26 15:57:27,547 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:27,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.91it/s]
2022-04-26 15:57:29,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:29,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.23it/s]
2022-04-26 15:57:30,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:30,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.62it/s]
2022-04-26 15:57:32,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:32,173 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.60it/s]
2022-04-26 15:57:33,690 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:33,734 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.95it/s]
2022-04-26 15:57:35,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:35,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.66it/s]
2022-04-26 15:57:36,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:36,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.12it/s]
2022-04-26 15:57:38,470 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:38,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.70it/s]
2022-04-26 15:57:40,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:40,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.29it/s]
2022-04-26 15:57:41,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:41,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.76it/s]
2022-04-26 15:57:43,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:43,298 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.73it/s]
2022-04-26 15:57:44,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:44,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.90it/s]
2022-04-26 15:57:46,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:46,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.86it/s]
2022-04-26 15:57:48,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:48,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.91it/s]
2022-04-26 15:57:49,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:49,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.28it/s]
2022-04-26 15:57:51,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:51,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.18it/s]
2022-04-26 15:57:52,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:52,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.49it/s]
2022-04-26 15:57:54,405 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:54,437 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.29it/s]
2022-04-26 15:57:56,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:56,049 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.06it/s]
2022-04-26 15:57:57,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:57,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.23it/s]
2022-04-26 15:57:59,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:57:59,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.70it/s]
2022-04-26 15:58:00,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:00,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.35it/s]
2022-04-26 15:58:02,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:02,550 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.85it/s]
2022-04-26 15:58:04,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:04,116 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.63it/s]
2022-04-26 15:58:05,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:05,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.38it/s]
2022-04-26 15:58:07,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:07,319 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.67it/s]
2022-04-26 15:58:08,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:09,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.78it/s]
2022-04-26 15:58:10,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:10,657 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.21it/s]
2022-04-26 15:58:12,263 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:12,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.46it/s]
2022-04-26 15:58:13,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:13,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.07it/s]
2022-04-26 15:58:15,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:15,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.32it/s]
2022-04-26 15:58:16,958 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:16,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.95it/s]
2022-04-26 15:58:18,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:18,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.91it/s]
2022-04-26 15:58:20,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:20,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.72it/s]
2022-04-26 15:58:21,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:21,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.96it/s]
2022-04-26 15:58:23,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:23,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.06it/s]
2022-04-26 15:58:24,895 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:24,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.98it/s]
2022-04-26 15:58:26,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:26,478 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.48it/s]
2022-04-26 15:58:28,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:28,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.41it/s]
2022-04-26 15:58:29,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:29,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.93it/s]
2022-04-26 15:58:31,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:31,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.57it/s]
2022-04-26 15:58:32,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:32,817 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.18it/s]
2022-04-26 15:58:34,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:34,493 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.20it/s]
2022-04-26 15:58:36,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:36,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.65it/s]
2022-04-26 15:58:37,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:37,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.72it/s]
2022-04-26 15:58:39,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:39,303 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.64it/s]
2022-04-26 15:58:40,833 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:40,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.46it/s]
2022-04-26 15:58:42,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:42,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.82it/s]
2022-04-26 15:58:44,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:44,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.11it/s]
2022-04-26 15:58:45,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:45,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.91it/s]
2022-04-26 15:58:47,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:47,255 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.99it/s]
2022-04-26 15:58:48,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:48,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.96it/s]
2022-04-26 15:58:50,477 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:50,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 83, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.05it/s]
2022-04-26 15:58:52,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:52,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 93, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.02it/s]
2022-04-26 15:58:53,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:53,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 93, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.60it/s]
2022-04-26 15:58:55,353 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:55,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 93, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.28it/s]
2022-04-26 15:58:56,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:56,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 93, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.35it/s]
2022-04-26 15:58:58,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:58:58,551 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 93, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.76it/s]
2022-04-26 15:59:00,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:00,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 93, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.14it/s]
2022-04-26 15:59:01,743 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:01,775 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 93, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.83it/s]
2022-04-26 15:59:03,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:03,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 93, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.91it/s]
2022-04-26 15:59:04,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:04,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 93, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.14it/s]
2022-04-26 15:59:06,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:06,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 93, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.36it/s]
2022-04-26 15:59:08,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:08,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 93, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.17it/s]
2022-04-26 15:59:09,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:09,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 93, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.02it/s]
2022-04-26 15:59:11,237 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:11,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 93, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.56it/s]
2022-04-26 15:59:12,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:12,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 93, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.41it/s]
2022-04-26 15:59:14,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:14,512 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 93, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.29it/s]
2022-04-26 15:59:16,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:16,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 103, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.03it/s]
2022-04-26 15:59:17,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:17,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 103, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 185.94it/s]
2022-04-26 15:59:19,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:19,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 103, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.08it/s]
2022-04-26 15:59:21,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:21,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 103, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.71it/s]
2022-04-26 15:59:22,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:23,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 103, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.50it/s]
2022-04-26 15:59:24,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:24,668 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 56
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.53it/s]
2022-04-26 15:59:26,113 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:26,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 57
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.06it/s]
2022-04-26 15:59:27,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:27,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 58
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.67it/s]
2022-04-26 15:59:29,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:29,351 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 59
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.20it/s]
2022-04-26 15:59:30,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:30,897 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 60
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.00it/s]
2022-04-26 15:59:32,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:32,495 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 61
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.17it/s]
2022-04-26 15:59:34,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:34,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 62
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.22it/s]
2022-04-26 15:59:35,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:35,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 63
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.69it/s]
2022-04-26 15:59:37,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:37,189 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 64
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.95it/s]
2022-04-26 15:59:38,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:38,743 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.28it/s]
2022-04-26 15:59:40,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:40,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 66
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.61it/s]
2022-04-26 15:59:41,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:41,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.17it/s]
2022-04-26 15:59:43,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:43,414 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.95it/s]
2022-04-26 15:59:44,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:44,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.79it/s]
2022-04-26 15:59:46,480 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:46,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.06it/s]
2022-04-26 15:59:48,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:48,072 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.22it/s]
2022-04-26 15:59:49,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:49,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.04it/s]
2022-04-26 15:59:51,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:51,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.59it/s]
2022-04-26 15:59:52,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:52,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.78it/s]
2022-04-26 15:59:54,242 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:54,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.03it/s]
2022-04-26 15:59:55,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:55,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.75it/s]
2022-04-26 15:59:57,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:57,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.90it/s]
2022-04-26 15:59:59,026 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 15:59:59,058 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.23it/s]
2022-04-26 16:00:00,600 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:00,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.42it/s]
2022-04-26 16:00:02,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:02,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.18it/s]
2022-04-26 16:00:03,754 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:03,787 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.54it/s]
2022-04-26 16:00:05,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:05,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.36it/s]
2022-04-26 16:00:06,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:07,013 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.14it/s]
2022-04-26 16:00:08,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:08,621 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.40it/s]
2022-04-26 16:00:10,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:10,230 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.05it/s]
2022-04-26 16:00:11,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:11,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.07it/s]
2022-04-26 16:00:13,320 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:13,352 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.49it/s]
2022-04-26 16:00:14,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:14,911 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.42it/s]
2022-04-26 16:00:16,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:16,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.24it/s]
2022-04-26 16:00:18,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:18,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.42it/s]
2022-04-26 16:00:19,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:19,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.46it/s]
2022-04-26 16:00:21,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:21,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.88it/s]
2022-04-26 16:00:23,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:23,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.03it/s]
2022-04-26 16:00:24,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:24,657 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.22it/s]
2022-04-26 16:00:26,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:26,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.36it/s]
2022-04-26 16:00:27,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:27,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.67it/s]
2022-04-26 16:00:29,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:29,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.35it/s]
2022-04-26 16:00:30,907 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:30,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.34it/s]
2022-04-26 16:00:32,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:32,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.68it/s]
2022-04-26 16:00:34,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:34,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.77it/s]
2022-04-26 16:00:35,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:35,698 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.06it/s]
2022-04-26 16:00:37,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:37,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.11it/s]
2022-04-26 16:00:38,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:38,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.56it/s]
2022-04-26 16:00:40,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:40,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.76it/s]
2022-04-26 16:00:42,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:42,142 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.34it/s]
2022-04-26 16:00:43,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:43,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.32it/s]
2022-04-26 16:00:45,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:45,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.67it/s]
2022-04-26 16:00:46,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:47,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.59it/s]
2022-04-26 16:00:48,611 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:48,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 54, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.29it/s]
2022-04-26 16:00:50,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:50,260 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 66
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.20it/s]
2022-04-26 16:00:51,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:51,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.86it/s]
2022-04-26 16:00:53,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:53,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.51it/s]
2022-04-26 16:00:54,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:55,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.52it/s]
2022-04-26 16:00:56,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:56,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.28it/s]
2022-04-26 16:00:58,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:58,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.63it/s]
2022-04-26 16:00:59,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:00:59,693 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.24it/s]
2022-04-26 16:01:01,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:01,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.33it/s]
2022-04-26 16:01:02,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:02,824 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.08it/s]
2022-04-26 16:01:04,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:04,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 278.65it/s]
2022-04-26 16:01:05,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:05,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.21it/s]
2022-04-26 16:01:07,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:07,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.85it/s]
2022-04-26 16:01:08,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:08,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.55it/s]
2022-04-26 16:01:10,516 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:10,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.01it/s]
2022-04-26 16:01:12,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:12,095 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.70it/s]
2022-04-26 16:01:13,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:13,681 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.81it/s]
2022-04-26 16:01:15,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:15,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.44it/s]
2022-04-26 16:01:16,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:16,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.03it/s]
2022-04-26 16:01:18,301 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:18,333 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.18it/s]
2022-04-26 16:01:19,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:19,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.50it/s]
2022-04-26 16:01:21,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:21,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.27it/s]
2022-04-26 16:01:22,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:23,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.29it/s]
2022-04-26 16:01:24,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:24,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.75it/s]
2022-04-26 16:01:26,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:26,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.32it/s]
2022-04-26 16:01:27,798 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:27,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.71it/s]
2022-04-26 16:01:29,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:29,412 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.53it/s]
2022-04-26 16:01:30,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:30,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 215.37it/s]
2022-04-26 16:01:32,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:32,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.39it/s]
2022-04-26 16:01:34,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:34,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.91it/s]
2022-04-26 16:01:36,001 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:36,033 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.12it/s]
2022-04-26 16:01:37,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:37,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.85it/s]
2022-04-26 16:01:39,162 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:39,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.79it/s]
2022-04-26 16:01:40,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:40,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.98it/s]
2022-04-26 16:01:42,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:42,448 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.72it/s]
2022-04-26 16:01:43,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:44,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.24it/s]
2022-04-26 16:01:45,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:45,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.30it/s]
2022-04-26 16:01:47,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:47,220 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.62it/s]
2022-04-26 16:01:48,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:48,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.92it/s]
2022-04-26 16:01:50,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:50,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.87it/s]
2022-04-26 16:01:51,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:52,021 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.29it/s]
2022-04-26 16:01:53,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:53,568 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.47it/s]
2022-04-26 16:01:55,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:55,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.86it/s]
2022-04-26 16:01:56,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:56,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.28it/s]
2022-04-26 16:01:58,297 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:01:58,329 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 64, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.25it/s]
2022-04-26 16:01:59,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:00,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.33it/s]
2022-04-26 16:02:01,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:01,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.77it/s]
2022-04-26 16:02:03,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:03,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.93it/s]
2022-04-26 16:02:04,641 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:04,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.57it/s]
2022-04-26 16:02:06,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:06,270 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.97it/s]
2022-04-26 16:02:07,799 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:07,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.95it/s]
2022-04-26 16:02:09,432 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:09,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 278.10it/s]
2022-04-26 16:02:10,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:10,977 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 277.22it/s]
2022-04-26 16:02:12,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:12,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.53it/s]
2022-04-26 16:02:14,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:14,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.31it/s]
2022-04-26 16:02:15,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:15,707 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.40it/s]
2022-04-26 16:02:17,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:17,323 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.41it/s]
2022-04-26 16:02:18,897 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:18,929 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.58it/s]
2022-04-26 16:02:20,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:20,506 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.40it/s]
2022-04-26 16:02:22,065 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:22,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.76it/s]
2022-04-26 16:02:23,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:23,664 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.09it/s]
2022-04-26 16:02:25,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:25,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.96it/s]
2022-04-26 16:02:26,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:26,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.75it/s]
2022-04-26 16:02:28,472 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:28,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.49it/s]
2022-04-26 16:02:30,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:30,303 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.18it/s]
2022-04-26 16:02:31,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:31,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.60it/s]
2022-04-26 16:02:33,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:33,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.58it/s]
2022-04-26 16:02:35,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:35,150 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.37it/s]
2022-04-26 16:02:36,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:36,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.09it/s]
2022-04-26 16:02:38,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:38,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.06it/s]
2022-04-26 16:02:40,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:40,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.82it/s]
2022-04-26 16:02:41,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:41,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.29it/s]
2022-04-26 16:02:43,293 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:43,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.09it/s]
2022-04-26 16:02:44,875 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:44,908 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.06it/s]
2022-04-26 16:02:46,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:46,525 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.74it/s]
2022-04-26 16:02:48,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:48,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.85it/s]
2022-04-26 16:02:49,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:49,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.89it/s]
2022-04-26 16:02:51,235 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:51,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.19it/s]
2022-04-26 16:02:52,832 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:52,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.11it/s]
2022-04-26 16:02:54,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:54,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.27it/s]
2022-04-26 16:02:56,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:56,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.52it/s]
2022-04-26 16:02:57,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:57,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.50it/s]
2022-04-26 16:02:59,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:02:59,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.17it/s]
2022-04-26 16:03:00,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:00,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.47it/s]
2022-04-26 16:03:02,321 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:02,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.29it/s]
2022-04-26 16:03:03,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:03,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.13it/s]
2022-04-26 16:03:05,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:05,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.66it/s]
2022-04-26 16:03:07,061 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:07,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.18it/s]
2022-04-26 16:03:08,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:08,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.13it/s]
2022-04-26 16:03:10,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:10,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.06it/s]
2022-04-26 16:03:11,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:11,891 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.94it/s]
2022-04-26 16:03:13,459 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:13,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.51it/s]
2022-04-26 16:03:14,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:15,028 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.98it/s]
2022-04-26 16:03:16,651 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:16,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.69it/s]
2022-04-26 16:03:18,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:18,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.94it/s]
2022-04-26 16:03:19,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:19,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.98it/s]
2022-04-26 16:03:21,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:21,534 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.76it/s]
2022-04-26 16:03:23,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:23,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.01it/s]
2022-04-26 16:03:24,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:24,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.49it/s]
2022-04-26 16:03:26,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:26,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.74it/s]
2022-04-26 16:03:27,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:28,027 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.60it/s]
2022-04-26 16:03:29,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:29,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.72it/s]
2022-04-26 16:03:31,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:31,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 84, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.21it/s]
2022-04-26 16:03:32,835 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:32,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 94, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.44it/s]
2022-04-26 16:03:34,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:34,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 94, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.79it/s]
2022-04-26 16:03:35,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:35,951 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 94, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.00it/s]
2022-04-26 16:03:37,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:37,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 94, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.66it/s]
2022-04-26 16:03:39,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:39,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 94, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 186.14it/s]
2022-04-26 16:03:41,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:41,223 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 94, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.26it/s]
2022-04-26 16:03:42,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:42,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 94, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.05it/s]
2022-04-26 16:03:44,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:44,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 94, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.14it/s]
2022-04-26 16:03:46,012 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:46,044 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 94, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.66it/s]
2022-04-26 16:03:47,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:47,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 94, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.05it/s]
2022-04-26 16:03:49,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:49,402 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 94, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.65it/s]
2022-04-26 16:03:50,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:50,984 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 94, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.47it/s]
2022-04-26 16:03:52,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:52,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 94, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.42it/s]
2022-04-26 16:03:54,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:54,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 94, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.03it/s]
2022-04-26 16:03:55,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:55,753 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 104, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.44it/s]
2022-04-26 16:03:57,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:57,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 104, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.57it/s]
2022-04-26 16:03:58,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:03:58,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 104, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.74it/s]
2022-04-26 16:04:00,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:00,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 104, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.46it/s]
2022-04-26 16:04:02,025 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:02,078 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 57
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.20it/s]
2022-04-26 16:04:03,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:03,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 58
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.40it/s]
2022-04-26 16:04:05,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:05,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 59
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.01it/s]
2022-04-26 16:04:06,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:06,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 60
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.73it/s]
2022-04-26 16:04:08,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:08,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 61
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.89it/s]
2022-04-26 16:04:09,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:09,904 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 62
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.05it/s]
2022-04-26 16:04:11,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:11,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 63
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.26it/s]
2022-04-26 16:04:12,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:12,994 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 64
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.36it/s]
2022-04-26 16:04:14,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:14,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.24it/s]
2022-04-26 16:04:16,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:16,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 66
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.18it/s]
2022-04-26 16:04:17,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:17,803 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.11it/s]
2022-04-26 16:04:19,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:19,391 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.68it/s]
2022-04-26 16:04:20,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:20,935 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 203.99it/s]
2022-04-26 16:04:22,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:22,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 186.75it/s]
2022-04-26 16:04:24,905 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:24,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.98it/s]
2022-04-26 16:04:26,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:26,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 280.04it/s]
2022-04-26 16:04:27,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:28,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.59it/s]
2022-04-26 16:04:29,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:29,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.69it/s]
2022-04-26 16:04:31,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:31,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.04it/s]
2022-04-26 16:04:32,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:32,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.84it/s]
2022-04-26 16:04:34,270 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:34,302 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.09it/s]
2022-04-26 16:04:35,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:35,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.27it/s]
2022-04-26 16:04:37,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:37,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.69it/s]
2022-04-26 16:04:38,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:38,947 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.42it/s]
2022-04-26 16:04:40,496 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:40,528 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.79it/s]
2022-04-26 16:04:42,129 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:42,159 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.37it/s]
2022-04-26 16:04:43,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:43,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.66it/s]
2022-04-26 16:04:45,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:45,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.02it/s]
2022-04-26 16:04:46,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:46,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.59it/s]
2022-04-26 16:04:48,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:48,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.61it/s]
2022-04-26 16:04:49,873 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:49,906 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.47it/s]
2022-04-26 16:04:51,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:51,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.78it/s]
2022-04-26 16:04:52,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:53,000 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.40it/s]
2022-04-26 16:04:54,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:54,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.47it/s]
2022-04-26 16:04:56,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:56,269 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.81it/s]
2022-04-26 16:04:57,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:57,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.23it/s]
2022-04-26 16:04:59,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:04:59,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.04it/s]
2022-04-26 16:05:00,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:00,916 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.35it/s]
2022-04-26 16:05:02,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:02,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.78it/s]
2022-04-26 16:05:04,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:04,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 206.06it/s]
2022-04-26 16:05:05,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:06,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 193.00it/s]
2022-04-26 16:05:07,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:08,030 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.17it/s]
2022-04-26 16:05:09,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:09,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.19it/s]
2022-04-26 16:05:11,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:11,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.51it/s]
2022-04-26 16:05:12,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:12,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.85it/s]
2022-04-26 16:05:14,422 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:14,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.93it/s]
2022-04-26 16:05:15,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:15,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.02it/s]
2022-04-26 16:05:17,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:17,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.78it/s]
2022-04-26 16:05:19,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:19,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.20it/s]
2022-04-26 16:05:20,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:20,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.81it/s]
2022-04-26 16:05:22,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:22,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.12it/s]
2022-04-26 16:05:23,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:23,818 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.09it/s]
2022-04-26 16:05:25,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:25,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 55, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.59it/s]
2022-04-26 16:05:27,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:27,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.16it/s]
2022-04-26 16:05:28,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:28,656 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.93it/s]
2022-04-26 16:05:30,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:30,210 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.47it/s]
2022-04-26 16:05:31,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:31,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.08it/s]
2022-04-26 16:05:33,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:33,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.32it/s]
2022-04-26 16:05:34,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:34,873 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 280.80it/s]
2022-04-26 16:05:36,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:36,357 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.13it/s]
2022-04-26 16:05:37,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:37,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.30it/s]
2022-04-26 16:05:39,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:39,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.22it/s]
2022-04-26 16:05:41,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:41,112 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.43it/s]
2022-04-26 16:05:42,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:42,687 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.48it/s]
2022-04-26 16:05:44,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:44,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.44it/s]
2022-04-26 16:05:45,683 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:45,726 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.37it/s]
2022-04-26 16:05:47,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:47,341 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.26it/s]
2022-04-26 16:05:48,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:48,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.10it/s]
2022-04-26 16:05:50,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:50,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.60it/s]
2022-04-26 16:05:52,183 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:52,223 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.23it/s]
2022-04-26 16:05:53,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:53,815 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.06it/s]
2022-04-26 16:05:55,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:55,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.76it/s]
2022-04-26 16:05:56,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:57,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.78it/s]
2022-04-26 16:05:58,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:05:58,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.17it/s]
2022-04-26 16:06:00,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:00,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.77it/s]
2022-04-26 16:06:01,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:01,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.94it/s]
2022-04-26 16:06:03,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:03,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.66it/s]
2022-04-26 16:06:04,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:04,942 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.99it/s]
2022-04-26 16:06:06,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:06,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.07it/s]
2022-04-26 16:06:07,967 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:08,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.23it/s]
2022-04-26 16:06:09,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:09,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.00it/s]
2022-04-26 16:06:11,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:11,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.91it/s]
2022-04-26 16:06:12,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:12,755 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.63it/s]
2022-04-26 16:06:14,339 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:14,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.93it/s]
2022-04-26 16:06:15,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:15,992 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.87it/s]
2022-04-26 16:06:17,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:17,588 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.57it/s]
2022-04-26 16:06:19,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:19,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 206.83it/s]
2022-04-26 16:06:20,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:21,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.63it/s]
2022-04-26 16:06:22,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:22,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.38it/s]
2022-04-26 16:06:24,194 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:24,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.86it/s]
2022-04-26 16:06:25,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:25,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.69it/s]
2022-04-26 16:06:27,486 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:27,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.65it/s]
2022-04-26 16:06:29,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:29,133 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.86it/s]
2022-04-26 16:06:30,691 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:30,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.29it/s]
2022-04-26 16:06:32,305 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:32,337 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.83it/s]
2022-04-26 16:06:33,858 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:33,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 65, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.31it/s]
2022-04-26 16:06:35,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:35,553 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.99it/s]
2022-04-26 16:06:37,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:37,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.02it/s]
2022-04-26 16:06:38,725 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:38,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.79it/s]
2022-04-26 16:06:40,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:40,385 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.09it/s]
2022-04-26 16:06:41,934 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:41,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.75it/s]
2022-04-26 16:06:43,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:43,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.10it/s]
2022-04-26 16:06:45,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:45,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.55it/s]
2022-04-26 16:06:46,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:46,708 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.37it/s]
2022-04-26 16:06:48,266 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:48,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.45it/s]
2022-04-26 16:06:49,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:49,943 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.34it/s]
2022-04-26 16:06:51,500 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:51,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.64it/s]
2022-04-26 16:06:53,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:53,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 280.87it/s]
2022-04-26 16:06:54,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:54,558 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.10it/s]
2022-04-26 16:06:56,063 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:56,111 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.58it/s]
2022-04-26 16:06:57,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:57,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.97it/s]
2022-04-26 16:06:59,233 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:06:59,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.82it/s]
2022-04-26 16:07:00,821 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:00,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.68it/s]
2022-04-26 16:07:02,329 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:02,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.99it/s]
2022-04-26 16:07:03,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:03,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.19it/s]
2022-04-26 16:07:05,479 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:05,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.81it/s]
2022-04-26 16:07:07,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:07,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.31it/s]
2022-04-26 16:07:08,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:08,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.22it/s]
2022-04-26 16:07:10,403 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:10,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.74it/s]
2022-04-26 16:07:11,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:12,002 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.49it/s]
2022-04-26 16:07:13,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:13,575 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.56it/s]
2022-04-26 16:07:15,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:15,191 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.49it/s]
2022-04-26 16:07:16,838 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:16,870 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.42it/s]
2022-04-26 16:07:18,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:18,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.05it/s]
2022-04-26 16:07:20,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:20,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.69it/s]
2022-04-26 16:07:21,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:21,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.70it/s]
2022-04-26 16:07:23,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:23,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.32it/s]
2022-04-26 16:07:25,040 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:25,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.31it/s]
2022-04-26 16:07:26,561 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:26,616 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.72it/s]
2022-04-26 16:07:28,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:28,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.51it/s]
2022-04-26 16:07:29,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:29,827 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.30it/s]
2022-04-26 16:07:31,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:31,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.67it/s]
2022-04-26 16:07:32,963 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:33,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.55it/s]
2022-04-26 16:07:34,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:34,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.89it/s]
2022-04-26 16:07:36,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:36,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.02it/s]
2022-04-26 16:07:37,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:37,794 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.16it/s]
2022-04-26 16:07:39,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:39,346 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.75it/s]
2022-04-26 16:07:40,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:40,943 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.22it/s]
2022-04-26 16:07:42,558 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:42,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.90it/s]
2022-04-26 16:07:44,084 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:44,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.83it/s]
2022-04-26 16:07:45,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:45,646 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.45it/s]
2022-04-26 16:07:47,201 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:47,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.21it/s]
2022-04-26 16:07:48,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:48,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.32it/s]
2022-04-26 16:07:50,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:50,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.93it/s]
2022-04-26 16:07:51,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:52,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.45it/s]
2022-04-26 16:07:53,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:53,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.74it/s]
2022-04-26 16:07:55,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:55,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.07it/s]
2022-04-26 16:07:56,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:56,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.96it/s]
2022-04-26 16:07:58,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:07:58,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.28it/s]
2022-04-26 16:08:00,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:00,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.23it/s]
2022-04-26 16:08:01,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:01,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.81it/s]
2022-04-26 16:08:03,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:03,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 85, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.42it/s]
2022-04-26 16:08:04,784 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:04,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.13it/s]
2022-04-26 16:08:06,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:06,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.49it/s]
2022-04-26 16:08:08,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:08,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.48it/s]
2022-04-26 16:08:09,675 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:09,707 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.05it/s]
2022-04-26 16:08:11,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:11,244 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.40it/s]
2022-04-26 16:08:12,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:12,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.49it/s]
2022-04-26 16:08:14,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:14,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.95it/s]
2022-04-26 16:08:16,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:16,310 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.73it/s]
2022-04-26 16:08:17,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:17,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.88it/s]
2022-04-26 16:08:19,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:19,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.68it/s]
2022-04-26 16:08:20,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:20,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.34it/s]
2022-04-26 16:08:22,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:22,510 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.17it/s]
2022-04-26 16:08:24,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:24,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 95, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.86it/s]
2022-04-26 16:08:25,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:25,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 105, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.11it/s]
2022-04-26 16:08:27,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:27,377 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 105, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.24it/s]
2022-04-26 16:08:28,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:28,964 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 105, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 233.87it/s]
2022-04-26 16:08:30,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:30,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 58
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.08it/s]
2022-04-26 16:08:32,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:32,303 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 59
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.52it/s]
2022-04-26 16:08:33,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:33,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 60
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.11it/s]
2022-04-26 16:08:35,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:35,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 61
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.00it/s]
2022-04-26 16:08:36,938 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:36,969 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 62
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.02it/s]
2022-04-26 16:08:38,497 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:38,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 63
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.93it/s]
2022-04-26 16:08:40,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:40,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 64
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.86it/s]
2022-04-26 16:08:41,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:41,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.52it/s]
2022-04-26 16:08:43,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:43,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 66
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.50it/s]
2022-04-26 16:08:44,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:44,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.91it/s]
2022-04-26 16:08:46,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:46,245 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.35it/s]
2022-04-26 16:08:47,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:47,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.03it/s]
2022-04-26 16:08:49,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:49,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.94it/s]
2022-04-26 16:08:50,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:50,954 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.39it/s]
2022-04-26 16:08:52,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:52,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.22it/s]
2022-04-26 16:08:53,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:53,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.08it/s]
2022-04-26 16:08:55,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:55,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.18it/s]
2022-04-26 16:08:57,085 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:57,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.57it/s]
2022-04-26 16:08:58,604 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:08:58,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.13it/s]
2022-04-26 16:09:00,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:00,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.44it/s]
2022-04-26 16:09:01,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:01,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.21it/s]
2022-04-26 16:09:03,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:03,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.54it/s]
2022-04-26 16:09:04,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:04,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.98it/s]
2022-04-26 16:09:06,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:06,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.35it/s]
2022-04-26 16:09:07,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:07,957 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.50it/s]
2022-04-26 16:09:09,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:09,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.78it/s]
2022-04-26 16:09:11,152 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:11,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.76it/s]
2022-04-26 16:09:12,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:12,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.03it/s]
2022-04-26 16:09:14,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:14,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.91it/s]
2022-04-26 16:09:15,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:15,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.55it/s]
2022-04-26 16:09:17,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:17,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.68it/s]
2022-04-26 16:09:18,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:19,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.49it/s]
2022-04-26 16:09:20,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:20,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.20it/s]
2022-04-26 16:09:22,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:22,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.91it/s]
2022-04-26 16:09:23,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:23,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.23it/s]
2022-04-26 16:09:25,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:25,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.32it/s]
2022-04-26 16:09:26,957 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:26,989 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.98it/s]
2022-04-26 16:09:28,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:28,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.98it/s]
2022-04-26 16:09:30,090 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:30,122 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 216.36it/s]
2022-04-26 16:09:31,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:31,959 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.60it/s]
2022-04-26 16:09:33,474 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:33,506 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.47it/s]
2022-04-26 16:09:35,066 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:35,098 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.28it/s]
2022-04-26 16:09:36,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:36,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.84it/s]
2022-04-26 16:09:38,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:38,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.64it/s]
2022-04-26 16:09:39,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:39,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.56it/s]
2022-04-26 16:09:41,524 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:41,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.21it/s]
2022-04-26 16:09:43,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:43,144 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.93it/s]
2022-04-26 16:09:44,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:44,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.10it/s]
2022-04-26 16:09:46,298 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:46,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.69it/s]
2022-04-26 16:09:47,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:47,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 234.90it/s]
2022-04-26 16:09:49,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:49,678 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.89it/s]
2022-04-26 16:09:51,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:51,312 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 56, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.10it/s]
2022-04-26 16:09:52,827 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:52,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.06it/s]
2022-04-26 16:09:54,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:54,419 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.98it/s]
2022-04-26 16:09:55,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:56,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.09it/s]
2022-04-26 16:09:57,588 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:57,621 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.88it/s]
2022-04-26 16:09:59,145 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:09:59,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.74it/s]
2022-04-26 16:10:00,662 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:00,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.52it/s]
2022-04-26 16:10:02,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:02,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.82it/s]
2022-04-26 16:10:03,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:03,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.18it/s]
2022-04-26 16:10:05,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:05,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.53it/s]
2022-04-26 16:10:06,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:07,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.81it/s]
2022-04-26 16:10:08,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:08,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 284.01it/s]
2022-04-26 16:10:10,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:10,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.62it/s]
2022-04-26 16:10:11,630 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:11,662 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.10it/s]
2022-04-26 16:10:13,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:13,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.96it/s]
2022-04-26 16:10:14,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:14,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.66it/s]
2022-04-26 16:10:16,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:16,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.77it/s]
2022-04-26 16:10:17,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:17,928 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 234.91it/s]
2022-04-26 16:10:19,569 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:19,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.47it/s]
2022-04-26 16:10:21,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:21,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.48it/s]
2022-04-26 16:10:22,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:22,892 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.59it/s]
2022-04-26 16:10:24,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:24,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.17it/s]
2022-04-26 16:10:26,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:26,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.29it/s]
2022-04-26 16:10:27,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:27,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.61it/s]
2022-04-26 16:10:29,158 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:29,209 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.35it/s]
2022-04-26 16:10:30,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:30,737 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.64it/s]
2022-04-26 16:10:32,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:32,297 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.34it/s]
2022-04-26 16:10:33,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:33,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.68it/s]
2022-04-26 16:10:35,543 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:35,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.00it/s]
2022-04-26 16:10:37,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:37,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.11it/s]
2022-04-26 16:10:38,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:38,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.63it/s]
2022-04-26 16:10:40,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:40,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.49it/s]
2022-04-26 16:10:41,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:41,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.47it/s]
2022-04-26 16:10:43,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:43,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.31it/s]
2022-04-26 16:10:44,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:45,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.61it/s]
2022-04-26 16:10:46,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:46,617 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 198.54it/s]
2022-04-26 16:10:48,545 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:48,578 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.60it/s]
2022-04-26 16:10:50,127 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:50,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.95it/s]
2022-04-26 16:10:51,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:51,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.63it/s]
2022-04-26 16:10:53,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:53,369 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.64it/s]
2022-04-26 16:10:54,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:54,926 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.85it/s]
2022-04-26 16:10:56,488 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:56,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 232.64it/s]
2022-04-26 16:10:58,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:58,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 66, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.11it/s]
2022-04-26 16:10:59,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:10:59,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.13it/s]
2022-04-26 16:11:01,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:01,350 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.85it/s]
2022-04-26 16:11:02,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:02,900 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.69it/s]
2022-04-26 16:11:04,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:04,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.50it/s]
2022-04-26 16:11:05,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:05,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.66it/s]
2022-04-26 16:11:07,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:07,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.57it/s]
2022-04-26 16:11:09,057 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:09,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.26it/s]
2022-04-26 16:11:10,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:10,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.58it/s]
2022-04-26 16:11:12,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:12,276 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.26it/s]
2022-04-26 16:11:13,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:13,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.65it/s]
2022-04-26 16:11:15,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:15,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.59it/s]
2022-04-26 16:11:17,104 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:17,147 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.33it/s]
2022-04-26 16:11:18,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:18,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.00it/s]
2022-04-26 16:11:20,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:20,295 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.09it/s]
2022-04-26 16:11:21,911 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:21,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.93it/s]
2022-04-26 16:11:23,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:23,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.36it/s]
2022-04-26 16:11:25,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:25,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.14it/s]
2022-04-26 16:11:26,705 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:26,738 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.78it/s]
2022-04-26 16:11:28,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:28,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.86it/s]
2022-04-26 16:11:29,846 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:29,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.07it/s]
2022-04-26 16:11:31,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:31,490 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.59it/s]
2022-04-26 16:11:33,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:33,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.17it/s]
2022-04-26 16:11:34,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:34,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.19it/s]
2022-04-26 16:11:36,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:36,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.39it/s]
2022-04-26 16:11:37,854 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:37,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.44it/s]
2022-04-26 16:11:39,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:39,490 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.48it/s]
2022-04-26 16:11:40,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:41,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.33it/s]
2022-04-26 16:11:42,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:42,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.36it/s]
2022-04-26 16:11:44,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:44,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.43it/s]
2022-04-26 16:11:45,710 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:45,742 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.71it/s]
2022-04-26 16:11:47,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:47,357 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.44it/s]
2022-04-26 16:11:48,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:48,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.40it/s]
2022-04-26 16:11:50,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:50,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.43it/s]
2022-04-26 16:11:52,148 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:52,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.07it/s]
2022-04-26 16:11:53,741 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:53,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.33it/s]
2022-04-26 16:11:55,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:55,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.53it/s]
2022-04-26 16:11:56,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:56,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.87it/s]
2022-04-26 16:11:58,437 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:11:58,469 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.81it/s]
2022-04-26 16:12:00,039 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:00,070 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.82it/s]
2022-04-26 16:12:01,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:01,619 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.27it/s]
2022-04-26 16:12:03,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:03,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 192.03it/s]
2022-04-26 16:12:05,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:05,251 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.74it/s]
2022-04-26 16:12:06,811 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:06,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.77it/s]
2022-04-26 16:12:08,438 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:08,472 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.73it/s]
2022-04-26 16:12:09,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:10,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.10it/s]
2022-04-26 16:12:11,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:11,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.74it/s]
2022-04-26 16:12:13,220 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:13,252 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.26it/s]
2022-04-26 16:12:14,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:14,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.95it/s]
2022-04-26 16:12:16,526 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:16,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.92it/s]
2022-04-26 16:12:18,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:18,244 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.02it/s]
2022-04-26 16:12:19,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:19,865 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.36it/s]
2022-04-26 16:12:21,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:21,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.57it/s]
2022-04-26 16:12:22,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:22,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.21it/s]
2022-04-26 16:12:24,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:24,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 86, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.91it/s]
2022-04-26 16:12:26,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:26,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 96, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.21it/s]
2022-04-26 16:12:27,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:27,812 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 96, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.20it/s]
2022-04-26 16:12:29,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:29,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 96, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.79it/s]
2022-04-26 16:12:31,017 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:31,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 96, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.89it/s]
2022-04-26 16:12:32,712 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:32,750 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 96, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.24it/s]
2022-04-26 16:12:34,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:34,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 96, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.51it/s]
2022-04-26 16:12:35,924 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:35,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 96, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.34it/s]
2022-04-26 16:12:37,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:37,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 96, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.46it/s]
2022-04-26 16:12:39,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:39,162 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 96, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.78it/s]
2022-04-26 16:12:40,721 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:40,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 96, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.63it/s]
2022-04-26 16:12:42,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:42,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 96, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.93it/s]
2022-04-26 16:12:43,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:43,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 96, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.93it/s]
2022-04-26 16:12:45,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:45,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 106, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.27it/s]
2022-04-26 16:12:47,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:47,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 106, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.22it/s]
2022-04-26 16:12:48,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:48,687 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 59
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.80it/s]
2022-04-26 16:12:50,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:50,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 60
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 280.23it/s]
2022-04-26 16:12:51,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:51,728 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 61
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.54it/s]
2022-04-26 16:12:53,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:53,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 62
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.42it/s]
2022-04-26 16:12:54,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:54,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 63
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.89it/s]
2022-04-26 16:12:56,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:56,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 64
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.33it/s]
2022-04-26 16:12:57,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:58,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.43it/s]
2022-04-26 16:12:59,519 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:12:59,548 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 66
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.94it/s]
2022-04-26 16:13:01,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:01,167 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.73it/s]
2022-04-26 16:13:02,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:02,924 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.40it/s]
2022-04-26 16:13:04,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:04,495 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.16it/s]
2022-04-26 16:13:05,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:06,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.38it/s]
2022-04-26 16:13:07,571 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:07,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.87it/s]
2022-04-26 16:13:09,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:09,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.88it/s]
2022-04-26 16:13:10,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:10,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.45it/s]
2022-04-26 16:13:12,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:12,355 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.79it/s]
2022-04-26 16:13:13,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:13,858 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.55it/s]
2022-04-26 16:13:15,406 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:15,439 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.62it/s]
2022-04-26 16:13:17,016 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:17,048 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.06it/s]
2022-04-26 16:13:18,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:18,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.70it/s]
2022-04-26 16:13:20,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:20,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.34it/s]
2022-04-26 16:13:21,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:21,660 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.64it/s]
2022-04-26 16:13:23,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:23,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.49it/s]
2022-04-26 16:13:24,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:24,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.54it/s]
2022-04-26 16:13:26,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:26,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.19it/s]
2022-04-26 16:13:28,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:28,084 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.60it/s]
2022-04-26 16:13:29,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:29,560 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.80it/s]
2022-04-26 16:13:31,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:31,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.68it/s]
2022-04-26 16:13:32,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:32,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.20it/s]
2022-04-26 16:13:34,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:34,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.23it/s]
2022-04-26 16:13:35,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:35,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.07it/s]
2022-04-26 16:13:37,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:37,451 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.09it/s]
2022-04-26 16:13:39,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:39,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.36it/s]
2022-04-26 16:13:40,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:40,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.93it/s]
2022-04-26 16:13:42,264 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:42,303 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.79it/s]
2022-04-26 16:13:43,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:43,831 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.66it/s]
2022-04-26 16:13:45,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:45,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.89it/s]
2022-04-26 16:13:47,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:47,046 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.75it/s]
2022-04-26 16:13:48,573 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:48,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.26it/s]
2022-04-26 16:13:50,234 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:50,266 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.15it/s]
2022-04-26 16:13:51,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:51,878 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.64it/s]
2022-04-26 16:13:53,401 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:53,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.55it/s]
2022-04-26 16:13:55,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:55,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.93it/s]
2022-04-26 16:13:56,621 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:56,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.93it/s]
2022-04-26 16:13:58,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:58,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.87it/s]
2022-04-26 16:13:59,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:13:59,825 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.76it/s]
2022-04-26 16:14:01,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:01,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.50it/s]
2022-04-26 16:14:02,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:02,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.89it/s]
2022-04-26 16:14:04,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:04,602 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.04it/s]
2022-04-26 16:14:06,228 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:06,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 239.91it/s]
2022-04-26 16:14:07,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:07,959 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 57, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.28it/s]
2022-04-26 16:14:09,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:09,603 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.68it/s]
2022-04-26 16:14:11,123 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:11,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.21it/s]
2022-04-26 16:14:12,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:12,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.22it/s]
2022-04-26 16:14:14,286 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:14,318 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.35it/s]
2022-04-26 16:14:15,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:15,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.50it/s]
2022-04-26 16:14:17,481 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:17,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 215.64it/s]
2022-04-26 16:14:19,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:19,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.89it/s]
2022-04-26 16:14:20,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:20,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.22it/s]
2022-04-26 16:14:22,376 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:22,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.59it/s]
2022-04-26 16:14:24,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:24,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.23it/s]
2022-04-26 16:14:25,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:25,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.85it/s]
2022-04-26 16:14:27,153 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:27,186 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.81it/s]
2022-04-26 16:14:28,682 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:28,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.51it/s]
2022-04-26 16:14:30,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:30,303 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.43it/s]
2022-04-26 16:14:31,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:31,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.56it/s]
2022-04-26 16:14:33,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:33,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.38it/s]
2022-04-26 16:14:35,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:35,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.58it/s]
2022-04-26 16:14:36,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:36,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.24it/s]
2022-04-26 16:14:38,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:38,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.83it/s]
2022-04-26 16:14:39,797 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:39,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.03it/s]
2022-04-26 16:14:41,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:41,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.96it/s]
2022-04-26 16:14:42,900 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:42,931 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.60it/s]
2022-04-26 16:14:44,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:44,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.87it/s]
2022-04-26 16:14:46,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:46,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.99it/s]
2022-04-26 16:14:47,635 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:47,666 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.63it/s]
2022-04-26 16:14:49,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:49,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.43it/s]
2022-04-26 16:14:50,783 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:50,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.57it/s]
2022-04-26 16:14:52,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:52,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.81it/s]
2022-04-26 16:14:53,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:53,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.35it/s]
2022-04-26 16:14:55,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:55,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.87it/s]
2022-04-26 16:14:57,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:57,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.26it/s]
2022-04-26 16:14:58,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:14:58,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.90it/s]
2022-04-26 16:15:00,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:00,424 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.01it/s]
2022-04-26 16:15:01,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:01,961 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.45it/s]
2022-04-26 16:15:03,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:03,645 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.42it/s]
2022-04-26 16:15:05,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:05,250 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.67it/s]
2022-04-26 16:15:06,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:06,836 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.33it/s]
2022-04-26 16:15:08,338 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:08,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.59it/s]
2022-04-26 16:15:09,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:10,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.25it/s]
2022-04-26 16:15:11,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:11,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.19it/s]
2022-04-26 16:15:13,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:13,223 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 67, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.24it/s]
2022-04-26 16:15:14,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:14,826 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.08it/s]
2022-04-26 16:15:16,348 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:16,401 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.00it/s]
2022-04-26 16:15:17,899 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:17,944 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.34it/s]
2022-04-26 16:15:19,509 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:19,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.68it/s]
2022-04-26 16:15:21,078 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:21,129 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.43it/s]
2022-04-26 16:15:22,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:22,702 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.02it/s]
2022-04-26 16:15:24,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:24,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.70it/s]
2022-04-26 16:15:25,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:25,892 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.74it/s]
2022-04-26 16:15:27,392 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:27,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.53it/s]
2022-04-26 16:15:28,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:28,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.67it/s]
2022-04-26 16:15:30,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:30,536 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.16it/s]
2022-04-26 16:15:32,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:32,170 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.36it/s]
2022-04-26 16:15:33,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:33,828 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 191.70it/s]
2022-04-26 16:15:35,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:35,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.11it/s]
2022-04-26 16:15:37,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:37,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.58it/s]
2022-04-26 16:15:39,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:39,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.43it/s]
2022-04-26 16:15:40,719 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:40,751 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.98it/s]
2022-04-26 16:15:42,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:42,313 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.33it/s]
2022-04-26 16:15:43,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:43,937 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.84it/s]
2022-04-26 16:15:45,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:45,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.66it/s]
2022-04-26 16:15:47,200 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:47,233 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.15it/s]
2022-04-26 16:15:48,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:48,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.18it/s]
2022-04-26 16:15:50,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:50,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.91it/s]
2022-04-26 16:15:51,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:51,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.49it/s]
2022-04-26 16:15:53,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:53,599 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.54it/s]
2022-04-26 16:15:55,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:55,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.63it/s]
2022-04-26 16:15:56,805 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:56,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.61it/s]
2022-04-26 16:15:58,337 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:15:58,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.00it/s]
2022-04-26 16:16:00,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:00,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.37it/s]
2022-04-26 16:16:01,591 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:01,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.93it/s]
2022-04-26 16:16:03,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:03,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.44it/s]
2022-04-26 16:16:04,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:04,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.46it/s]
2022-04-26 16:16:06,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:06,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.46it/s]
2022-04-26 16:16:08,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:08,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.00it/s]
2022-04-26 16:16:09,661 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:09,695 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.05it/s]
2022-04-26 16:16:11,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:11,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.73it/s]
2022-04-26 16:16:12,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:12,893 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.82it/s]
2022-04-26 16:16:14,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:14,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.01it/s]
2022-04-26 16:16:16,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:16,094 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.56it/s]
2022-04-26 16:16:17,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:17,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.12it/s]
2022-04-26 16:16:19,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:19,259 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.15it/s]
2022-04-26 16:16:20,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:20,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.30it/s]
2022-04-26 16:16:22,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:22,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.50it/s]
2022-04-26 16:16:23,982 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:24,014 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.95it/s]
2022-04-26 16:16:25,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:25,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.69it/s]
2022-04-26 16:16:27,143 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:27,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.61it/s]
2022-04-26 16:16:28,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:28,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.55it/s]
2022-04-26 16:16:30,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:30,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.21it/s]
2022-04-26 16:16:32,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:32,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.36it/s]
2022-04-26 16:16:33,649 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:33,680 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.72it/s]
2022-04-26 16:16:35,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:35,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.77it/s]
2022-04-26 16:16:36,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:36,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 87, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.88it/s]
2022-04-26 16:16:38,415 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:38,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 97, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.00it/s]
2022-04-26 16:16:40,095 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:40,127 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 97, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.10it/s]
2022-04-26 16:16:41,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:41,714 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 97, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.92it/s]
2022-04-26 16:16:43,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:43,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 97, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.33it/s]
2022-04-26 16:16:44,970 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:45,010 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 97, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.05it/s]
2022-04-26 16:16:46,619 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:46,651 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 97, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.92it/s]
2022-04-26 16:16:48,186 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:48,225 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 97, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.76it/s]
2022-04-26 16:16:49,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:49,785 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 97, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.50it/s]
2022-04-26 16:16:51,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:51,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 97, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 191.70it/s]
2022-04-26 16:16:53,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:53,421 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 97, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.50it/s]
2022-04-26 16:16:54,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:54,968 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 97, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.94it/s]
2022-04-26 16:16:56,557 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:56,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 107, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.52it/s]
2022-04-26 16:16:58,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:58,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 60
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.63it/s]
2022-04-26 16:16:59,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:16:59,764 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 61
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.04it/s]
2022-04-26 16:17:01,289 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:01,321 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 62
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.82it/s]
2022-04-26 16:17:02,800 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:02,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 63
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.98it/s]
2022-04-26 16:17:04,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:04,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 64
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.88it/s]
2022-04-26 16:17:05,856 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:05,910 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.63it/s]
2022-04-26 16:17:07,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:07,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 66
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.79it/s]
2022-04-26 16:17:08,983 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:09,016 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.91it/s]
2022-04-26 16:17:10,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:10,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.22it/s]
2022-04-26 16:17:12,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:12,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.60it/s]
2022-04-26 16:17:13,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:13,687 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.79it/s]
2022-04-26 16:17:15,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:15,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.28it/s]
2022-04-26 16:17:16,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:16,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.92it/s]
2022-04-26 16:17:18,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:18,489 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.71it/s]
2022-04-26 16:17:19,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:20,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.25it/s]
2022-04-26 16:17:21,586 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:21,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.87it/s]
2022-04-26 16:17:23,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:23,213 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.14it/s]
2022-04-26 16:17:24,734 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:24,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.52it/s]
2022-04-26 16:17:26,333 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:26,366 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.21it/s]
2022-04-26 16:17:27,886 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:27,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.71it/s]
2022-04-26 16:17:29,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:29,470 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.64it/s]
2022-04-26 16:17:31,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:31,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.25it/s]
2022-04-26 16:17:32,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:32,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.22it/s]
2022-04-26 16:17:34,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:34,257 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.83it/s]
2022-04-26 16:17:35,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:35,869 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.66it/s]
2022-04-26 16:17:37,408 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:37,446 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.70it/s]
2022-04-26 16:17:38,996 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:39,029 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.62it/s]
2022-04-26 16:17:40,520 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:40,552 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.72it/s]
2022-04-26 16:17:42,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:42,139 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.48it/s]
2022-04-26 16:17:43,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:43,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.09it/s]
2022-04-26 16:17:45,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:45,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.38it/s]
2022-04-26 16:17:46,880 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:46,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.27it/s]
2022-04-26 16:17:48,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:48,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.30it/s]
2022-04-26 16:17:50,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:50,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.27it/s]
2022-04-26 16:17:51,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:51,790 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.20it/s]
2022-04-26 16:17:53,280 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:53,325 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.60it/s]
2022-04-26 16:17:54,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:54,887 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.12it/s]
2022-04-26 16:17:56,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:56,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.84it/s]
2022-04-26 16:17:58,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:58,091 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.66it/s]
2022-04-26 16:17:59,582 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:17:59,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.31it/s]
2022-04-26 16:18:01,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:01,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.96it/s]
2022-04-26 16:18:02,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:02,872 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.63it/s]
2022-04-26 16:18:04,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:04,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.35it/s]
2022-04-26 16:18:06,096 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:06,128 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.54it/s]
2022-04-26 16:18:07,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:07,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.14it/s]
2022-04-26 16:18:09,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:09,290 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.30it/s]
2022-04-26 16:18:10,855 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:10,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.85it/s]
2022-04-26 16:18:12,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:12,488 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.01it/s]
2022-04-26 16:18:14,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:14,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.15it/s]
2022-04-26 16:18:15,605 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:15,638 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 58, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.37it/s]
2022-04-26 16:18:17,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:17,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.82it/s]
2022-04-26 16:18:18,782 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:18,814 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.28it/s]
2022-04-26 16:18:20,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:20,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.19it/s]
2022-04-26 16:18:21,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:21,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.69it/s]
2022-04-26 16:18:23,475 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:23,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.25it/s]
2022-04-26 16:18:24,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:25,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.96it/s]
2022-04-26 16:18:26,507 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:26,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.83it/s]
2022-04-26 16:18:28,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:28,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.07it/s]
2022-04-26 16:18:29,638 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:29,670 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.95it/s]
2022-04-26 16:18:31,213 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:31,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.12it/s]
2022-04-26 16:18:32,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:32,830 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.78it/s]
2022-04-26 16:18:34,288 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:34,342 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.20it/s]
2022-04-26 16:18:35,823 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:35,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.18it/s]
2022-04-26 16:18:37,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:37,465 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.94it/s]
2022-04-26 16:18:38,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:39,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.17it/s]
2022-04-26 16:18:40,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:40,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.78it/s]
2022-04-26 16:18:42,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:42,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 277.02it/s]
2022-04-26 16:18:43,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:43,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.07it/s]
2022-04-26 16:18:45,357 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:45,389 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.21it/s]
2022-04-26 16:18:46,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:46,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.35it/s]
2022-04-26 16:18:48,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:48,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.97it/s]
2022-04-26 16:18:50,117 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:50,148 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.48it/s]
2022-04-26 16:18:51,739 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:51,770 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.36it/s]
2022-04-26 16:18:53,306 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:53,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.57it/s]
2022-04-26 16:18:54,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:54,946 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.71it/s]
2022-04-26 16:18:56,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:56,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.98it/s]
2022-04-26 16:18:58,106 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:58,138 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.78it/s]
2022-04-26 16:18:59,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:18:59,724 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.79it/s]
2022-04-26 16:19:01,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:01,285 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.16it/s]
2022-04-26 16:19:02,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:02,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.18it/s]
2022-04-26 16:19:04,466 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:04,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 193.06it/s]
2022-04-26 16:19:06,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:06,508 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.12it/s]
2022-04-26 16:19:08,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:08,115 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.54it/s]
2022-04-26 16:19:09,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:09,653 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.93it/s]
2022-04-26 16:19:11,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:11,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.39it/s]
2022-04-26 16:19:12,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:12,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.53it/s]
2022-04-26 16:19:14,502 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:14,540 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.14it/s]
2022-04-26 16:19:16,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:16,179 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.64it/s]
2022-04-26 16:19:17,756 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:17,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.47it/s]
2022-04-26 16:19:19,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:19,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 68, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.69it/s]
2022-04-26 16:19:20,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:21,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.87it/s]
2022-04-26 16:19:22,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:22,563 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.68it/s]
2022-04-26 16:19:24,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:24,206 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.69it/s]
2022-04-26 16:19:25,757 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:25,789 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.16it/s]
2022-04-26 16:19:27,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:27,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.64it/s]
2022-04-26 16:19:28,954 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:28,986 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.68it/s]
2022-04-26 16:19:30,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:30,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.80it/s]
2022-04-26 16:19:32,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:32,146 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.80it/s]
2022-04-26 16:19:33,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:33,692 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.35it/s]
2022-04-26 16:19:35,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:35,390 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.36it/s]
2022-04-26 16:19:36,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:36,974 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.86it/s]
2022-04-26 16:19:38,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:38,644 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.79it/s]
2022-04-26 16:19:40,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:40,224 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.60it/s]
2022-04-26 16:19:41,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:41,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.07it/s]
2022-04-26 16:19:43,294 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:43,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.09it/s]
2022-04-26 16:19:44,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:44,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.08it/s]
2022-04-26 16:19:46,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:46,515 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.59it/s]
2022-04-26 16:19:48,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:48,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.91it/s]
2022-04-26 16:19:49,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:49,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.28it/s]
2022-04-26 16:19:51,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:51,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.00it/s]
2022-04-26 16:19:52,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:52,906 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.31it/s]
2022-04-26 16:19:54,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:54,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.43it/s]
2022-04-26 16:19:56,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:56,092 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.00it/s]
2022-04-26 16:19:57,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:57,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.83it/s]
2022-04-26 16:19:59,244 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:19:59,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.95it/s]
2022-04-26 16:20:00,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:00,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.79it/s]
2022-04-26 16:20:02,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:02,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.16it/s]
2022-04-26 16:20:04,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:04,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.23it/s]
2022-04-26 16:20:05,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:05,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.18it/s]
2022-04-26 16:20:07,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:07,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.05it/s]
2022-04-26 16:20:09,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:09,034 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.96it/s]
2022-04-26 16:20:10,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:10,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.54it/s]
2022-04-26 16:20:12,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:12,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.35it/s]
2022-04-26 16:20:13,674 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:13,706 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.59it/s]
2022-04-26 16:20:15,230 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:15,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.00it/s]
2022-04-26 16:20:16,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:16,861 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.85it/s]
2022-04-26 16:20:18,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:18,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.16it/s]
2022-04-26 16:20:20,073 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:20,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.73it/s]
2022-04-26 16:20:21,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:21,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.86it/s]
2022-04-26 16:20:23,343 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:23,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.30it/s]
2022-04-26 16:20:24,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:25,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.24it/s]
2022-04-26 16:20:26,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:26,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.29it/s]
2022-04-26 16:20:28,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:28,261 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.10it/s]
2022-04-26 16:20:29,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:29,844 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.89it/s]
2022-04-26 16:20:31,385 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:31,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.44it/s]
2022-04-26 16:20:33,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:33,063 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.15it/s]
2022-04-26 16:20:34,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:34,684 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.78it/s]
2022-04-26 16:20:36,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:36,238 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.68it/s]
2022-04-26 16:20:37,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:37,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 240.69it/s]
2022-04-26 16:20:39,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:39,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 88, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.70it/s]
2022-04-26 16:20:41,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:41,201 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 98, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.31it/s]
2022-04-26 16:20:42,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:42,857 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 98, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 238.47it/s]
2022-04-26 16:20:44,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:44,557 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 98, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.56it/s]
2022-04-26 16:20:46,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:46,206 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 98, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.69it/s]
2022-04-26 16:20:47,742 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:47,775 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 98, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.25it/s]
2022-04-26 16:20:49,265 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:49,322 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 98, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.39it/s]
2022-04-26 16:20:50,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:50,965 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 98, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.10it/s]
2022-04-26 16:20:52,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:52,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 98, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.95it/s]
2022-04-26 16:20:54,134 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:54,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 98, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.05it/s]
2022-04-26 16:20:55,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:55,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 98, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.79it/s]
2022-04-26 16:20:57,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:57,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 61
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.79it/s]
2022-04-26 16:20:58,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:20:58,941 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 62
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.00it/s]
2022-04-26 16:21:00,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:00,534 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 63
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.15it/s]
2022-04-26 16:21:02,088 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:02,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 64
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.89it/s]
2022-04-26 16:21:03,652 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:03,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 65
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.67it/s]
2022-04-26 16:21:05,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:05,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 66
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.96it/s]
2022-04-26 16:21:06,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:06,721 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 67
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.35it/s]
2022-04-26 16:21:08,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:08,294 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 68
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.54it/s]
2022-04-26 16:21:09,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:09,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 69
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.28it/s]
2022-04-26 16:21:11,368 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:11,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 70
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.10it/s]
2022-04-26 16:21:12,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:13,038 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 71
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.25it/s]
2022-04-26 16:21:14,622 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:14,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.87it/s]
2022-04-26 16:21:16,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:16,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.76it/s]
2022-04-26 16:21:17,714 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:17,760 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.34it/s]
2022-04-26 16:21:19,324 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:19,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 210.86it/s]
2022-04-26 16:21:21,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:21,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 286.74it/s]
2022-04-26 16:21:22,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:22,673 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.04it/s]
2022-04-26 16:21:24,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:24,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.79it/s]
2022-04-26 16:21:25,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:25,766 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.87it/s]
2022-04-26 16:21:27,277 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:27,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.65it/s]
2022-04-26 16:21:28,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:28,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.05it/s]
2022-04-26 16:21:30,414 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:30,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.52it/s]
2022-04-26 16:21:31,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:31,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.72it/s]
2022-04-26 16:21:33,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:33,520 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 84
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.01it/s]
2022-04-26 16:21:35,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:35,174 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 85
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.27it/s]
2022-04-26 16:21:36,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:36,748 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 86
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.87it/s]
2022-04-26 16:21:38,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:38,317 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 87
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.70it/s]
2022-04-26 16:21:39,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:39,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 88
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.79it/s]
2022-04-26 16:21:41,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:41,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 89
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.24it/s]
2022-04-26 16:21:42,861 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:42,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 90
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.49it/s]
2022-04-26 16:21:44,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:44,459 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.80it/s]
2022-04-26 16:21:45,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:46,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.08it/s]
2022-04-26 16:21:47,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:47,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.92it/s]
2022-04-26 16:21:49,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:49,223 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.78it/s]
2022-04-26 16:21:50,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:50,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.56it/s]
2022-04-26 16:21:52,384 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:52,415 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.97it/s]
2022-04-26 16:21:53,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:53,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.14it/s]
2022-04-26 16:21:55,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:55,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.66it/s]
2022-04-26 16:21:57,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:21:57,104 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 59, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.87it/s]
2022-04-26 16:23:55,373 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:23:55,405 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 79, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.99it/s]
2022-04-26 16:23:56,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:23:56,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 79, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.27it/s]
2022-04-26 16:23:58,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:23:58,648 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 79, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.66it/s]
2022-04-26 16:24:00,191 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:00,229 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 79, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.70it/s]
2022-04-26 16:24:01,733 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:01,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 79, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 243.85it/s]
2022-04-26 16:24:03,434 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:03,473 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 91
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.26it/s]
2022-04-26 16:24:04,995 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:05,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 92
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.11it/s]
2022-04-26 16:24:06,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:06,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 93
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.73it/s]
2022-04-26 16:24:08,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:08,125 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 94
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.83it/s]
2022-04-26 16:24:09,667 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:09,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 95
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.91it/s]
2022-04-26 16:24:11,181 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:11,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 96
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.09it/s]
2022-04-26 16:24:12,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:12,906 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 97
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.13it/s]
2022-04-26 16:24:14,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:14,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 98
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.74it/s]
2022-04-26 16:24:16,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:16,135 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 99
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.80it/s]
2022-04-26 16:24:17,738 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:17,773 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 100
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.40it/s]
2022-04-26 16:24:19,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:19,419 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.13it/s]
2022-04-26 16:24:21,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:21,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.97it/s]
2022-04-26 16:24:22,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:22,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.63it/s]
2022-04-26 16:24:24,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:24,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.68it/s]
2022-04-26 16:24:25,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:25,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.40it/s]
2022-04-26 16:24:27,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:27,433 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.41it/s]
2022-04-26 16:24:29,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:29,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.40it/s]
2022-04-26 16:24:30,587 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:30,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.10it/s]
2022-04-26 16:24:32,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:32,237 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 89, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.44it/s]
2022-04-26 16:24:33,752 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:33,786 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 99, back end: 101
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.94it/s]
2022-04-26 16:24:35,375 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:35,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 99, back end: 102
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.66it/s]
2022-04-26 16:24:37,024 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:37,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 99, back end: 103
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.20it/s]
2022-04-26 16:24:38,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:38,642 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 99, back end: 104
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.43it/s]
2022-04-26 16:24:40,184 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:40,216 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 99, back end: 105
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 232.04it/s]
2022-04-26 16:24:41,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:41,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 99, back end: 106
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.92it/s]
2022-04-26 16:24:43,539 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:43,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 99, back end: 107
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.48it/s]
2022-04-26 16:24:45,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:45,212 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 99, back end: 108
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.27it/s]
2022-04-26 16:24:46,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:46,880 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 99, back end: 109
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.43it/s]
2022-04-26 16:24:48,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 16:24:48,460 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

Writing table to /home/kglidic/tshirt_data/tser_data/phot_aperture_optimization/aperture_opt_GJ3470b_sweep_aperture_sizing_NRCA3_GJ3470b_2022_11_23_src_50_60_step_1_back_50_110_step_10.csv
Min Stdev results:
src  back_st back_end stdev  theo_err mad_arr
---- ------- -------- ------ -------- -------
58.0    98.0    102.0 0.0234   0.0129  0.0127
In [11]:
analysis.plot_apsizes('/home/kglidic/tshirt_data/tser_data/phot_aperture_optimization/aperture_opt_GJ3470b_sweep_aperture_sizing_NRCA3_GJ3470b_2022_11_23_src_50_60_step_1_back_50_110_step_10.csv')
In [14]:
sweep_results_mid = pd.read_csv('/home/kglidic/tshirt_data/tser_data/phot_aperture_optimization/aperture_opt_GJ3470b_sweep_aperture_sizing_NRCA3_GJ3470b_2022_11_23_src_50_60_step_1_back_50_110_step_10.csv')

MAD_min_idx = abs(sweep_results_mid[['mad_arr']]).idxmin()
print("Min MAD Results " + str(sweep_results_mid[['mad_arr']].idxmin()))
print(sweep_results_mid.iloc[MAD_min_idx])

print("THEO_ERR = "+str((0.0146/100)*10**6))
print("STDEV = "+str((0.0248/100)*10**6))
print("MAD*1.48 = "+str((0.0116/100)*1.48*10**6))
Min MAD Results mad_arr    1028
dtype: int64
       src  back_st  back_end   stdev  theo_err  mad_arr
1028  55.0     75.0      79.0  0.0248    0.0146   0.0116
THEO_ERR = 146.0
STDEV = 248.0
MAD*1.48 = 171.67999999999998
In [15]:
phot = phot_pipeline.phot(paramFile="/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/GJ3470b_WLP8_NRCA3_ROEBA_phot_pipeline.yaml") #create a photometric object
alteredParam = deepcopy(phot.param)
alteredParam['srcGeometry']='Circular'
alteredParam['bkgGeometry'] = 'CircularAnnulus'
alteredParam['apRadius'] = 55 #Changing the source radius
alteredParam['backStart'] = 75 #Changing the inner radius
alteredParam['backEnd'] = 79 #Changing the outer radius
alteredParam['bkgMethod'] = 'mean' #Due to the odd aperture configuration, we need to do mean background subtraction

alteredParam['doCentering'] = True
alteredParam['srcNameShort'] = 'GJ3470b_mid_best' #provide a new name for centroid realignment

#Assignimg a object new phot3
phot_mid_best = phot_pipeline.phot(directParam=alteredParam) #create new photometric object
phot_mid_best.showStarChoices(showAps=True,showPlot=True,apColor='red',backColor='pink', figSize=(30,20),xLim=[900,1200]) #Plot the source and background subtraction area
In [16]:
phot_mid_best.get_allimg_cen(recenter=True,useMultiprocessing=True) #recenter the centroids each time. 
phot_mid_best.do_phot(useMultiprocessing=True) #extract the photometric data
  1%|▎                                        | 14/1681 [00:00<01:26, 19.38it/s]2022-04-26 17:46:49,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:46:49,822 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:46:50,000 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 20/1681 [00:01<01:17, 21.54it/s]2022-04-26 17:46:50,052 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                        | 33/1681 [00:01<00:52, 31.11it/s]2022-04-26 17:46:50,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:46:50,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▋                                       | 69/1681 [00:02<00:50, 31.91it/s]2022-04-26 17:46:51,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▊                                       | 73/1681 [00:02<00:48, 33.18it/s]2022-04-26 17:46:51,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 141/1681 [00:05<00:50, 30.55it/s]2022-04-26 17:46:54,002 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 145/1681 [00:05<00:57, 26.61it/s]2022-04-26 17:46:54,214 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                 | 265/1681 [00:09<00:45, 31.24it/s]2022-04-26 17:46:58,227 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▍                                 | 271/1681 [00:09<00:49, 28.33it/s]2022-04-26 17:46:58,429 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▊                                | 329/1681 [00:11<00:50, 26.88it/s]2022-04-26 17:47:00,174 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                                | 335/1681 [00:11<00:43, 30.64it/s]2022-04-26 17:47:00,361 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▍                               | 354/1681 [00:12<00:41, 32.21it/s]2022-04-26 17:47:00,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▌                               | 358/1681 [00:12<00:45, 29.12it/s]2022-04-26 17:47:01,170 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                              | 397/1681 [00:13<00:37, 34.49it/s]2022-04-26 17:47:02,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▌                              | 401/1681 [00:13<00:40, 31.39it/s]2022-04-26 17:47:02,462 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                             | 450/1681 [00:15<00:42, 29.25it/s]2022-04-26 17:47:03,942 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:04,164 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▊                             | 456/1681 [00:15<00:43, 28.11it/s]2022-04-26 17:47:04,248 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████                             | 465/1681 [00:15<00:32, 37.78it/s]2022-04-26 17:47:04,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████▏                            | 470/1681 [00:15<00:37, 32.35it/s]2022-04-26 17:47:04,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:04,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:04,776 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████▎                            | 476/1681 [00:15<00:42, 28.59it/s]2022-04-26 17:47:04,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                           | 517/1681 [00:17<00:36, 32.14it/s]2022-04-26 17:47:06,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:06,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▍                           | 522/1681 [00:17<00:49, 23.56it/s]2022-04-26 17:47:06,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▋                           | 532/1681 [00:17<00:36, 31.76it/s]2022-04-26 17:47:06,708 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▍                          | 566/1681 [00:18<00:35, 31.34it/s]2022-04-26 17:47:07,687 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▌                          | 570/1681 [00:18<00:36, 30.30it/s]2022-04-26 17:47:07,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|██████████████                          | 591/1681 [00:19<00:40, 26.62it/s]2022-04-26 17:47:08,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|██████████████▏                         | 596/1681 [00:19<00:35, 30.47it/s]2022-04-26 17:47:08,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:08,730 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▎                         | 600/1681 [00:19<00:35, 30.47it/s]2022-04-26 17:47:08,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▌                         | 613/1681 [00:20<00:37, 28.63it/s]2022-04-26 17:47:09,199 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 37%|██████████████▋                         | 616/1681 [00:20<00:38, 27.32it/s]2022-04-26 17:47:09,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▉                      | 756/1681 [00:24<00:28, 32.67it/s]2022-04-26 17:47:13,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|██████████████████                      | 760/1681 [00:25<00:31, 29.02it/s]2022-04-26 17:47:13,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 53%|█████████████████████                   | 885/1681 [00:28<00:22, 35.61it/s]2022-04-26 17:47:17,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:18,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 54%|█████████████████████▊                  | 915/1681 [00:30<00:25, 29.93it/s]2022-04-26 17:47:18,929 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▉                  | 921/1681 [00:30<00:23, 31.76it/s]2022-04-26 17:47:19,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▍                 | 945/1681 [00:30<00:23, 31.16it/s]2022-04-26 17:47:19,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:19,919 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▋                 | 951/1681 [00:31<00:23, 31.35it/s]2022-04-26 17:47:19,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:19,990 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:20,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:20,079 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▋                 | 955/1681 [00:31<00:24, 30.15it/s]2022-04-26 17:47:20,179 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:20,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▉                 | 963/1681 [00:31<00:21, 32.80it/s]2022-04-26 17:47:20,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████                 | 967/1681 [00:31<00:22, 31.64it/s]2022-04-26 17:47:20,552 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▍                | 984/1681 [00:32<00:22, 31.16it/s]2022-04-26 17:47:20,997 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:21,180 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▌                | 988/1681 [00:32<00:26, 26.53it/s]2022-04-26 17:47:21,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▋                | 993/1681 [00:32<00:23, 28.73it/s]2022-04-26 17:47:21,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 1012/1681 [00:33<00:25, 26.20it/s]2022-04-26 17:47:22,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:22,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 1019/1681 [00:33<00:19, 33.50it/s]2022-04-26 17:47:22,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:22,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▏             | 1086/1681 [00:35<00:19, 31.10it/s]2022-04-26 17:47:24,349 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 1090/1681 [00:35<00:19, 30.96it/s]2022-04-26 17:47:24,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 1108/1681 [00:36<00:18, 30.38it/s]2022-04-26 17:47:25,038 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:25,232 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 1124/1681 [00:36<00:16, 33.59it/s]2022-04-26 17:47:25,578 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▏            | 1128/1681 [00:36<00:16, 32.70it/s]2022-04-26 17:47:25,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▍            | 1140/1681 [00:37<00:17, 31.69it/s]2022-04-26 17:47:26,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▋            | 1148/1681 [00:37<00:16, 32.85it/s]2022-04-26 17:47:26,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▉            | 1163/1681 [00:37<00:17, 29.94it/s]2022-04-26 17:47:26,842 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████            | 1169/1681 [00:38<00:14, 35.44it/s]2022-04-26 17:47:27,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 1204/1681 [00:39<00:14, 32.69it/s]2022-04-26 17:47:28,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 1208/1681 [00:39<00:15, 31.27it/s]2022-04-26 17:47:28,259 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 1376/1681 [00:44<00:09, 33.06it/s]2022-04-26 17:47:33,556 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:33,565 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 1380/1681 [00:44<00:10, 29.86it/s]2022-04-26 17:47:33,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:33,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 1490/1681 [00:48<00:06, 30.35it/s]2022-04-26 17:47:37,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 1494/1681 [00:48<00:06, 27.04it/s]2022-04-26 17:47:37,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:37,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 1500/1681 [00:48<00:05, 30.52it/s]2022-04-26 17:47:37,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████    | 1510/1681 [00:49<00:05, 30.85it/s]2022-04-26 17:47:37,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:38,014 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 1537/1681 [00:49<00:04, 33.77it/s]2022-04-26 17:47:38,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 1541/1681 [00:50<00:05, 27.89it/s]2022-04-26 17:47:38,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 1551/1681 [00:50<00:04, 31.89it/s]2022-04-26 17:47:39,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████   | 1557/1681 [00:50<00:03, 33.36it/s]2022-04-26 17:47:39,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-04-26 17:47:39,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▏  | 1561/1681 [00:50<00:03, 30.70it/s]2022-04-26 17:47:39,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|███████████████████████████████████████| 1681/1681 [00:54<00:00, 30.93it/s]
2022-04-26 17:47:43,219 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

100%|██████████████████████████████████████| 1681/1681 [00:10<00:00, 163.42it/s]
In [17]:
#Tshirt: net aperture
Flux_best, Flux_error_best = phot_mid_best.get_tSeries() #The flux data and flux data errors
normalized_flux_tshirt_best = Flux_best['Flux 0']/Flux_best['Flux 0'][0] #normalized net aperture sum
std_tshirt_best = np.std(normalized_flux_tshirt_best[0:20]) #calculated standard deviation
relative_error_tshirt_best = (Flux_error_best['Error 0']/Flux_best['Flux 0'])

#MAD: 
deviation = normalized_flux_tshirt_best[0:seg01_len] - np.median(normalized_flux_tshirt_best[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Tshirt Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Tshirt Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_tshirt_best*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_tshirt_best)*10**6))

plt.errorbar(Flux_best['Time (JD)'],normalized_flux_tshirt_best,yerr=relative_error_tshirt_best,fmt='b.',markersize=4,elinewidth=1,ecolor='silver')
Tshirt Calculated Net Aperture Sum MAD (ppm): 171.6399795683743
Tshirt Calculated Net Aperture Sum std (ppm): 153.946892929186
Median Relative Errors Net Aperture Sum (ppm): 146.3337446713802
Out[17]:
<ErrorbarContainer object of 3 artists>

Fine Sweep¶

In [18]:
sweep_analysis_fine = analysis.aperture_size_sweep(phot_sweep,stepSize=1,srcRange=[50,60],backRange=[70,84],minBackground=2)
2022-04-26 17:48:07,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:528: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  yStamp_proposed = np.array(onePos[1] + np.array([-1,1]) * boxsize,dtype=np.int)

2022-04-26 17:48:07,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:529: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  xStamp_proposed = np.array(onePos[0] + np.array([-1,1]) * boxsize,dtype=np.int)

2022-04-26 17:48:07,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:528: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  yStamp_proposed = np.array(onePos[1] + np.array([-1,1]) * boxsize,dtype=np.int)

2022-04-26 17:48:07,607 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:529: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  xStamp_proposed = np.array(onePos[0] + np.array([-1,1]) * boxsize,dtype=np.int)

src: 50, back st: 70, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.63it/s]
2022-04-26 17:48:09,666 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:09,699 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.78it/s]
2022-04-26 17:48:11,193 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:11,226 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.99it/s]
2022-04-26 17:48:12,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:12,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 277.43it/s]
2022-04-26 17:48:14,282 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:14,314 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.96it/s]
2022-04-26 17:48:15,914 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:15,946 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.21it/s]
2022-04-26 17:48:17,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:17,504 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.18it/s]
2022-04-26 17:48:18,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:19,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.57it/s]
2022-04-26 17:48:20,599 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:20,639 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.28it/s]
2022-04-26 17:48:22,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:22,236 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.01it/s]
2022-04-26 17:48:23,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:23,778 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.60it/s]
2022-04-26 17:48:25,303 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:25,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 70, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.55it/s]
2022-04-26 17:48:26,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:26,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 71, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.51it/s]
2022-04-26 17:48:28,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:28,400 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 71, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.38it/s]
2022-04-26 17:48:29,930 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:29,970 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 71, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.80it/s]
2022-04-26 17:48:31,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:31,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 71, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.21it/s]
2022-04-26 17:48:33,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:33,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 71, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.10it/s]
2022-04-26 17:48:34,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:34,851 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 71, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.52it/s]
2022-04-26 17:48:36,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:36,423 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 71, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.64it/s]
2022-04-26 17:48:37,904 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:37,936 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 71, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.10it/s]
2022-04-26 17:48:39,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:39,467 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 71, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.72it/s]
2022-04-26 17:48:40,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:41,032 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 71, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.33it/s]
2022-04-26 17:48:42,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:42,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 71, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.76it/s]
2022-04-26 17:48:44,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:44,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 72, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.76it/s]
2022-04-26 17:48:45,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:45,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 72, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.43it/s]
2022-04-26 17:48:47,105 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:47,137 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 72, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.01it/s]
2022-04-26 17:48:48,632 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:48,675 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 72, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.54it/s]
2022-04-26 17:48:50,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:50,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 72, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.03it/s]
2022-04-26 17:48:51,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:51,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 72, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.07it/s]
2022-04-26 17:48:53,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:53,409 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 72, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.53it/s]
2022-04-26 17:48:54,884 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:54,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 72, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.93it/s]
2022-04-26 17:48:56,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:56,476 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 72, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.87it/s]
2022-04-26 17:48:58,013 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:58,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 72, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.57it/s]
2022-04-26 17:48:59,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:48:59,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 73, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.84it/s]
2022-04-26 17:49:01,226 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:01,275 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 73, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.09it/s]
2022-04-26 17:49:02,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:02,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 73, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.99it/s]
2022-04-26 17:49:04,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:04,425 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 73, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.26it/s]
2022-04-26 17:49:05,936 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:05,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 73, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.99it/s]
2022-04-26 17:49:07,505 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:07,559 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 73, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.56it/s]
2022-04-26 17:49:09,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:09,165 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 73, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.32it/s]
2022-04-26 17:49:10,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:10,708 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 73, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.35it/s]
2022-04-26 17:49:12,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:12,347 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 73, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.67it/s]
2022-04-26 17:49:13,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:13,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 74, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.55it/s]
2022-04-26 17:49:15,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:15,461 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 74, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.16it/s]
2022-04-26 17:49:16,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:16,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 74, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.90it/s]
2022-04-26 17:49:18,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:18,483 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 74, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.60it/s]
2022-04-26 17:49:20,021 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:20,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 74, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.75it/s]
2022-04-26 17:49:21,655 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:21,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 74, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.52it/s]
2022-04-26 17:49:23,278 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:23,314 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 74, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.61it/s]
2022-04-26 17:49:24,871 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:24,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 74, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.42it/s]
2022-04-26 17:49:26,503 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:26,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 75, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.75it/s]
2022-04-26 17:49:28,055 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:28,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 75, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.19it/s]
2022-04-26 17:49:29,602 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:29,633 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 75, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.69it/s]
2022-04-26 17:49:31,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:31,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 75, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 217.27it/s]
2022-04-26 17:49:33,198 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:33,227 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 75, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.43it/s]
2022-04-26 17:49:34,803 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:34,835 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 75, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.59it/s]
2022-04-26 17:49:36,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:36,383 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 75, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.51it/s]
2022-04-26 17:49:37,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:37,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 76, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.11it/s]
2022-04-26 17:49:39,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:39,385 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 76, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.42it/s]
2022-04-26 17:49:40,953 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:40,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 76, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.98it/s]
2022-04-26 17:49:42,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:42,583 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 76, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.36it/s]
2022-04-26 17:49:44,176 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:44,214 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 76, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.23it/s]
2022-04-26 17:49:45,778 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:45,809 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 76, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.90it/s]
2022-04-26 17:49:47,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:47,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 77, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.63it/s]
2022-04-26 17:49:48,852 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:48,888 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 77, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.62it/s]
2022-04-26 17:49:50,382 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:50,435 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 77, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.18it/s]
2022-04-26 17:49:51,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:52,000 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 77, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.61it/s]
2022-04-26 17:49:53,493 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:53,524 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 77, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.85it/s]
2022-04-26 17:49:55,087 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:55,119 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 78, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.59it/s]
2022-04-26 17:49:56,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:56,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 78, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.63it/s]
2022-04-26 17:49:58,221 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:58,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 78, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.33it/s]
2022-04-26 17:49:59,775 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:49:59,829 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 78, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.09it/s]
2022-04-26 17:50:01,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:01,338 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 79, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.94it/s]
2022-04-26 17:50:02,780 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:02,833 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 79, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.81it/s]
2022-04-26 17:50:04,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:04,354 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 79, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.75it/s]
2022-04-26 17:50:05,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:05,881 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.24it/s]
2022-04-26 17:50:07,372 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:07,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 80, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.89it/s]
2022-04-26 17:50:08,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:09,023 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 50, back st: 81, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.04it/s]
2022-04-26 17:50:10,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:10,584 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 70, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.65it/s]
2022-04-26 17:50:12,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:12,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 70, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.94it/s]
2022-04-26 17:50:13,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:13,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 70, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.99it/s]
2022-04-26 17:50:15,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:15,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 70, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.20it/s]
2022-04-26 17:50:16,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:16,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 70, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.95it/s]
2022-04-26 17:50:18,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:18,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 70, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.28it/s]
2022-04-26 17:50:19,925 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:19,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 70, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.38it/s]
2022-04-26 17:50:21,532 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:21,571 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 70, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.40it/s]
2022-04-26 17:50:23,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:23,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 70, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.67it/s]
2022-04-26 17:50:24,724 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:24,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 70, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.30it/s]
2022-04-26 17:50:26,256 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:26,287 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 70, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.13it/s]
2022-04-26 17:50:27,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:27,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 70, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.74it/s]
2022-04-26 17:50:29,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:29,404 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.02it/s]
2022-04-26 17:50:30,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:31,015 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.27it/s]
2022-04-26 17:50:32,531 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:32,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.75it/s]
2022-04-26 17:50:34,094 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:34,125 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.47it/s]
2022-04-26 17:50:35,669 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:35,701 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.88it/s]
2022-04-26 17:50:37,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:37,222 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.76it/s]
2022-04-26 17:50:38,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:38,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.84it/s]
2022-04-26 17:50:40,351 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:40,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.15it/s]
2022-04-26 17:50:41,955 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:41,986 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.58it/s]
2022-04-26 17:50:43,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:43,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.65it/s]
2022-04-26 17:50:44,989 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:45,042 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 71, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.09it/s]
2022-04-26 17:50:46,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:46,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 72, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.75it/s]
2022-04-26 17:50:48,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:48,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 72, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.31it/s]
2022-04-26 17:50:49,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:49,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 72, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 195.19it/s]
2022-04-26 17:50:51,709 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:51,763 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 72, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 198.31it/s]
2022-04-26 17:50:53,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:53,713 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 72, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.51it/s]
2022-04-26 17:50:55,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:55,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 72, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.69it/s]
2022-04-26 17:50:56,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:56,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 72, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.78it/s]
2022-04-26 17:50:58,424 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:50:58,455 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 72, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.61it/s]
2022-04-26 17:50:59,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:00,030 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 72, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 285.43it/s]
2022-04-26 17:51:01,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:01,506 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 72, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.28it/s]
2022-04-26 17:51:03,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:03,081 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 73, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.63it/s]
2022-04-26 17:51:04,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:04,612 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 73, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.08it/s]
2022-04-26 17:51:06,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:06,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 73, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.24it/s]
2022-04-26 17:51:07,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:07,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 73, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.69it/s]
2022-04-26 17:51:09,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:09,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 73, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.15it/s]
2022-04-26 17:51:10,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:10,949 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 73, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.52it/s]
2022-04-26 17:51:12,426 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:12,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 73, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.87it/s]
2022-04-26 17:51:14,015 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:14,053 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 73, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.07it/s]
2022-04-26 17:51:15,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:15,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 73, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.37it/s]
2022-04-26 17:51:17,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:17,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 74, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.93it/s]
2022-04-26 17:51:18,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:18,783 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 74, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.93it/s]
2022-04-26 17:51:20,271 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:20,311 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 74, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.10it/s]
2022-04-26 17:51:21,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:21,876 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 74, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.01it/s]
2022-04-26 17:51:23,402 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:23,436 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 74, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.67it/s]
2022-04-26 17:51:24,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:24,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 74, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.42it/s]
2022-04-26 17:51:26,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:26,496 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 74, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 277.68it/s]
2022-04-26 17:51:27,960 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:27,993 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 74, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.95it/s]
2022-04-26 17:51:29,606 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:29,637 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 75, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.44it/s]
2022-04-26 17:51:31,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:31,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 75, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.63it/s]
2022-04-26 17:51:32,751 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:32,782 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 75, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.15it/s]
2022-04-26 17:51:34,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:34,359 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 75, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.34it/s]
2022-04-26 17:51:35,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:35,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 75, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.92it/s]
2022-04-26 17:51:37,504 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:37,535 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 75, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.23it/s]
2022-04-26 17:51:39,109 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:39,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 75, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.33it/s]
2022-04-26 17:51:40,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:40,711 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 76, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.62it/s]
2022-04-26 17:51:42,236 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:42,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 76, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.80it/s]
2022-04-26 17:51:43,850 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:43,883 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 76, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.80it/s]
2022-04-26 17:51:45,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:45,434 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 76, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.48it/s]
2022-04-26 17:51:47,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:47,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 76, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.10it/s]
2022-04-26 17:51:48,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:48,621 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 76, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.63it/s]
2022-04-26 17:51:50,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:50,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 77, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.14it/s]
2022-04-26 17:51:51,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:51,799 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 77, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.66it/s]
2022-04-26 17:51:53,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:53,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 77, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.99it/s]
2022-04-26 17:51:54,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:54,972 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 77, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.87it/s]
2022-04-26 17:51:56,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:56,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 77, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 283.92it/s]
2022-04-26 17:51:58,008 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:58,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 78, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.29it/s]
2022-04-26 17:51:59,577 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:51:59,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 78, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.35it/s]
2022-04-26 17:52:01,126 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:01,180 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 78, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.79it/s]
2022-04-26 17:52:02,728 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:02,761 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 78, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.92it/s]
2022-04-26 17:52:04,355 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:04,386 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 79, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.17it/s]
2022-04-26 17:52:05,972 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:06,004 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 79, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.02it/s]
2022-04-26 17:52:07,536 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:07,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 79, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.49it/s]
2022-04-26 17:52:09,150 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:09,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 80, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 192.65it/s]
2022-04-26 17:52:11,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:11,166 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 80, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 236.73it/s]
2022-04-26 17:52:12,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:12,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 51, back st: 81, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 185.49it/s]
2022-04-26 17:52:14,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:14,978 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 70, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.99it/s]
2022-04-26 17:52:16,522 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:16,573 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 70, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.05it/s]
2022-04-26 17:52:18,151 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:18,183 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 70, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.89it/s]
2022-04-26 17:52:19,758 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:19,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 70, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.78it/s]
2022-04-26 17:52:21,323 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:21,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 70, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.56it/s]
2022-04-26 17:52:22,892 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:22,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 70, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.02it/s]
2022-04-26 17:52:24,390 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:24,428 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 70, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.08it/s]
2022-04-26 17:52:25,993 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:26,025 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 70, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.62it/s]
2022-04-26 17:52:27,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:27,592 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 70, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.97it/s]
2022-04-26 17:52:29,083 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:29,136 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 70, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.95it/s]
2022-04-26 17:52:30,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:30,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 70, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.13it/s]
2022-04-26 17:52:32,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:32,264 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 70, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.14it/s]
2022-04-26 17:52:33,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:33,823 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 71, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.95it/s]
2022-04-26 17:52:35,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:35,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 71, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.10it/s]
2022-04-26 17:52:36,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:36,933 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 71, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.18it/s]
2022-04-26 17:52:38,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:38,452 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 71, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.02it/s]
2022-04-26 17:52:39,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:40,007 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 71, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.92it/s]
2022-04-26 17:52:41,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:41,580 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 71, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.29it/s]
2022-04-26 17:52:43,124 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:43,155 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 71, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.96it/s]
2022-04-26 17:52:44,673 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:44,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 71, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.28it/s]
2022-04-26 17:52:46,258 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:46,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 71, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.61it/s]
2022-04-26 17:52:47,807 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:47,838 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 71, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.25it/s]
2022-04-26 17:52:49,416 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:49,447 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 71, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.62it/s]
2022-04-26 17:52:50,986 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:51,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.92it/s]
2022-04-26 17:52:52,513 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:52,544 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.35it/s]
2022-04-26 17:52:54,100 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:54,140 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.56it/s]
2022-04-26 17:52:55,702 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:55,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.11it/s]
2022-04-26 17:52:57,296 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:57,328 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.75it/s]
2022-04-26 17:52:58,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:52:58,914 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 277.86it/s]
2022-04-26 17:53:00,387 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:00,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.13it/s]
2022-04-26 17:53:01,933 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:01,987 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.99it/s]
2022-04-26 17:53:03,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:03,554 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.29it/s]
2022-04-26 17:53:05,139 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:05,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 72, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.44it/s]
2022-04-26 17:53:06,790 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:06,822 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 73, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.51it/s]
2022-04-26 17:53:08,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:08,375 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 73, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.65it/s]
2022-04-26 17:53:09,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:09,958 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 73, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.52it/s]
2022-04-26 17:53:11,451 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:11,487 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 73, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.96it/s]
2022-04-26 17:53:13,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:13,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 73, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.39it/s]
2022-04-26 17:53:14,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:14,635 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 73, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 215.21it/s]
2022-04-26 17:53:16,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:16,667 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 73, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.78it/s]
2022-04-26 17:53:18,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:18,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 73, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.66it/s]
2022-04-26 17:53:19,791 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:19,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 73, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.64it/s]
2022-04-26 17:53:21,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:21,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 74, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.23it/s]
2022-04-26 17:53:22,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:22,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 74, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.12it/s]
2022-04-26 17:53:24,511 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:24,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 74, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.46it/s]
2022-04-26 17:53:26,019 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:26,064 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 74, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.27it/s]
2022-04-26 17:53:27,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:27,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 74, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.00it/s]
2022-04-26 17:53:29,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:29,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 74, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.82it/s]
2022-04-26 17:53:30,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:30,686 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 74, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 279.08it/s]
2022-04-26 17:53:32,147 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:32,178 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 74, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.74it/s]
2022-04-26 17:53:33,663 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:33,717 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 75, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.13it/s]
2022-04-26 17:53:35,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:35,304 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 75, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.43it/s]
2022-04-26 17:53:36,843 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:36,875 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 75, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.30it/s]
2022-04-26 17:53:38,456 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:38,486 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 75, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.38it/s]
2022-04-26 17:53:40,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:40,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 75, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.36it/s]
2022-04-26 17:53:41,592 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:41,623 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 75, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.44it/s]
2022-04-26 17:53:43,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:43,211 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 75, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.10it/s]
2022-04-26 17:53:44,777 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:44,808 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 76, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.14it/s]
2022-04-26 17:53:46,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:46,374 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 76, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.47it/s]
2022-04-26 17:53:47,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:47,976 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 76, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.85it/s]
2022-04-26 17:53:49,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:49,574 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 76, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.18it/s]
2022-04-26 17:53:51,080 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:51,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 76, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.46it/s]
2022-04-26 17:53:52,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:52,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 76, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.35it/s]
2022-04-26 17:53:54,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:54,273 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 77, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.62it/s]
2022-04-26 17:53:55,779 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:55,811 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 77, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.59it/s]
2022-04-26 17:53:57,381 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:57,413 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 77, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.33it/s]
2022-04-26 17:53:58,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:53:58,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 77, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.96it/s]
2022-04-26 17:54:00,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:00,491 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 77, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.28it/s]
2022-04-26 17:54:02,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:02,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 78, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.53it/s]
2022-04-26 17:54:03,706 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:03,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 78, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.50it/s]
2022-04-26 17:54:05,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:05,300 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 78, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.01it/s]
2022-04-26 17:54:06,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:06,855 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 78, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.81it/s]
2022-04-26 17:54:08,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:08,398 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 79, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.67it/s]
2022-04-26 17:54:09,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:09,940 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 79, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.32it/s]
2022-04-26 17:54:11,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:11,468 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 79, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.77it/s]
2022-04-26 17:54:12,975 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:13,008 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 80, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.47it/s]
2022-04-26 17:54:14,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:14,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 80, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.65it/s]
2022-04-26 17:54:16,074 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:16,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 52, back st: 81, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 197.22it/s]
2022-04-26 17:54:18,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:18,279 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 70, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.52it/s]
2022-04-26 17:54:19,816 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:19,847 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 70, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.59it/s]
2022-04-26 17:54:21,435 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:21,471 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 70, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.03it/s]
2022-04-26 17:54:23,054 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:23,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 70, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.95it/s]
2022-04-26 17:54:24,612 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:24,643 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 70, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.70it/s]
2022-04-26 17:54:26,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:26,188 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 70, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.30it/s]
2022-04-26 17:54:27,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:27,715 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 70, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.77it/s]
2022-04-26 17:54:29,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:29,256 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 70, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.19it/s]
2022-04-26 17:54:30,818 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:30,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 70, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.60it/s]
2022-04-26 17:54:32,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:32,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 70, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.28it/s]
2022-04-26 17:54:33,845 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:33,899 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 70, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.10it/s]
2022-04-26 17:54:35,444 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:35,498 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 70, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.61it/s]
2022-04-26 17:54:37,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:37,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 71, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.24it/s]
2022-04-26 17:54:38,575 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:38,620 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 71, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.19it/s]
2022-04-26 17:54:40,175 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:40,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 71, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.79it/s]
2022-04-26 17:54:41,746 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:41,777 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 71, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.52it/s]
2022-04-26 17:54:43,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:43,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 71, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.42it/s]
2022-04-26 17:54:44,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:44,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 71, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.40it/s]
2022-04-26 17:54:46,316 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:46,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 71, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.33it/s]
2022-04-26 17:54:47,918 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:47,950 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 71, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.96it/s]
2022-04-26 17:54:49,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:49,505 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 71, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.91it/s]
2022-04-26 17:54:51,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:51,057 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 71, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.48it/s]
2022-04-26 17:54:52,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:52,614 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 71, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.70it/s]
2022-04-26 17:54:54,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:54,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 72, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.33it/s]
2022-04-26 17:54:55,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:55,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 72, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.77it/s]
2022-04-26 17:54:57,246 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:57,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 72, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.04it/s]
2022-04-26 17:54:58,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:54:58,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 72, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.41it/s]
2022-04-26 17:55:00,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:00,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 72, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.59it/s]
2022-04-26 17:55:01,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:01,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 72, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.50it/s]
2022-04-26 17:55:03,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:03,542 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 72, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.57it/s]
2022-04-26 17:55:05,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:05,131 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 72, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.15it/s]
2022-04-26 17:55:06,626 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:06,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 72, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.31it/s]
2022-04-26 17:55:08,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:08,315 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 72, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.32it/s]
2022-04-26 17:55:09,901 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:09,934 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.92it/s]
2022-04-26 17:55:11,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:11,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.29it/s]
2022-04-26 17:55:13,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:13,089 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.26it/s]
2022-04-26 17:55:14,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:14,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.88it/s]
2022-04-26 17:55:16,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:16,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.01it/s]
2022-04-26 17:55:17,656 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:17,688 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.76it/s]
2022-04-26 17:55:19,146 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:19,182 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 277.34it/s]
2022-04-26 17:55:20,614 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:20,658 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.08it/s]
2022-04-26 17:55:22,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:22,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 73, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 215.67it/s]
2022-04-26 17:55:24,086 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:24,118 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 74, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.60it/s]
2022-04-26 17:55:25,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:25,712 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 74, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.67it/s]
2022-04-26 17:55:27,251 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:27,282 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 74, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.51it/s]
2022-04-26 17:55:28,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:28,823 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 74, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.28it/s]
2022-04-26 17:55:30,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:30,445 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 74, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.91it/s]
2022-04-26 17:55:32,009 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:32,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 74, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.44it/s]
2022-04-26 17:55:33,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:33,608 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 74, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.80it/s]
2022-04-26 17:55:35,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:35,143 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 74, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.58it/s]
2022-04-26 17:55:36,650 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:36,698 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 75, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.29it/s]
2022-04-26 17:55:38,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:38,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 75, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.55it/s]
2022-04-26 17:55:39,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:39,779 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 75, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.15it/s]
2022-04-26 17:55:41,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:41,291 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 75, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.06it/s]
2022-04-26 17:55:42,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:42,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 75, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.50it/s]
2022-04-26 17:55:44,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:44,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 75, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.51it/s]
2022-04-26 17:55:45,931 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:45,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 75, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.63it/s]
2022-04-26 17:55:47,484 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:47,513 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 76, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.03it/s]
2022-04-26 17:55:48,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:49,043 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 76, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.53it/s]
2022-04-26 17:55:50,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:50,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 76, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.05it/s]
2022-04-26 17:55:52,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:52,274 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 76, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.30it/s]
2022-04-26 17:55:53,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:53,841 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 76, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.77it/s]
2022-04-26 17:55:55,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:55,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 76, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.31it/s]
2022-04-26 17:55:56,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:56,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 77, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.40it/s]
2022-04-26 17:55:58,423 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:55:58,477 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 77, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.99it/s]
2022-04-26 17:56:00,046 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:00,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 77, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.65it/s]
2022-04-26 17:56:01,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:01,722 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 77, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.18it/s]
2022-04-26 17:56:03,269 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:03,301 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 77, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.99it/s]
2022-04-26 17:56:04,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:04,846 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 78, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.76it/s]
2022-04-26 17:56:06,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:06,454 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 78, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.28it/s]
2022-04-26 17:56:07,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:08,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 78, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 242.19it/s]
2022-04-26 17:56:09,659 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:09,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 78, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.66it/s]
2022-04-26 17:56:11,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:11,281 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 79, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.19it/s]
2022-04-26 17:56:12,789 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:12,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 79, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.38it/s]
2022-04-26 17:56:14,342 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:14,373 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 79, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.43it/s]
2022-04-26 17:56:15,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:15,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 80, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.78it/s]
2022-04-26 17:56:17,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:17,615 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 80, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.62it/s]
2022-04-26 17:56:19,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:19,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 53, back st: 81, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.88it/s]
2022-04-26 17:56:20,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:20,711 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 70, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.32it/s]
2022-04-26 17:56:22,192 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:22,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 70, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.36it/s]
2022-04-26 17:56:23,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:23,877 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 70, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 204.12it/s]
2022-04-26 17:56:25,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:25,980 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 70, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.34it/s]
2022-04-26 17:56:27,560 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:27,593 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 70, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.14it/s]
2022-04-26 17:56:29,071 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:29,103 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 70, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.77it/s]
2022-04-26 17:56:30,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:30,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 70, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.80it/s]
2022-04-26 17:56:32,268 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:32,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 70, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.80it/s]
2022-04-26 17:56:33,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:33,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 70, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.81it/s]
2022-04-26 17:56:35,476 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:35,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 70, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.81it/s]
2022-04-26 17:56:37,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:37,075 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 70, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.59it/s]
2022-04-26 17:56:38,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:38,704 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 70, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.02it/s]
2022-04-26 17:56:40,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:40,367 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 71, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.72it/s]
2022-04-26 17:56:41,857 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:41,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 71, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.42it/s]
2022-04-26 17:56:43,446 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:43,499 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 71, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.35it/s]
2022-04-26 17:56:45,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:45,066 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 71, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.23it/s]
2022-04-26 17:56:46,597 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:46,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 71, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.49it/s]
2022-04-26 17:56:48,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:48,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 71, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 277.89it/s]
2022-04-26 17:56:49,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:49,652 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 71, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.59it/s]
2022-04-26 17:56:51,172 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:51,203 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 71, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.98it/s]
2022-04-26 17:56:52,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:52,796 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 71, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.88it/s]
2022-04-26 17:56:54,310 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:54,358 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 71, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.37it/s]
2022-04-26 17:56:55,908 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:55,948 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 71, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.53it/s]
2022-04-26 17:56:57,452 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:57,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 72, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.93it/s]
2022-04-26 17:56:59,072 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:56:59,100 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 72, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.17it/s]
2022-04-26 17:57:00,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:00,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 72, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.62it/s]
2022-04-26 17:57:02,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:02,187 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 72, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.56it/s]
2022-04-26 17:57:03,698 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:03,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 72, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.72it/s]
2022-04-26 17:57:05,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:05,283 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 72, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.23it/s]
2022-04-26 17:57:06,893 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:06,930 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 72, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.84it/s]
2022-04-26 17:57:08,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:08,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 72, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.41it/s]
2022-04-26 17:57:09,977 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:10,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 72, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.06it/s]
2022-04-26 17:57:11,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:11,577 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 72, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.22it/s]
2022-04-26 17:57:13,141 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:13,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 73, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.76it/s]
2022-04-26 17:57:14,699 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:14,731 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 73, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.43it/s]
2022-04-26 17:57:16,309 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:16,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 73, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.01it/s]
2022-04-26 17:57:17,922 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:17,952 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 73, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.87it/s]
2022-04-26 17:57:19,483 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:19,517 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 73, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.97it/s]
2022-04-26 17:57:21,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:21,152 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 73, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.59it/s]
2022-04-26 17:57:22,677 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:22,708 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 73, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.55it/s]
2022-04-26 17:57:24,222 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:24,253 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 73, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 279.82it/s]
2022-04-26 17:57:25,715 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:25,745 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 73, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.01it/s]
2022-04-26 17:57:27,295 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:27,327 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.28it/s]
2022-04-26 17:57:28,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:28,890 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.93it/s]
2022-04-26 17:57:30,393 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:30,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.43it/s]
2022-04-26 17:57:32,003 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:32,035 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.48it/s]
2022-04-26 17:57:33,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:33,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.28it/s]
2022-04-26 17:57:35,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:35,221 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.74it/s]
2022-04-26 17:57:36,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:36,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.16it/s]
2022-04-26 17:57:38,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:38,335 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 74, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.50it/s]
2022-04-26 17:57:39,879 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:39,909 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 75, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.69it/s]
2022-04-26 17:57:41,421 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:41,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 75, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 204.61it/s]
2022-04-26 17:57:43,322 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:43,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 75, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 193.07it/s]
2022-04-26 17:57:45,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:45,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 75, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.79it/s]
2022-04-26 17:57:46,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:46,972 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 75, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.30it/s]
2022-04-26 17:57:48,551 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:48,582 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 75, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.44it/s]
2022-04-26 17:57:50,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:50,177 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 75, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.75it/s]
2022-04-26 17:57:51,665 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:51,694 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 76, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.43it/s]
2022-04-26 17:57:53,177 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:53,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 76, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 280.96it/s]
2022-04-26 17:57:54,654 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:54,685 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 76, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.24it/s]
2022-04-26 17:57:56,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:56,276 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 76, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.82it/s]
2022-04-26 17:57:57,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:57,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 76, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.84it/s]
2022-04-26 17:57:59,428 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:57:59,458 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 76, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.43it/s]
2022-04-26 17:58:01,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:01,079 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 77, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.23it/s]
2022-04-26 17:58:02,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:02,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 77, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.45it/s]
2022-04-26 17:58:04,257 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:04,296 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 77, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.57it/s]
2022-04-26 17:58:05,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:05,898 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 77, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.70it/s]
2022-04-26 17:58:07,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:07,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 77, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.65it/s]
2022-04-26 17:58:09,056 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:09,087 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 78, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.62it/s]
2022-04-26 17:58:10,637 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:10,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 78, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.63it/s]
2022-04-26 17:58:12,223 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:12,254 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 78, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.73it/s]
2022-04-26 17:58:13,748 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:13,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 78, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.98it/s]
2022-04-26 17:58:15,383 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:15,422 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 79, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.80it/s]
2022-04-26 17:58:16,959 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:16,991 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 79, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 241.28it/s]
2022-04-26 17:58:18,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:18,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 79, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.81it/s]
2022-04-26 17:58:20,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:20,286 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 80, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.74it/s]
2022-04-26 17:58:21,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:21,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 80, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.24it/s]
2022-04-26 17:58:23,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:23,403 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 54, back st: 81, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.22it/s]
2022-04-26 17:58:24,969 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:25,000 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 70, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.78it/s]
2022-04-26 17:58:26,555 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:26,587 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 70, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.06it/s]
2022-04-26 17:58:28,110 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:28,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 70, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.85it/s]
2022-04-26 17:58:29,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:29,725 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 70, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.44it/s]
2022-04-26 17:58:31,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:31,277 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 70, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.85it/s]
2022-04-26 17:58:32,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:32,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 70, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.69it/s]
2022-04-26 17:58:34,347 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:34,379 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 70, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.76it/s]
2022-04-26 17:58:35,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:35,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 70, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.02it/s]
2022-04-26 17:58:37,447 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:37,479 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 70, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.55it/s]
2022-04-26 17:58:39,018 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:39,056 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 70, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.80it/s]
2022-04-26 17:58:40,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:40,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 70, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.95it/s]
2022-04-26 17:58:42,217 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:42,249 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 70, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.40it/s]
2022-04-26 17:58:43,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:43,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 71, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.64it/s]
2022-04-26 17:58:45,225 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:45,269 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 71, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.53it/s]
2022-04-26 17:58:46,836 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:46,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 71, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.47it/s]
2022-04-26 17:58:48,417 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:48,448 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 71, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.72it/s]
2022-04-26 17:58:50,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:50,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 71, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.13it/s]
2022-04-26 17:58:51,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:51,600 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 71, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.86it/s]
2022-04-26 17:58:53,107 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:53,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 71, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.60it/s]
2022-04-26 17:58:54,648 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:54,679 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 71, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.89it/s]
2022-04-26 17:58:56,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:56,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 71, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.18it/s]
2022-04-26 17:58:57,839 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:57,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 71, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.31it/s]
2022-04-26 17:58:59,386 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:58:59,417 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 71, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 215.29it/s]
2022-04-26 17:59:01,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:01,263 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 72, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 184.45it/s]
2022-04-26 17:59:03,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:03,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 72, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.91it/s]
2022-04-26 17:59:04,853 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:04,882 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 72, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.74it/s]
2022-04-26 17:59:06,389 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:06,444 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 72, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.00it/s]
2022-04-26 17:59:07,992 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:08,024 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 72, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.94it/s]
2022-04-26 17:59:09,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:09,566 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 72, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.13it/s]
2022-04-26 17:59:11,137 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:11,175 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 72, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.07it/s]
2022-04-26 17:59:12,769 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:12,801 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 72, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.65it/s]
2022-04-26 17:59:14,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:14,406 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 72, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.22it/s]
2022-04-26 17:59:15,898 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:15,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 72, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.19it/s]
2022-04-26 17:59:17,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:17,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 73, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.89it/s]
2022-04-26 17:59:19,033 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:19,067 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 73, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.54it/s]
2022-04-26 17:59:20,617 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:20,649 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 73, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.27it/s]
2022-04-26 17:59:22,142 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:22,172 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 73, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.00it/s]
2022-04-26 17:59:23,658 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:23,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 73, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.43it/s]
2022-04-26 17:59:25,202 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:25,234 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 73, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.85it/s]
2022-04-26 17:59:26,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:26,806 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 73, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.43it/s]
2022-04-26 17:59:28,336 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:28,368 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 73, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.45it/s]
2022-04-26 17:59:29,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:29,895 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 73, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.44it/s]
2022-04-26 17:59:31,411 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:31,453 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 74, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.59it/s]
2022-04-26 17:59:32,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:33,026 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 74, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.17it/s]
2022-04-26 17:59:34,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:34,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 74, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.17it/s]
2022-04-26 17:59:36,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:36,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 74, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.77it/s]
2022-04-26 17:59:37,670 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:37,703 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 74, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.65it/s]
2022-04-26 17:59:39,216 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:39,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 74, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.90it/s]
2022-04-26 17:59:40,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:40,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 74, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 282.16it/s]
2022-04-26 17:59:42,317 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:42,348 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 74, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.30it/s]
2022-04-26 17:59:43,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:43,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.99it/s]
2022-04-26 17:59:45,419 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:45,457 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.14it/s]
2022-04-26 17:59:47,030 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:47,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.34it/s]
2022-04-26 17:59:48,580 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:48,618 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.29it/s]
2022-04-26 17:59:50,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:50,195 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 278.22it/s]
2022-04-26 17:59:51,672 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:51,705 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.33it/s]
2022-04-26 17:59:53,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:53,334 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 75, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.65it/s]
2022-04-26 17:59:54,923 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:54,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 76, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.15it/s]
2022-04-26 17:59:56,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:56,482 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 76, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.85it/s]
2022-04-26 17:59:57,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:58,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 76, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.33it/s]
2022-04-26 17:59:59,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 17:59:59,570 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 76, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.03it/s]
2022-04-26 18:00:01,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:01,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 76, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.94it/s]
2022-04-26 18:00:02,703 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:02,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 76, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 198.53it/s]
2022-04-26 18:00:04,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:04,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 77, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.86it/s]
2022-04-26 18:00:06,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:06,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 77, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 280.81it/s]
2022-04-26 18:00:07,890 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:07,922 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 77, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.28it/s]
2022-04-26 18:00:09,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:09,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 77, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.38it/s]
2022-04-26 18:00:11,082 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:11,113 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 77, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.13it/s]
2022-04-26 18:00:12,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:12,665 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 78, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.61it/s]
2022-04-26 18:00:14,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:14,186 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 78, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.67it/s]
2022-04-26 18:00:15,763 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:15,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 78, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.52it/s]
2022-04-26 18:00:17,362 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:17,394 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 78, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.56it/s]
2022-04-26 18:00:18,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:18,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 79, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.41it/s]
2022-04-26 18:00:20,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:20,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 79, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.57it/s]
2022-04-26 18:00:22,171 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:22,205 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 79, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.81it/s]
2022-04-26 18:00:23,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:23,774 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 80, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.31it/s]
2022-04-26 18:00:25,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:25,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 80, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.40it/s]
2022-04-26 18:00:26,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:26,912 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 55, back st: 81, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.09it/s]
2022-04-26 18:00:28,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:28,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 70, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.95it/s]
2022-04-26 18:00:30,004 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:30,036 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 70, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.88it/s]
2022-04-26 18:00:31,562 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:31,610 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 70, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.23it/s]
2022-04-26 18:00:33,092 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:33,122 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 70, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.59it/s]
2022-04-26 18:00:34,628 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:34,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 70, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.79it/s]
2022-04-26 18:00:36,215 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:36,247 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 70, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.95it/s]
2022-04-26 18:00:37,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:37,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 70, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.44it/s]
2022-04-26 18:00:39,313 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:39,356 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 70, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.12it/s]
2022-04-26 18:00:40,851 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:40,896 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 70, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.27it/s]
2022-04-26 18:00:42,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:42,429 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 70, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.18it/s]
2022-04-26 18:00:43,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:43,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 70, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.65it/s]
2022-04-26 18:00:45,535 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:45,590 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 70, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.70it/s]
2022-04-26 18:00:47,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:47,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 71, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.64it/s]
2022-04-26 18:00:48,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:48,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 71, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.15it/s]
2022-04-26 18:00:50,367 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:50,399 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 71, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.06it/s]
2022-04-26 18:00:51,950 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:51,981 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 71, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.74it/s]
2022-04-26 18:00:53,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:53,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 71, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.23it/s]
2022-04-26 18:00:54,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:55,039 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 71, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.56it/s]
2022-04-26 18:00:56,613 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:56,645 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 71, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.74it/s]
2022-04-26 18:00:58,173 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:58,204 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 71, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.71it/s]
2022-04-26 18:00:59,726 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:00:59,780 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 71, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.78it/s]
2022-04-26 18:01:01,311 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:01,343 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 71, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.13it/s]
2022-04-26 18:01:02,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:02,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 71, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.11it/s]
2022-04-26 18:01:04,425 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:04,456 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 72, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 204.95it/s]
2022-04-26 18:01:06,566 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:06,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 72, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.46it/s]
2022-04-26 18:01:08,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:08,151 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 72, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.68it/s]
2022-04-26 18:01:09,701 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:09,733 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 72, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.57it/s]
2022-04-26 18:01:11,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:11,268 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 72, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.30it/s]
2022-04-26 18:01:12,788 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:12,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 72, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.67it/s]
2022-04-26 18:01:14,431 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:14,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 72, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.47it/s]
2022-04-26 18:01:16,020 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:16,052 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 72, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.55it/s]
2022-04-26 18:01:17,615 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:17,646 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 72, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.14it/s]
2022-04-26 18:01:19,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:19,243 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 72, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.99it/s]
2022-04-26 18:01:20,859 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:20,889 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 73, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.18it/s]
2022-04-26 18:01:22,469 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:22,501 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 73, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.53it/s]
2022-04-26 18:01:24,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:24,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 73, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.45it/s]
2022-04-26 18:01:25,616 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:25,647 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 73, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.77it/s]
2022-04-26 18:01:27,165 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:27,207 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 73, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.06it/s]
2022-04-26 18:01:28,786 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:28,840 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 73, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.29it/s]
2022-04-26 18:01:30,356 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:30,410 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 73, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.69it/s]
2022-04-26 18:01:31,944 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:31,975 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 73, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.93it/s]
2022-04-26 18:01:33,510 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:33,543 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 73, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.40it/s]
2022-04-26 18:01:35,108 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:35,158 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 74, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.86it/s]
2022-04-26 18:01:36,609 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:36,663 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 74, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.46it/s]
2022-04-26 18:01:38,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:38,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 74, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.22it/s]
2022-04-26 18:01:39,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:39,886 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 74, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.21it/s]
2022-04-26 18:01:41,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:41,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 74, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.72it/s]
2022-04-26 18:01:43,010 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:43,062 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 74, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.02it/s]
2022-04-26 18:01:44,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:44,626 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 74, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.01it/s]
2022-04-26 18:01:46,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:46,181 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 74, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.17it/s]
2022-04-26 18:01:47,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:47,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 75, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.23it/s]
2022-04-26 18:01:49,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:49,278 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 75, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.26it/s]
2022-04-26 18:01:50,812 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:50,867 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 75, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.28it/s]
2022-04-26 18:01:52,345 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:52,397 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 75, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.52it/s]
2022-04-26 18:01:53,964 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:53,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 75, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 244.96it/s]
2022-04-26 18:01:55,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:55,655 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 75, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.16it/s]
2022-04-26 18:01:57,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:57,242 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 75, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.43it/s]
2022-04-26 18:01:58,773 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:01:58,804 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.31it/s]
2022-04-26 18:02:00,326 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:00,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.34it/s]
2022-04-26 18:02:01,940 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:01,972 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.84it/s]
2022-04-26 18:02:03,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:03,586 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.17it/s]
2022-04-26 18:02:05,099 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:05,130 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.74it/s]
2022-04-26 18:02:06,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:06,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 76, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.74it/s]
2022-04-26 18:02:08,224 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:08,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 77, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.40it/s]
2022-04-26 18:02:09,764 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:09,795 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 77, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 279.55it/s]
2022-04-26 18:02:11,267 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:11,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 77, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.74it/s]
2022-04-26 18:02:12,837 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:12,868 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 77, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.07it/s]
2022-04-26 18:02:14,395 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:14,427 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 77, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 286.81it/s]
2022-04-26 18:02:15,867 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:15,899 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 78, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.68it/s]
2022-04-26 18:02:17,461 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:17,492 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 78, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.34it/s]
2022-04-26 18:02:19,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:19,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 78, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.89it/s]
2022-04-26 18:02:20,678 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:20,710 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 78, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.31it/s]
2022-04-26 18:02:22,273 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:22,304 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 79, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.22it/s]
2022-04-26 18:02:23,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:23,903 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 79, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 197.27it/s]
2022-04-26 18:02:25,868 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:25,906 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 79, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 188.82it/s]
2022-04-26 18:02:27,952 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:27,983 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 80, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.82it/s]
2022-04-26 18:02:29,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:29,523 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 80, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.05it/s]
2022-04-26 18:02:31,114 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:31,145 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 56, back st: 81, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.47it/s]
2022-04-26 18:02:32,727 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:32,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 70, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.35it/s]
2022-04-26 18:02:34,238 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:34,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 70, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.79it/s]
2022-04-26 18:02:35,869 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:35,902 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 70, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.92it/s]
2022-04-26 18:02:37,443 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:37,475 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 70, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.87it/s]
2022-04-26 18:02:39,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:39,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 70, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.36it/s]
2022-04-26 18:02:40,645 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:40,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 70, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.48it/s]
2022-04-26 18:02:42,249 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:42,280 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 70, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.74it/s]
2022-04-26 18:02:43,794 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:43,823 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 70, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.74it/s]
2022-04-26 18:02:45,359 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:45,396 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 70, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.80it/s]
2022-04-26 18:02:46,916 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:46,955 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 70, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.55it/s]
2022-04-26 18:02:48,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:48,530 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 70, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.55it/s]
2022-04-26 18:02:50,091 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:50,123 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 70, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.56it/s]
2022-04-26 18:02:51,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:51,739 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 71, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.14it/s]
2022-04-26 18:02:53,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:53,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 71, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.53it/s]
2022-04-26 18:02:54,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:54,923 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 71, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.54it/s]
2022-04-26 18:02:56,471 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:56,503 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 71, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.30it/s]
2022-04-26 18:02:58,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:58,093 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 71, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.64it/s]
2022-04-26 18:02:59,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:02:59,606 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 71, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.70it/s]
2022-04-26 18:03:01,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:01,134 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 71, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 245.49it/s]
2022-04-26 18:03:02,717 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:02,771 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 71, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.54it/s]
2022-04-26 18:03:04,354 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:04,387 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 71, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.00it/s]
2022-04-26 18:03:05,927 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:05,960 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 71, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.84it/s]
2022-04-26 18:03:07,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:07,497 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 71, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.96it/s]
2022-04-26 18:03:08,999 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:09,037 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 72, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.36it/s]
2022-04-26 18:03:10,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:10,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 72, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.88it/s]
2022-04-26 18:03:12,136 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:12,168 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 72, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.65it/s]
2022-04-26 18:03:13,684 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:13,716 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 72, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.81it/s]
2022-04-26 18:03:15,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:15,289 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 72, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.57it/s]
2022-04-26 18:03:16,792 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:16,837 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 72, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.96it/s]
2022-04-26 18:03:18,377 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:18,408 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 72, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.99it/s]
2022-04-26 18:03:19,946 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:19,979 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 72, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.46it/s]
2022-04-26 18:03:21,525 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:21,556 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 72, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.49it/s]
2022-04-26 18:03:23,041 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:23,077 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 72, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.31it/s]
2022-04-26 18:03:24,596 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:24,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 73, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.86it/s]
2022-04-26 18:03:26,138 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:26,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 73, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.35it/s]
2022-04-26 18:03:27,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:27,754 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 73, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 192.51it/s]
2022-04-26 18:03:29,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:29,938 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 73, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.60it/s]
2022-04-26 18:03:31,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:31,519 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 73, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.98it/s]
2022-04-26 18:03:33,059 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:33,090 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 73, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.36it/s]
2022-04-26 18:03:34,603 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:34,634 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 73, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.45it/s]
2022-04-26 18:03:36,197 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:36,228 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 73, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.65it/s]
2022-04-26 18:03:37,813 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:37,845 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 73, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.10it/s]
2022-04-26 18:03:39,360 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:39,392 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 74, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 272.25it/s]
2022-04-26 18:03:40,882 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:40,915 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 74, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.73it/s]
2022-04-26 18:03:42,491 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:42,545 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 74, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.27it/s]
2022-04-26 18:03:44,060 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:44,109 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 74, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.78it/s]
2022-04-26 18:03:45,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:45,727 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 74, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.54it/s]
2022-04-26 18:03:47,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:47,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 74, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.47it/s]
2022-04-26 18:03:48,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:48,925 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 74, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 280.09it/s]
2022-04-26 18:03:50,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:50,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 74, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.31it/s]
2022-04-26 18:03:51,948 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:51,995 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 75, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.89it/s]
2022-04-26 18:03:53,540 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:53,572 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 75, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.51it/s]
2022-04-26 18:03:55,111 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:55,141 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 75, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.29it/s]
2022-04-26 18:03:56,644 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:56,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 75, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.12it/s]
2022-04-26 18:03:58,239 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:58,271 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 75, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.88it/s]
2022-04-26 18:03:59,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:03:59,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 75, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.02it/s]
2022-04-26 18:04:01,388 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:01,420 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 75, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.42it/s]
2022-04-26 18:04:02,978 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:03,009 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 76, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.08it/s]
2022-04-26 18:04:04,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:04,567 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 76, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.43it/s]
2022-04-26 18:04:06,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:06,121 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 76, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 280.37it/s]
2022-04-26 18:04:07,590 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:07,631 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 76, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.86it/s]
2022-04-26 18:04:09,097 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:09,149 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 76, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.02it/s]
2022-04-26 18:04:10,627 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:10,682 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 76, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.02it/s]
2022-04-26 18:04:12,254 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:12,293 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.15it/s]
2022-04-26 18:04:13,804 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:13,834 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.33it/s]
2022-04-26 18:04:15,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:15,371 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.78it/s]
2022-04-26 18:04:16,874 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:16,906 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.30it/s]
2022-04-26 18:04:18,418 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:18,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 77, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.73it/s]
2022-04-26 18:04:19,937 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:19,991 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 78, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.85it/s]
2022-04-26 18:04:21,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:21,532 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 78, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.04it/s]
2022-04-26 18:04:23,128 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:23,164 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 78, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.14it/s]
2022-04-26 18:04:24,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:24,768 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 78, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.59it/s]
2022-04-26 18:04:26,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:26,332 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 79, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.93it/s]
2022-04-26 18:04:27,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:27,860 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 79, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.04it/s]
2022-04-26 18:04:29,364 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:29,418 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 79, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.40it/s]
2022-04-26 18:04:30,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:30,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 80, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.89it/s]
2022-04-26 18:04:32,490 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:32,521 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 80, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.35it/s]
2022-04-26 18:04:34,042 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:34,085 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 57, back st: 81, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.94it/s]
2022-04-26 18:04:35,633 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:35,687 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 70, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.24it/s]
2022-04-26 18:04:37,261 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:37,299 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 70, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.58it/s]
2022-04-26 18:04:38,806 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:38,839 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 70, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.33it/s]
2022-04-26 18:04:40,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:40,345 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 70, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.85it/s]
2022-04-26 18:04:41,906 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:41,946 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 70, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 237.19it/s]
2022-04-26 18:04:43,636 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:43,669 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 70, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.25it/s]
2022-04-26 18:04:45,188 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:45,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 70, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 200.35it/s]
2022-04-26 18:04:47,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:47,173 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 70, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.27it/s]
2022-04-26 18:04:48,801 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:48,832 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 70, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 194.06it/s]
2022-04-26 18:04:50,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:50,819 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 70, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.27it/s]
2022-04-26 18:04:52,371 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:52,426 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 70, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.57it/s]
2022-04-26 18:04:53,987 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:54,031 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 70, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.81it/s]
2022-04-26 18:04:55,529 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:55,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 71, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.19it/s]
2022-04-26 18:04:57,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:57,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 71, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.29it/s]
2022-04-26 18:04:58,713 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:04:58,744 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 71, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.69it/s]
2022-04-26 18:05:00,241 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:00,272 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 71, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.01it/s]
2022-04-26 18:05:01,828 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:01,871 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 71, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.15it/s]
2022-04-26 18:05:03,341 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:03,395 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 71, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.16it/s]
2022-04-26 18:05:04,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:04,973 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 71, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.27it/s]
2022-04-26 18:05:06,570 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:06,609 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 71, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.36it/s]
2022-04-26 18:05:08,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:08,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 71, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.98it/s]
2022-04-26 18:05:09,774 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:09,805 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 71, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.91it/s]
2022-04-26 18:05:11,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:11,376 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 71, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.31it/s]
2022-04-26 18:05:12,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:12,901 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 72, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.28it/s]
2022-04-26 18:05:14,396 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:14,449 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 72, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.73it/s]
2022-04-26 18:05:15,945 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:15,999 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 72, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.18it/s]
2022-04-26 18:05:17,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:17,581 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 72, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.21it/s]
2022-04-26 18:05:19,154 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:19,185 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 72, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.53it/s]
2022-04-26 18:05:20,700 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:20,759 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 72, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.95it/s]
2022-04-26 18:05:22,350 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:22,381 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 72, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.98it/s]
2022-04-26 18:05:23,985 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:24,017 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 72, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.02it/s]
2022-04-26 18:05:25,572 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:25,611 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 72, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.13it/s]
2022-04-26 18:05:27,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:27,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 72, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.25it/s]
2022-04-26 18:05:28,736 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:28,767 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 73, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.84it/s]
2022-04-26 18:05:30,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:30,330 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 73, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 276.09it/s]
2022-04-26 18:05:31,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:31,842 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 73, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.28it/s]
2022-04-26 18:05:33,394 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:33,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 73, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.18it/s]
2022-04-26 18:05:34,877 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:34,918 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 73, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.39it/s]
2022-04-26 18:05:36,515 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:36,547 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 73, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 270.17it/s]
2022-04-26 18:05:38,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:38,061 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 73, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.26it/s]
2022-04-26 18:05:39,549 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:39,579 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 73, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.63it/s]
2022-04-26 18:05:41,130 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:41,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 73, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.98it/s]
2022-04-26 18:05:42,692 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:42,747 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 74, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.47it/s]
2022-04-26 18:05:44,307 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:44,339 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 74, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.84it/s]
2022-04-26 18:05:45,820 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:45,852 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 74, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.32it/s]
2022-04-26 18:05:47,409 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:47,442 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 74, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.53it/s]
2022-04-26 18:05:48,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:48,988 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 74, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.62it/s]
2022-04-26 18:05:50,501 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:50,533 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 74, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 196.31it/s]
2022-04-26 18:05:52,679 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:52,708 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 74, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.80it/s]
2022-04-26 18:05:54,203 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:54,246 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 74, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.17it/s]
2022-04-26 18:05:55,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:55,863 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 75, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.87it/s]
2022-04-26 18:05:57,399 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:57,431 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 75, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.72it/s]
2022-04-26 18:05:58,994 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:05:59,047 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 75, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.30it/s]
2022-04-26 18:06:00,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:00,628 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 75, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.46it/s]
2022-04-26 18:06:02,144 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:02,197 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 75, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.42it/s]
2022-04-26 18:06:03,740 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:03,772 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 75, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.95it/s]
2022-04-26 18:06:05,318 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:05,349 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 75, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.20it/s]
2022-04-26 18:06:06,894 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:06,927 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 76, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.97it/s]
2022-04-26 18:06:08,492 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:08,529 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 76, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.45it/s]
2022-04-26 18:06:10,070 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:10,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 76, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 271.16it/s]
2022-04-26 18:06:11,568 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:11,622 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 76, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.49it/s]
2022-04-26 18:06:13,160 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:13,192 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 76, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.18it/s]
2022-04-26 18:06:14,781 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:14,813 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 76, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.69it/s]
2022-04-26 18:06:16,334 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:16,372 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 77, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.82it/s]
2022-04-26 18:06:17,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:17,921 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 77, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.16it/s]
2022-04-26 18:06:19,506 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:19,537 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 77, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.30it/s]
2022-04-26 18:06:21,023 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:21,065 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 77, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.16it/s]
2022-04-26 18:06:22,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:22,640 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 77, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.36it/s]
2022-04-26 18:06:24,135 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:24,176 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.20it/s]
2022-04-26 18:06:25,735 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:25,776 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.81it/s]
2022-04-26 18:06:27,300 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:27,353 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.59it/s]
2022-04-26 18:06:28,888 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:28,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 78, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 281.55it/s]
2022-04-26 18:06:30,330 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:30,384 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 79, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.96it/s]
2022-04-26 18:06:31,968 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:31,998 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 79, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.11it/s]
2022-04-26 18:06:33,533 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:33,565 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 79, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.70it/s]
2022-04-26 18:06:35,120 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:35,160 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 80, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.82it/s]
2022-04-26 18:06:36,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:36,735 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 80, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.55it/s]
2022-04-26 18:06:38,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:38,364 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 58, back st: 81, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.55it/s]
2022-04-26 18:06:39,862 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:39,917 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 70, back end: 72
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.93it/s]
2022-04-26 18:06:41,468 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:41,502 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 70, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.25it/s]
2022-04-26 18:06:43,031 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:43,069 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 70, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.07it/s]
2022-04-26 18:06:44,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:44,627 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 70, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.60it/s]
2022-04-26 18:06:46,195 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:46,232 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 70, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 251.87it/s]
2022-04-26 18:06:47,810 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:47,843 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 70, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.97it/s]
2022-04-26 18:06:49,378 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:49,432 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 70, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.14it/s]
2022-04-26 18:06:50,947 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:50,985 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 70, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.15it/s]
2022-04-26 18:06:52,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:52,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 70, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 201.86it/s]
2022-04-26 18:06:54,631 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:54,661 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 70, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.92it/s]
2022-04-26 18:06:56,231 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:56,262 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 70, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.22it/s]
2022-04-26 18:06:57,847 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:57,879 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 70, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.00it/s]
2022-04-26 18:06:59,450 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:06:59,484 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 71, back end: 73
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.26it/s]
2022-04-26 18:07:01,022 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:01,073 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 71, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 273.06it/s]
2022-04-26 18:07:02,564 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:02,595 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 71, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.89it/s]
2022-04-26 18:07:04,103 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:04,132 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 71, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.74it/s]
2022-04-26 18:07:05,647 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:05,677 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 71, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.31it/s]
2022-04-26 18:07:07,163 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:07,218 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 71, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.89it/s]
2022-04-26 18:07:08,766 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:08,797 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 71, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.90it/s]
2022-04-26 18:07:10,346 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:10,378 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 71, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.98it/s]
2022-04-26 18:07:11,909 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:11,953 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 71, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.02it/s]
2022-04-26 18:07:13,499 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:13,531 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 71, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.24it/s]
2022-04-26 18:07:15,131 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:15,163 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 71, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.36it/s]
2022-04-26 18:07:16,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:16,758 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 72, back end: 74
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.51it/s]
2022-04-26 18:07:18,327 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:18,361 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 72, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.08it/s]
2022-04-26 18:07:19,881 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:19,911 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 72, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.44it/s]
2022-04-26 18:07:21,494 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:21,526 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 72, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.97it/s]
2022-04-26 18:07:23,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:23,106 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 72, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.06it/s]
2022-04-26 18:07:24,643 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:24,674 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 72, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.71it/s]
2022-04-26 18:07:26,167 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:26,219 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 72, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.40it/s]
2022-04-26 18:07:27,817 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:27,849 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 72, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.81it/s]
2022-04-26 18:07:29,340 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:29,393 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 72, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.94it/s]
2022-04-26 18:07:30,915 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:30,946 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 72, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 253.82it/s]
2022-04-26 18:07:32,534 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:32,564 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 73, back end: 75
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.40it/s]
2022-04-26 18:07:34,121 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:34,154 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 73, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.94it/s]
2022-04-26 18:07:35,625 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:35,676 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 73, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.56it/s]
2022-04-26 18:07:37,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:37,316 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 73, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 249.84it/s]
2022-04-26 18:07:38,878 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:38,932 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 73, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.69it/s]
2022-04-26 18:07:40,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:40,507 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 73, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.49it/s]
2022-04-26 18:07:42,011 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:42,055 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 73, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.86it/s]
2022-04-26 18:07:43,594 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:43,625 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 73, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 278.18it/s]
2022-04-26 18:07:45,048 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:45,102 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 73, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 268.54it/s]
2022-04-26 18:07:46,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:46,624 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 74, back end: 76
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.37it/s]
2022-04-26 18:07:48,102 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:48,157 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 74, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.43it/s]
2022-04-26 18:07:49,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:49,752 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 74, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 264.61it/s]
2022-04-26 18:07:51,243 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:51,292 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 74, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.07it/s]
2022-04-26 18:07:52,834 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:52,866 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 74, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.83it/s]
2022-04-26 18:07:54,397 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:54,430 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 74, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.69it/s]
2022-04-26 18:07:55,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:56,003 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 74, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 263.03it/s]
2022-04-26 18:07:57,537 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:57,569 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 74, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 255.09it/s]
2022-04-26 18:07:59,140 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:07:59,171 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 75, back end: 77
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 252.10it/s]
2022-04-26 18:08:00,761 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:00,793 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 75, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 261.64it/s]
2022-04-26 18:08:02,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:02,362 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 75, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 259.58it/s]
2022-04-26 18:08:03,920 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:03,951 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 75, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 262.12it/s]
2022-04-26 18:08:05,457 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:05,509 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 75, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 275.40it/s]
2022-04-26 18:08:06,991 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:07,022 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 75, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 247.35it/s]
2022-04-26 18:08:08,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:08,650 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 75, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 258.85it/s]
2022-04-26 18:08:10,209 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:10,248 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 76, back end: 78
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.39it/s]
2022-04-26 18:08:11,865 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:11,896 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 76, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 217.83it/s]
2022-04-26 18:08:13,689 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:13,720 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 76, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 198.38it/s]
2022-04-26 18:08:15,668 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:15,700 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 76, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 269.08it/s]
2022-04-26 18:08:17,169 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:17,199 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 76, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.54it/s]
2022-04-26 18:08:18,755 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:18,788 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 76, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.03it/s]
2022-04-26 18:08:20,292 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:20,340 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 77, back end: 79
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 267.60it/s]
2022-04-26 18:08:21,840 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:21,885 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 77, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.64it/s]
2022-04-26 18:08:23,442 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:23,474 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 77, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.95it/s]
2022-04-26 18:08:25,028 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:25,059 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 77, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 250.73it/s]
2022-04-26 18:08:26,660 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:26,691 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 77, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 274.15it/s]
2022-04-26 18:08:28,133 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:28,184 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 78, back end: 80
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 254.80it/s]
2022-04-26 18:08:29,759 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:29,791 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 78, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 260.49it/s]
2022-04-26 18:08:31,332 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:31,363 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 78, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.42it/s]
2022-04-26 18:08:32,885 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:32,939 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 78, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.93it/s]
2022-04-26 18:08:34,464 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:34,518 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 79, back end: 81
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 257.84it/s]
2022-04-26 18:08:36,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:36,107 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 79, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 266.68it/s]
2022-04-26 18:08:37,584 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:37,632 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 79, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 246.94it/s]
2022-04-26 18:08:39,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:39,276 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 80, back end: 82
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 248.25it/s]
2022-04-26 18:08:40,889 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:40,919 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 80, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 256.13it/s]
2022-04-26 18:08:42,482 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:42,514 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

src: 59, back st: 81, back end: 83
100%|████████████████████████████████████████| 320/320 [00:01<00:00, 265.18it/s]
2022-04-26 18:08:44,043 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

2022-04-26 18:08:44,074 - stpipe - WARNING - /home/kglidic/miniconda3/envs/JWST-1.3.1/lib/python3.9/site-packages/tshirt/pipeline/phot_pipeline.py:1553: UserWarning: Only once source, so defaulting to refCorrect=False
  warnings.warn('Only once source, so defaulting to refCorrect=False')

Writing table to /home/kglidic/tshirt_data/tser_data/phot_aperture_optimization/aperture_opt_GJ3470b_sweep_aperture_sizing_NRCA3_GJ3470b_2022_11_23_src_50_60_step_1_back_70_84_step_1.csv
Min Stdev results:
src  back_st back_end stdev  theo_err mad_arr
---- ------- -------- ------ -------- -------
59.0    74.0     79.0 0.0242   0.0142  0.0118
In [19]:
analysis.plot_apsizes('/home/kglidic/tshirt_data/tser_data/phot_aperture_optimization/aperture_opt_GJ3470b_sweep_aperture_sizing_NRCA3_GJ3470b_2022_11_23_src_50_60_step_1_back_70_84_step_1.csv')
In [21]:
sweep_results_fine = pd.read_csv('/home/kglidic/tshirt_data/tser_data/phot_aperture_optimization/aperture_opt_GJ3470b_sweep_aperture_sizing_NRCA3_GJ3470b_2022_11_23_src_50_60_step_1_back_70_84_step_1.csv')

MAD_min_idx = abs(sweep_results_fine[['mad_arr']]).idxmin()
print("Min MAD Results " + str(sweep_results_fine[['mad_arr']].idxmin()))
print(sweep_results_fine.iloc[MAD_min_idx])

print("THEO_ERR = "+str((0.0146/100)*10**6))
print("STDEV = "+str((0.0248/100)*10**6))
print("MAD*1.48 = "+str((0.011/100)*1.48*10**6))
Min MAD Results mad_arr    598
dtype: int64
      src  back_st  back_end   stdev  theo_err  mad_arr
598  57.0     75.0      79.0  0.0248    0.0146    0.011
THEO_ERR = 146.0
STDEV = 248.0
MAD*1.48 = 162.79999999999998
In [4]:
phot = phot_pipeline.phot(paramFile="/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/ROEBA/GJ3470b_WLP8_NRCA3_ROEBA_phot_pipeline.yaml") #create a photometric object
alteredParam = deepcopy(phot.param)
alteredParam['srcGeometry']='Circular'
alteredParam['bkgGeometry'] = 'CircularAnnulus'
alteredParam['apRadius'] = 57 #Changing the source radius
alteredParam['backStart'] = 75 #Changing the inner radius
alteredParam['backEnd'] = 79 #Changing the outer radius
alteredParam['bkgMethod'] = 'mean' #Due to the odd aperture configuration, we need to do mean background subtraction

alteredParam['doCentering'] = True
alteredParam['srcNameShort'] = 'GJ3470b_fine_best' #provide a new name for centroid realignment

#Assignimg a object new phot3
phot_fine_best = phot_pipeline.phot(directParam=alteredParam) #create new photometric object
phot_fine_best.showStarChoices(showAps=True,showPlot=True,apColor='red',backColor='pink', figSize=(30,20),xLim=[900,1200]) #Plot the source and background subtraction area
In [5]:
phot_fine_best.get_allimg_cen(recenter=True,useMultiprocessing=True) #recenter the centroids each time. 
phot_fine_best.do_phot(useMultiprocessing=True) #extract the photometric data
  1%|▎                                        | 11/1681 [00:01<01:52, 14.88it/s]2022-06-01 16:41:46,589 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 17/1681 [00:01<01:24, 19.61it/s]2022-06-01 16:41:46,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:41:46,849 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  1%|▍                                        | 20/1681 [00:01<01:30, 18.41it/s]2022-06-01 16:41:46,949 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▋                                        | 30/1681 [00:02<01:34, 17.39it/s]2022-06-01 16:41:47,453 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:41:47,676 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▌                                       | 66/1681 [00:03<01:08, 23.54it/s]2022-06-01 16:41:48,962 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  4%|█▊                                       | 72/1681 [00:03<00:58, 27.46it/s]2022-06-01 16:41:49,308 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  8%|███▎                                    | 141/1681 [00:06<01:16, 20.16it/s]2022-06-01 16:41:52,404 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  9%|███▍                                    | 146/1681 [00:07<01:04, 23.92it/s]2022-06-01 16:41:52,620 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                 | 263/1681 [00:12<01:14, 19.13it/s]2022-06-01 16:41:58,275 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▌                                 | 274/1681 [00:12<01:06, 21.28it/s]2022-06-01 16:41:58,608 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 19%|███████▋                                | 325/1681 [00:15<00:54, 24.74it/s]2022-06-01 16:42:00,863 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 20%|███████▉                                | 334/1681 [00:15<00:59, 22.47it/s]2022-06-01 16:42:01,187 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▍                               | 354/1681 [00:16<00:56, 23.34it/s]2022-06-01 16:42:01,974 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 21%|████████▍                               | 357/1681 [00:16<01:20, 16.49it/s]2022-06-01 16:42:02,245 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 23%|█████████▎                              | 391/1681 [00:18<01:08, 18.96it/s]2022-06-01 16:42:03,795 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 24%|█████████▍                              | 399/1681 [00:18<00:57, 22.44it/s]2022-06-01 16:42:03,998 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▋                             | 450/1681 [00:20<00:52, 23.45it/s]2022-06-01 16:42:06,076 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:06,374 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▊                             | 454/1681 [00:20<01:07, 18.23it/s]2022-06-01 16:42:06,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 27%|██████████▉                             | 462/1681 [00:21<00:44, 27.17it/s]2022-06-01 16:42:06,664 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████▏                            | 470/1681 [00:21<00:42, 28.24it/s]2022-06-01 16:42:06,872 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████▎                            | 474/1681 [00:21<00:49, 24.53it/s]2022-06-01 16:42:07,062 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:07,229 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 28%|███████████▎                            | 477/1681 [00:21<01:06, 18.23it/s]2022-06-01 16:42:07,463 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                           | 516/1681 [00:23<00:57, 20.41it/s]2022-06-01 16:42:08,976 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                           | 520/1681 [00:23<00:58, 19.72it/s]2022-06-01 16:42:09,204 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▌                           | 526/1681 [00:23<00:44, 25.71it/s]2022-06-01 16:42:09,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:09,704 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 34%|█████████████▌                          | 568/1681 [00:26<00:51, 21.58it/s]2022-06-01 16:42:12,047 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:12,255 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|█████████████▉                          | 586/1681 [00:27<01:08, 15.98it/s]2022-06-01 16:42:13,445 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:13,542 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▏                         | 597/1681 [00:28<00:52, 20.61it/s]2022-06-01 16:42:13,686 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▎                         | 600/1681 [00:28<00:53, 20.28it/s]2022-06-01 16:42:13,760 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▍                         | 607/1681 [00:28<00:53, 20.26it/s]2022-06-01 16:42:14,101 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▌                         | 613/1681 [00:28<00:44, 24.18it/s]2022-06-01 16:42:14,315 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▊                      | 750/1681 [00:34<00:51, 18.00it/s]2022-06-01 16:42:20,508 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▉                      | 756/1681 [00:35<00:40, 22.65it/s]2022-06-01 16:42:20,765 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 52%|████████████████████▉                   | 879/1681 [00:40<00:41, 19.27it/s]2022-06-01 16:42:26,283 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:26,512 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|█████████████████████▉                  | 921/1681 [00:42<00:29, 25.83it/s]2022-06-01 16:42:27,809 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:28,098 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▍                 | 941/1681 [00:43<00:29, 25.50it/s]2022-06-01 16:42:29,037 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:29,116 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▍                 | 945/1681 [00:43<00:40, 18.18it/s]2022-06-01 16:42:29,210 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:29,291 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:29,304 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▋                 | 953/1681 [00:43<00:30, 24.25it/s]2022-06-01 16:42:29,331 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:29,467 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:29,521 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▊                 | 957/1681 [00:44<00:31, 22.81it/s]2022-06-01 16:42:29,581 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▉                 | 963/1681 [00:44<00:25, 28.38it/s]2022-06-01 16:42:29,829 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████▎                | 981/1681 [00:45<00:31, 22.56it/s]2022-06-01 16:42:30,498 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▍                | 985/1681 [00:45<00:27, 25.19it/s]2022-06-01 16:42:30,825 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▌                | 988/1681 [00:45<00:33, 20.96it/s]2022-06-01 16:42:30,988 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▋                | 996/1681 [00:45<00:30, 22.73it/s]2022-06-01 16:42:31,205 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▍               | 1011/1681 [00:46<00:25, 26.06it/s]2022-06-01 16:42:31,824 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 60%|███████████████████████▌               | 1014/1681 [00:46<00:28, 23.34it/s]2022-06-01 16:42:31,951 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 1019/1681 [00:46<00:26, 24.86it/s]2022-06-01 16:42:32,118 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:32,218 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████▏             | 1083/1681 [00:49<00:32, 18.12it/s]2022-06-01 16:42:34,926 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 65%|█████████████████████████▎             | 1090/1681 [00:49<00:32, 18.44it/s]2022-06-01 16:42:35,206 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▋             | 1106/1681 [00:50<00:21, 26.69it/s]2022-06-01 16:42:35,831 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 1111/1681 [00:50<00:22, 25.51it/s]2022-06-01 16:42:36,050 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████             | 1122/1681 [00:51<00:31, 17.96it/s]2022-06-01 16:42:36,601 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:37,029 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 67%|██████████████████████████▎            | 1132/1681 [00:51<00:27, 20.01it/s]2022-06-01 16:42:37,166 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 68%|██████████████████████████▌            | 1144/1681 [00:51<00:19, 27.50it/s]2022-06-01 16:42:37,366 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|███████████████████████████            | 1166/1681 [00:52<00:20, 25.55it/s]2022-06-01 16:42:38,212 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 70%|███████████████████████████            | 1169/1681 [00:52<00:19, 25.66it/s]2022-06-01 16:42:38,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 1204/1681 [00:54<00:20, 23.29it/s]2022-06-01 16:42:39,876 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████           | 1207/1681 [00:54<00:22, 20.77it/s]2022-06-01 16:42:40,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▊       | 1370/1681 [01:01<00:16, 18.79it/s]2022-06-01 16:42:47,441 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|███████████████████████████████▉       | 1379/1681 [01:02<00:12, 23.66it/s]2022-06-01 16:42:47,595 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:47,646 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████       | 1383/1681 [01:02<00:12, 23.58it/s]2022-06-01 16:42:47,844 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 88%|██████████████████████████████████▍    | 1484/1681 [01:06<00:10, 19.26it/s]2022-06-01 16:42:52,344 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▌    | 1490/1681 [01:06<00:08, 23.60it/s]2022-06-01 16:42:52,593 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▋    | 1497/1681 [01:07<00:07, 25.04it/s]2022-06-01 16:42:52,707 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 89%|██████████████████████████████████▊    | 1501/1681 [01:07<00:06, 25.86it/s]2022-06-01 16:42:53,089 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|██████████████████████████████████▉    | 1505/1681 [01:07<00:08, 19.58it/s]2022-06-01 16:42:53,156 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 90%|███████████████████████████████████▏   | 1515/1681 [01:07<00:06, 24.19it/s]2022-06-01 16:42:53,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 91%|███████████████████████████████████▋   | 1537/1681 [01:08<00:05, 24.89it/s]2022-06-01 16:42:54,487 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▊   | 1541/1681 [01:09<00:05, 23.50it/s]2022-06-01 16:42:54,722 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|███████████████████████████████████▉   | 1550/1681 [01:09<00:05, 22.88it/s]2022-06-01 16:42:55,007 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████   | 1557/1681 [01:09<00:04, 27.11it/s]2022-06-01 16:42:55,250 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:42:55,253 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 93%|████████████████████████████████████▎  | 1563/1681 [01:10<00:05, 21.95it/s]2022-06-01 16:42:55,523 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|███████████████████████████████████████| 1681/1681 [01:14<00:00, 22.46it/s]
2022-06-01 16:43:00,391 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

100%|██████████████████████████████████████| 1681/1681 [00:10<00:00, 165.49it/s]
In [6]:
#Tshirt: net aperture
Flux_best, Flux_error_best = phot_fine_best.get_tSeries() #The flux data and flux data errors
normalized_flux_tshirt_best = Flux_best['Flux 0']/Flux_best['Flux 0'][0] #normalized net aperture sum
std_tshirt_best = np.std(normalized_flux_tshirt_best[0:20]) #calculated standard deviation
relative_error_tshirt_best = (Flux_error_best['Error 0']/Flux_best['Flux 0'])

#MAD: 
deviation = normalized_flux_tshirt_best[0:seg01_len] - np.median(normalized_flux_tshirt_best[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Tshirt Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Tshirt Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_tshirt_best*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_tshirt_best)*10**6))

plt.errorbar(Flux_best['Time (JD)'],normalized_flux_tshirt_best,yerr=relative_error_tshirt_best,fmt='b.',markersize=4,elinewidth=1,ecolor='silver')
Tshirt Calculated Net Aperture Sum MAD (ppm): 162.66484418480331
Tshirt Calculated Net Aperture Sum std (ppm): 163.9157882994886
Median Relative Errors Net Aperture Sum (ppm): 145.57097553642672
Out[6]:
<ErrorbarContainer object of 3 artists>

Compare¶

In [6]:
phot_noroeba = phot_pipeline.phot(paramFile="/fenrirdata1/kg_data/pipeline_output/GJ3470b_WLP8/GJ3470b_NRCA3_phot_pipeline.yaml") #create a photometric object
alteredParam = deepcopy(phot_noroeba.param)
alteredParam['srcGeometry']='Circular'
alteredParam['bkgGeometry'] = 'CircularAnnulus'
alteredParam['apRadius'] = 57 #Changing the source radius
alteredParam['backStart'] = 75 #Changing the inner radius
alteredParam['backEnd'] = 79 #Changing the outer radius
alteredParam['bkgMethod'] = 'mean' #Due to the odd aperture configuration, we need to do mean background subtraction

alteredParam['doCentering'] = True
alteredParam['srcNameShort'] = 'GJ3470b_fine_best_noroeba' #provide a new name for centroid realignment

#Assignimg a object new phot3
phot_fine_best_noroeba = phot_pipeline.phot(directParam=alteredParam) #create new photometric object
phot_fine_best_noroeba.showStarChoices(showAps=True,showPlot=True,apColor='red',backColor='pink', figSize=(10,20),xLim=[900,1200]) #Plot the source and background subtraction area
In [7]:
phot_fine_best_noroeba.get_allimg_cen(recenter=True,useMultiprocessing=True) #recenter the centroids each time. 
phot_fine_best_noroeba.do_phot(useMultiprocessing=True) #extract the photometric data
  0%|                                                  | 0/1681 [00:00<?, ?it/s]2022-06-01 16:43:12,413 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:43:12,753 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                        | 31/1681 [00:01<01:17, 21.31it/s]2022-06-01 16:43:13,956 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  2%|▊                                        | 34/1681 [00:02<01:27, 18.72it/s]2022-06-01 16:43:14,189 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

  6%|██▍                                      | 99/1681 [00:05<01:07, 23.40it/s]2022-06-01 16:43:17,069 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:43:17,302 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 15%|██████▏                                 | 258/1681 [00:12<01:05, 21.71it/s]2022-06-01 16:43:24,314 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▎                                 | 265/1681 [00:12<01:06, 21.24it/s]2022-06-01 16:43:24,473 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:43:24,598 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:43:24,688 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 16%|██████▌                                 | 277/1681 [00:13<00:58, 24.08it/s]2022-06-01 16:43:24,912 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:43:25,149 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▏                           | 514/1681 [00:23<00:46, 25.08it/s]2022-06-01 16:43:34,932 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:43:35,207 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▎                           | 519/1681 [00:23<00:54, 21.44it/s]2022-06-01 16:43:35,247 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 31%|████████████▍                           | 525/1681 [00:23<00:42, 27.05it/s]2022-06-01 16:43:35,553 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 32%|████████████▉                           | 546/1681 [00:24<00:44, 25.42it/s]2022-06-01 16:43:36,182 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:43:36,398 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████▎                          | 557/1681 [00:24<00:49, 22.60it/s]2022-06-01 16:43:36,870 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 33%|█████████████▍                          | 563/1681 [00:25<00:43, 26.00it/s]2022-06-01 16:43:37,119 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 35%|██████████████▏                         | 596/1681 [00:26<00:44, 24.30it/s]2022-06-01 16:43:38,370 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 36%|██████████████▎                         | 600/1681 [00:26<00:45, 23.62it/s]2022-06-01 16:43:38,623 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|███████████████                         | 634/1681 [00:28<00:42, 24.75it/s]2022-06-01 16:43:39,902 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 38%|███████████████▎                        | 641/1681 [00:28<00:39, 26.66it/s]2022-06-01 16:43:40,161 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▍                        | 651/1681 [00:28<00:34, 30.07it/s]2022-06-01 16:43:40,634 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 39%|███████████████▋                        | 658/1681 [00:28<00:42, 24.10it/s]2022-06-01 16:43:40,860 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|█████████████████                       | 718/1681 [00:31<00:41, 23.26it/s]2022-06-01 16:43:43,358 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|█████████████████▏                      | 721/1681 [00:31<00:43, 22.09it/s]2022-06-01 16:43:43,485 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:43:43,574 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 43%|█████████████████▏                      | 724/1681 [00:31<00:43, 21.81it/s]2022-06-01 16:43:43,694 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 44%|█████████████████▊                      | 747/1681 [00:32<00:32, 28.38it/s]2022-06-01 16:43:44,449 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 45%|█████████████████▊                      | 750/1681 [00:32<00:37, 24.57it/s]2022-06-01 16:43:44,681 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 47%|██████████████████▊                     | 790/1681 [00:34<00:34, 25.82it/s]2022-06-01 16:43:46,132 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:43:46,436 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████▎                   | 852/1681 [00:36<00:32, 25.39it/s]2022-06-01 16:43:48,785 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 51%|████████████████████▎                   | 856/1681 [00:37<00:34, 24.24it/s]2022-06-01 16:43:49,035 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 55%|██████████████████████▏                 | 931/1681 [00:40<00:30, 24.68it/s]2022-06-01 16:43:51,984 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▏                 | 934/1681 [00:40<00:35, 20.81it/s]2022-06-01 16:43:52,281 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 56%|██████████████████████▌                 | 948/1681 [00:40<00:37, 19.57it/s]2022-06-01 16:43:52,891 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▋                 | 955/1681 [00:41<00:30, 23.52it/s]2022-06-01 16:43:53,115 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 57%|██████████████████████▉                 | 966/1681 [00:41<00:29, 23.99it/s]2022-06-01 16:43:53,489 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 58%|███████████████████████                 | 969/1681 [00:41<00:34, 20.92it/s]2022-06-01 16:43:53,814 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 59%|███████████████████████▍                | 987/1681 [00:42<00:21, 31.56it/s]2022-06-01 16:43:54,240 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:43:54,433 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 1019/1681 [00:43<00:26, 24.99it/s]2022-06-01 16:43:55,732 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 61%|███████████████████████▋               | 1022/1681 [00:43<00:28, 22.92it/s]2022-06-01 16:43:55,941 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|████████████████████████▉              | 1075/1681 [00:46<00:26, 22.97it/s]2022-06-01 16:43:58,380 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 64%|█████████████████████████              | 1082/1681 [00:46<00:30, 19.41it/s]2022-06-01 16:43:58,639 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 1111/1681 [00:47<00:23, 24.73it/s]2022-06-01 16:43:59,548 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 66%|█████████████████████████▊             | 1114/1681 [00:47<00:22, 25.10it/s]2022-06-01 16:43:59,808 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 1153/1681 [00:49<00:23, 22.14it/s]2022-06-01 16:44:01,420 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 69%|██████████████████████████▊            | 1156/1681 [00:49<00:27, 18.95it/s]2022-06-01 16:44:01,720 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 71%|███████████████████████████▊           | 1197/1681 [00:51<00:19, 25.27it/s]2022-06-01 16:44:03,290 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|███████████████████████████▉           | 1203/1681 [00:51<00:21, 22.56it/s]2022-06-01 16:44:03,579 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 72%|████████████████████████████▏          | 1217/1681 [00:52<00:20, 22.77it/s]2022-06-01 16:44:04,276 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▎          | 1223/1681 [00:52<00:20, 22.19it/s]2022-06-01 16:44:04,554 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 73%|████████████████████████████▋          | 1234/1681 [00:53<00:18, 24.09it/s]2022-06-01 16:44:04,910 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:44:05,112 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▋          | 1237/1681 [00:53<00:23, 18.82it/s]2022-06-01 16:44:05,285 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 74%|████████████████████████████▉          | 1248/1681 [00:53<00:17, 24.97it/s]2022-06-01 16:44:05,478 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▊         | 1286/1681 [00:55<00:14, 27.34it/s]2022-06-01 16:44:07,075 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|█████████████████████████████▉         | 1290/1681 [00:55<00:16, 23.33it/s]2022-06-01 16:44:07,352 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████         | 1294/1681 [00:55<00:15, 24.54it/s]2022-06-01 16:44:07,538 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:44:07,747 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 77%|██████████████████████████████▏        | 1301/1681 [00:55<00:17, 21.60it/s]2022-06-01 16:44:07,935 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 78%|██████████████████████████████▎        | 1309/1681 [00:56<00:16, 22.28it/s]2022-06-01 16:44:08,159 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 81%|███████████████████████████████▊       | 1369/1681 [00:58<00:13, 23.24it/s]2022-06-01 16:44:10,546 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:44:10,744 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 82%|████████████████████████████████▏      | 1386/1681 [00:59<00:10, 29.47it/s]2022-06-01 16:44:11,440 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:44:11,917 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 92%|████████████████████████████████████   | 1554/1681 [01:06<00:06, 20.23it/s]2022-06-01 16:44:18,695 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

2022-06-01 16:44:18,965 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 95%|█████████████████████████████████████  | 1600/1681 [01:08<00:03, 21.78it/s]2022-06-01 16:44:20,841 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 96%|█████████████████████████████████████▎ | 1609/1681 [01:09<00:02, 26.65it/s]2022-06-01 16:44:21,058 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████ | 1642/1681 [01:10<00:01, 24.34it/s]2022-06-01 16:44:22,583 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

 98%|██████████████████████████████████████▏| 1646/1681 [01:10<00:01, 23.88it/s]2022-06-01 16:44:22,903 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/modeling/fitting.py:1166: AstropyUserWarning: The fit may be unsuccessful; check fit_info['message'] for more information.
  warnings.warn("The fit may be unsuccessful; check "

100%|███████████████████████████████████████| 1681/1681 [01:12<00:00, 23.29it/s]
2022-06-01 16:44:24,122 - stpipe - WARNING - /home/kglidic/.local/lib/python3.9/site-packages/astropy/io/fits/card.py:998: VerifyWarning: Card is too long, comment will be truncated.
  warnings.warn('Card is too long, comment will be truncated.',

100%|██████████████████████████████████████| 1681/1681 [00:09<00:00, 183.33it/s]
In [8]:
fig, ax = plt.subplots(1, 2,figsize=(12,5))

#Tshirt: net aperture
Flux_best, Flux_error_best = phot_fine_best.get_tSeries() #The flux data and flux data errors
normalized_flux_tshirt_best = Flux_best['Flux 0']/Flux_best['Flux 0'][0] #normalized net aperture sum
std_tshirt_best = np.std(normalized_flux_tshirt_best[0:20]) #calculated standard deviation
relative_error_tshirt_best = (Flux_error_best['Error 0']/Flux_best['Flux 0'])

#MAD: 
deviation = normalized_flux_tshirt_best[0:seg01_len] - np.median(normalized_flux_tshirt_best[0:seg01_len])
mad = np.median(np.abs(deviation))*1.48

print(style.BOLD+"Tshirt Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad*10**6))
print(style.BOLD+"Tshirt Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_tshirt_best*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_tshirt_best)*10**6))

ax[1].errorbar(Flux_best['Time (JD)'],normalized_flux_tshirt_best,yerr=relative_error_tshirt_best,fmt='.', color ='lightseagreen', markersize=4,elinewidth=1,ecolor='silver', label='ROEBA')

#Tshirt: net aperture
Flux_best_n, Flux_error_best_n = phot_fine_best_noroeba.get_tSeries() #The flux data and flux data errors
normalized_flux_tshirt_best_n = Flux_best_n['Flux 0']/Flux_best_n['Flux 0'][0] #normalized net aperture sum
std_tshirt_best_n = np.std(normalized_flux_tshirt_best_n[0:20]) #calculated standard deviation
relative_error_tshirt_best_n = (Flux_error_best_n['Error 0']/Flux_best_n['Flux 0'])

#MAD: 
deviation_n = normalized_flux_tshirt_best_n[0:seg01_len] - np.median(normalized_flux_tshirt_best_n[0:seg01_len])
mad_n = np.median(np.abs(deviation_n))*1.48

print(style.BOLD+"Tshirt Calculated Net Aperture Sum MAD (ppm):"+style.END + " " +str(mad_n*10**6))
print(style.BOLD+"Tshirt Calculated Net Aperture Sum std (ppm):"+style.END + " " +str(std_tshirt_best_n*10**6))
print(style.BOLD+"Median Relative Errors Net Aperture Sum (ppm):"+style.END + " " +str(np.median(relative_error_tshirt_best_n)*10**6))
ax[0].errorbar(Flux_best_n['Time (JD)'],normalized_flux_tshirt_best_n,yerr=relative_error_tshirt_best_n,fmt='.', color ='teal',markersize=4,elinewidth=1,ecolor='silver', label='No ROEBA')

ax[0].legend()
ax[1].legend()


fig.text(0.5, 0.01, 'Time (JD)',ha='center')
fig.text(0.04, 0.5, 'Normalized Flux', va='center', rotation='vertical')
fig.suptitle("GJ3470b WLP8: No ROEBA vs. ROEBA Correction")
fig.savefig("/home/kglidic/Software/Data_Challenge_Simulation_Pipeline_test/GJ3470b_compare.jpeg")
Tshirt Calculated Net Aperture Sum MAD (ppm): 162.66484418480331
Tshirt Calculated Net Aperture Sum std (ppm): 163.9157882994886
Median Relative Errors Net Aperture Sum (ppm): 145.57097553642672
Tshirt Calculated Net Aperture Sum MAD (ppm): 283.9450910980634
Tshirt Calculated Net Aperture Sum std (ppm): 433.88996129309464
Median Relative Errors Net Aperture Sum (ppm): 145.80317644995014

Light Curve Modeling - Sweep Test¶

Given Simulation Parameters:

  • per: 288286.52544 ## seconds, APT file
  • rp: 0.07641 ## rp/r*, Stefansson et al. 2021
  • a: 13.84 ## a/r*, Stefansson et al. 2021
  • inc: 88.83 ## inclination, Stefansson et al. 2021
  • ecc: 0.115 ## eccentricity, Stefansson et al. 2021
  • w: -82.5 ## longitude of periastron, Stefansson et al. 2021, alth it says arg.
  • limb_model: "nonlinear" ## type of limb darkening model
  • ld_u: [0.658,-0.489,0.209,-0.024] ## limb darkening parameters, ExoCTK 4 param law

For planet GJ3470b Filter NIRCam F210M the ExoCKT returns limb darkening parameters and corresponding errors:

  • c1 = 0.799; e1 = 0.049
  • c2 = -0.574; e2 = 0.115
  • c3 = 0.246; e3 = 0.116
  • c4 = -0.029; e4 = 0.042
In [26]:
def transit_model(x, rp, A, t0, per, u1):#, u2, u3, u4):
    '''
    Models transit light curve using Python package `batman` based on initial parameters stored in params_transit.
    
    Parameters
    ----------
    
    x: array
        Time in Julian days  
    rp: int
        Planet-to-star radius ratio
    A: int
        Baseline Normalization Factor
    t0: int
        Time of inferior conjunction
    per: int
        Orbital Period
    u1,u2,u3,u4: ints
        Limb darkening coefficients 
    '''

    params_transit = batman.TransitParams()                   #Object to store transit parameters
    
    params_transit.t0 = t0                                    #time of inferior conjunction
    params_transit.per = per                              #orbital period
    params_transit.a = 13.84                                   #semi-major axis (in units of stellar radii)
    params_transit.inc =  88.83                                 #orbital inclination (in degrees)
    params_transit.ecc = 0.115                               #eccentricity
    params_transit.w = -82.5                                   #longitude of periastron (in degrees)
    params_transit.limb_dark = "nonlinear"                    #limb darkening model
    params_transit.u = [u1,-0.574,0.246,-0.029]                  #limb darkening coefficients [u1, u2, u3, u4]
    

    params_transit.rp = rp                                    #Planet-to-star radius ratio - Will depend on function input
    
    #Modifying the time: Julian Date(x) - Initial Julian Date(x0) 
    x0 = np.min(x)
    m = batman.TransitModel(params_transit, x-x0)                #Initializes model
    
    flux = m.light_curve(params_transit)*A         #Calculate the light curve
    return flux
In [38]:
def lc_fitting(model, x, flux, sigma, rp, A, t0, per, u1, e1):# u2, u3, u4, e1, e2, e3, e4):
    '''
    Fits the light curve with scipy.curve_fit() and filters out outlier data
    
    Parameters
    ---------- 
    model:function
        Transit model function (batman)
    x: array
        Time in Julian days
    flux: array
        Array of fluxes from fine_sweep results
    sigma: array
        Array of flux errors from fine_sweep results
    rp: int
        Planet-to-star radius ratio
    A: int
        Baseline Normalization Factor
    t0: int
        Time of inferior conjunction
    per: int
        Orbital Period
    u1,u2,u3,u4: ints
        Limb darkening coefficients
    e1, e2, e3, e4: ints
        Limb darkening coefficients uncertainty
    '''
    
    quickfit = model(x, rp, A, t0, per, u1)#, u2, u3, u4) #Quickfit to the data based on initial guess values. 
    
    good_flux_points = [] #array for "good flux points"
    good_sigma_points = [] #array for the corresponding "good sigma points"
    good_time_points = []
    
    for i, j, k, l  in zip(flux, quickfit, sigma, x):
        residual = i - j #Calculate the residuals from the fine sweep results and initial light curve fit. 
        if (np.abs(residual) < 10*k)==True: #Define the "good point"; will exclude outliers 
            good_flux_points.append(i) #append the good flux values
            good_sigma_points.append(k) #append the good sigma values
            good_time_points.append(l) #append the good time values 
        else:
            None

    #Optimize the fit, only include the "good points"
    
    p0 = [rp, A, t0, per, u1]#, u2, u3, u4] #Initial Guess values  
    #bounds =([0,0,0,0,u1-2*e1,u2-2*e2,u3-2*e3,u4-2*e4],[np.inf,np.inf,np.inf,np.inf,u1+2*e1,u2+2*e2,u3+2*e3,u4+2*e4]) #set upper and lower limits for all parameters. 
    bounds =([0,0,0,0,u1-2*e1],[np.inf,np.inf,np.inf,np.inf,u1+2*e1]) #set upper and lower limits for all parameters. 

    popt, pcov = curve_fit(model,good_time_points,good_flux_points,sigma=good_sigma_points,p0=p0, bounds=bounds) 
    curvefit_uncertainty = np.sqrt(np.diag(pcov))
    
    print("Optimized Planet-to-star radius ratio (rp/r*) = " + str(popt[0]) + ' +/- ' + str(curvefit_uncertainty[0]))
    print("Optimized Baseline Normalization Factor = " + str(popt[1])+ ' +/- ' + str(curvefit_uncertainty[1]))
    print("Optimized Time of Inferior Conjunction = " + str(popt[2])+ ' +/- ' + str(curvefit_uncertainty[2]))
    print("Optimized Orbital Period = " + str(popt[3])+ ' +/- ' + str(curvefit_uncertainty[3]))
    print("Optimized u1 = " + str(popt[4])+ ' +/- ' + str(curvefit_uncertainty[4]))
    #print("Optimized u2 = " + str(popt[5])+ ' +/- ' + str(curvefit_uncertainty[5]))
    #print("Optimized u3 = " + str(popt[6])+ ' +/- ' + str(curvefit_uncertainty[6]))
    #print("Optimized u4 = " + str(popt[7])+ ' +/- ' + str(curvefit_uncertainty[7]))
    
    #plot the modeled light curves
    fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(20,10))
    
    
    #plot the good points model
    modeled_flux=model(good_time_points,*popt)
    ax2.plot(good_time_points,modeled_flux, markersize=5,color='red', label = 'Light Curve Model - Outliers Removed')
    
    #plot the quickfit model as a check:
    ax1.plot(x, quickfit, '--',label ='Quickfit Initial Check', color='green')
    
    #plot original data
    ax1.plot(x,flux,'.',alpha=0.1, label='Real Light Curve', color='blue')
    ax2.plot(x,flux,'.',alpha=0.1, label='Real Light Curve', color='blue')

    ax1.set_title("GJ3470b Light Curve Model - Initial Check")
    ax2.set_title("GJ3470b Light Curve Model")

    ax1.set_xlabel("Time (JD)")
    ax2.set_xlabel("Time (JD)")
    
    ax1.set_ylabel("Normalized Flux")
    ax2.set_ylabel("Normalized Flux")
    
    ax1.legend(loc="lower left")
    ax2.legend(loc="lower left")

    
    return popt, curvefit_uncertainty
In [39]:
lc_fitting(transit_model,Flux_best['Time (JD)'],normalized_flux_tshirt_best, relative_error_tshirt_best, 0.08,1,0.14,3.4,0.799,0.049)
Optimized Planet-to-star radius ratio (rp/r*) = 0.07638263887870597 +/- 9.062867109809305e-05
Optimized Baseline Normalization Factor = 0.9999519554066666 +/- 6.443478248803279e-06
Optimized Time of Inferior Conjunction = 0.14267769578167502 +/- 5.644448448057852e-05
Optimized Orbital Period = 3.3292051895124595 +/- 0.005318025980001867
Optimized u1 = 0.745329444415414 +/- 0.015376798140223167
Out[39]:
(array([0.07638264, 0.99995196, 0.1426777 , 3.32920519, 0.74532944]),
 array([9.06286711e-05, 6.44347825e-06, 5.64444845e-05, 5.31802598e-03,
        1.53767981e-02]))
In [ ]: